From 74f1b23d132329f0c8c9fa1dd0ad5b786082ad84 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 22 Nov 2024 07:34:56 +0000 Subject: [PATCH 1/9] Parse UTXO events addresses --- counterparty-core/counterpartycore/lib/api/api_watcher.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 0ac068071b..bd3af074c3 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -84,6 +84,9 @@ "BURN": ["source"], "NEW_FAIRMINT": ["source"], "NEW_FAIRMINTER": ["source"], + "ATTACH_TO_UTXO": ["source", "destination"], + "DETACH_FROM_UTXO": ["source", "destination"], + "UTXO_MOVE": ["source", "destination"], } SKIP_EVENTS = ["NEW_TRANSACTION_OUTPUT"] @@ -632,6 +635,8 @@ def update_address_events(api_db, event): event_bindings = json.loads(event["bindings"]) cursor = api_db.cursor() for field in EVENTS_ADDRESS_FIELDS[event["event"]]: + if field not in event_bindings: + continue sql = """ INSERT INTO address_events (address, event_index) VALUES (:address, :event_index) From 6bff23fadacf5da33a7b1426451e9f7c98f03ae2 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 23 Nov 2024 16:17:07 +0000 Subject: [PATCH 2/9] Fix error message when trying to compose a dispense with the dispenser address as the source --- .../counterpartycore/lib/messages/dispense.py | 5 +++++ .../test/regtest/scenarios/scenario_5_dispenser.py | 10 ++++++++++ release-notes/release-notes-v10.7.2.md | 3 +++ 3 files changed, 18 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/messages/dispense.py b/counterparty-core/counterpartycore/lib/messages/dispense.py index 31fe87201b..2332ceea27 100644 --- a/counterparty-core/counterpartycore/lib/messages/dispense.py +++ b/counterparty-core/counterpartycore/lib/messages/dispense.py @@ -64,6 +64,11 @@ def compose(db, source, destination, quantity, skip_validation: bool = False): problems = validate(db, source, destination, quantity) if problems and not skip_validation: raise exceptions.ComposeError(problems) + + # not in validate() to not risk a protocol change + if source == destination: + raise exceptions.ComposeError("source and destination must be different") + # create data data = struct.pack(config.SHORT_TXTYPE_FORMAT, dispenser_module.DISPENSE_ID) data += b"\x00" 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 09384191bd..258f39ebb2 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py @@ -172,6 +172,16 @@ }, "expected_error": ["address doesn't have any open dispenser"], }, + { + "title": "Dispense from the dispenser", + "transaction": "dispense", + "source": "$ADDRESS_1", + "params": { + "dispenser": "$ADDRESS_1", + "quantity": 4000, + }, + "expected_error": ["source and destination must be different"], + }, { "title": "Dispense 4: get 100 XCP", "transaction": "dispense", diff --git a/release-notes/release-notes-v10.7.2.md b/release-notes/release-notes-v10.7.2.md index 52fe71b310..a2b1d0d609 100644 --- a/release-notes/release-notes-v10.7.2.md +++ b/release-notes/release-notes-v10.7.2.md @@ -23,6 +23,9 @@ - Restart RSFetcher when it returns `None` - Clean up blocks without ledger hash before starting catch-up - Don't inject details before publishing events with ZMQ +- Populate `address_events` also with UTXO events (attach, detach and move) +- Fix `compose_movetoutxo` documentation +- Fix error message when trying to compose a dispense with the dispenser address as the source ## Codebase From 369141bcb0d15ae1d8e3d506d6922856ffaa4e47 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 24 Nov 2024 18:10:34 +0000 Subject: [PATCH 3/9] Fix 'compose_movetoutxo' documentation --- apiary.apib | 3843 +++++++++-------- .../counterpartycore/lib/api/compose.py | 4 +- .../test/regtest/apidoc/apicache.json | 3442 +++++++-------- .../test/regtest/genapidoc.py | 2 + .../regtest/scenarios/scenario_5_dispenser.py | 2 +- 5 files changed, 3666 insertions(+), 3627 deletions(-) diff --git a/apiary.apib b/apiary.apib index c4c06ebdc3..95e6324b90 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-11-16 12:25:10.081197. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-11-24 18:09:24.800926. 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": 900, "event": "NEW_BLOCK", "params": { - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", "block_index": 233, - "block_time": 1731759892, + "block_time": 1732471742, "difficulty": 545259519, - "previous_block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be" + "previous_block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236" }, "tx_hash": null, "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 892, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 901, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", "block_index": 233, - "block_time": 1731759892, + "block_time": 1732471742, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "fee": 0, - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxos_info": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1 7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0 3 1", + "utxos_info": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1 91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604: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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 893, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "out_index": 0, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "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": 233, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "block_time": 1731759892 + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "block_time": 1732471742 }, "tx_hash": null, "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 899, @@ -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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106 }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 898, @@ -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": 233, - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "utxo_address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "block_time": 1731759892, + "utxo": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "utxo_address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 903, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 907, @@ -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": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "memo": null, "quantity": 1000, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "status": "valid", - "tx_hash": "dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc", + "tx_hash": "9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9", "tx_index": 77, - "block_time": 1731759697, + "block_time": 1732471559, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc", + "tx_hash": "9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9", "block_index": 201, - "block_time": 1731759697 + "block_time": 1732471559 } ], "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": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "status": "valid", - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "tx_index": 81, - "block_time": 1731759725, + "block_time": 1732471584, "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": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "block_time": 1731759725 + "block_time": 1732471584 } ], "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": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "status": "valid", - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "tx_index": 65, - "block_time": 1731759636, + "block_time": 1732471513, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "block_index": 190, - "block_time": 1731759636 + "block_time": 1732471513 } ], "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": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "status": "valid", - "tx_hash": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "tx_hash": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "tx_index": 42, - "block_time": 1731759450, + "block_time": 1732471310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "tx_hash": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "block_index": 146, - "block_time": 1731759450 + "block_time": 1732471310 } ], "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": 232, - "block_time": 1731759883 + "block_time": 1732471727 }, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "block_index": 232, - "block_time": 1731759883 + "block_time": 1732471727 } ], "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": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": "valid", "transfer": false, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "tx_index": 105, - "block_time": 1731759883, + "block_time": 1732471727, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "block_index": 232, - "block_time": 1731759883 + "block_time": 1732471727 } ], "next_cursor": 875, @@ -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": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "tx_index": 101, - "block_time": 1731759857, + "block_time": 1732471714, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "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": 1731759857 + "block_time": 1732471714 } ], "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": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": "open", - "tx_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "tx_index": 104, - "block_time": 1731759869, + "block_time": 1732471724, "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": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "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": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "block_index": 231, - "block_time": 1731759869 + "block_time": 1732471724 } ], "next_cursor": 881, @@ -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": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655_fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "id": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b_0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "match_expire_index": 251, "status": "pending", - "tx0_address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "tx0_address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "tx0_block_index": 230, "tx0_expiration": 21, - "tx0_hash": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655", + "tx0_hash": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b", "tx0_index": 103, - "tx1_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "tx1_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "tx1_block_index": 231, "tx1_expiration": 21, - "tx1_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx1_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "tx1_index": 104, - "block_time": 1731759869, + "block_time": 1732471724, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "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": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "block_index": 231, - "block_time": 1731759869 + "block_time": 1732471724 } ], "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": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "block_index": 231, - "block_time": 1731759869 + "block_time": 1732471724 } ], "next_cursor": 887, @@ -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": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913" + "tx_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac" }, - "tx_hash": "a4e7702b0e7e9908e7a2d0b9ea40713df733dbc8760b7b68c90dc18d36d626d8", + "tx_hash": "df9193811d12bb9878abc31b8da60d0df89a69f3cfd443d00642db334bf6ff4f", "block_index": 182, - "block_time": 1731759596 + "block_time": 1732471470 } ], "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": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "order_match_id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "order_match_id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "status": "expired" }, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "block_index": 225, - "block_time": 1731759845 + "block_time": 1732471704 } ], "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": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "order_match_id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "order_match_id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "status": "valid", - "tx_hash": "a4e7702b0e7e9908e7a2d0b9ea40713df733dbc8760b7b68c90dc18d36d626d8", + "tx_hash": "df9193811d12bb9878abc31b8da60d0df89a69f3cfd443d00642db334bf6ff4f", "tx_index": 57, - "block_time": 1731759596, + "block_time": 1732471470, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "a4e7702b0e7e9908e7a2d0b9ea40713df733dbc8760b7b68c90dc18d36d626d8", + "tx_hash": "df9193811d12bb9878abc31b8da60d0df89a69f3cfd443d00642db334bf6ff4f", "block_index": 182, - "block_time": 1731759596 + "block_time": 1732471470 } ], "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": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "offer_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "status": "valid", - "tx_hash": "df2e66655e964422f4b0223eca9aa16b91599e9fd65e295f93aa27130087051a", + "tx_hash": "e61f6e9411bb240a956761f3c635bc289eb4f317839a57f636824ce2202eb086", "tx_index": 63, - "block_time": 1731759628 + "block_time": 1732471504 }, - "tx_hash": "df2e66655e964422f4b0223eca9aa16b91599e9fd65e295f93aa27130087051a", + "tx_hash": "e61f6e9411bb240a956761f3c635bc289eb4f317839a57f636824ce2202eb086", "block_index": 188, - "block_time": 1731759628 + "block_time": 1732471504 } ], "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": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "block_time": 1731759770 + "order_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "block_time": 1732471617 }, - "tx_hash": "b75363013be0c3c3bee6863c8af4dc81b5db15c69b4daec18b3195eea23cd815", + "tx_hash": "3d55dcd93065b249f036b9e507ba6777bc16754049c2a286bf7ff7b07db11950", "block_index": 211, - "block_time": 1731759770 + "block_time": 1732471617 } ], "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": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "block_time": 1731759845 + "order_match_id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "block_time": 1732471704 }, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "block_index": 225, - "block_time": 1731759845 + "block_time": 1732471704 } ], "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": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "satoshirate": 1, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "status": 0, - "tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "tx_index": 68, - "block_time": 1731759657, + "block_time": 1732471524, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "block_index": 193, - "block_time": 1731759657 + "block_time": 1732471524 } ], "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": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": 0, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "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": "mfbnuE9fskyyrrdTpM9Pziwid653g8eeCM", + "destination": "mq9WAYa6HLxVAZFUhydg7AkREqXvGibH6R", "dispense_quantity": 10, - "dispenser_tx_hash": "e5e46de14dd1329e0f58e8a2ab319efe39edfc6d3ea175e9dfb8da7338855b4a", - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "tx_hash": "f711ee279041a080b13414535c79b936c22f56fd59e11e327f3ec8eefd765e8d", + "dispenser_tx_hash": "0ba333965785b16989dafa3480ab098ed20accd47e40ab581dde8584a63e1d93", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "tx_hash": "b3b7c1979ff4bc03f1005d66ae7bf8537e271a55c935797c26869d7eea5c68ce", "tx_index": 31, - "block_time": 1731759408, + "block_time": 1732471263, "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": "f711ee279041a080b13414535c79b936c22f56fd59e11e327f3ec8eefd765e8d", + "tx_hash": "b3b7c1979ff4bc03f1005d66ae7bf8537e271a55c935797c26869d7eea5c68ce", "block_index": 135, - "block_time": 1731759408 + "block_time": 1732471263 } ], "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": 233, "btc_amount": 1000, - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "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": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "cdf07448dc24f093a5cdcd94d4ad848a03dcbef80993b0bdb2827eff3187cc44", + "tx_hash": "78ecf23865e70f4a5a49ac9bba675dab6750ffbcc06338d609b381a44d17ad5d", "tx_index": 25, "value": 66600.0, - "block_time": 1731759386, + "block_time": 1732471238, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "cdf07448dc24f093a5cdcd94d4ad848a03dcbef80993b0bdb2827eff3187cc44", + "tx_hash": "78ecf23865e70f4a5a49ac9bba675dab6750ffbcc06338d609b381a44d17ad5d", "block_index": 129, - "block_time": 1731759386 + "block_time": 1732471238 } ], "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": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "start_block": 0, "status": "open", - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "tx_index": 105, - "block_time": 1731759883, + "block_time": 1732471727, "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": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "block_index": 232, - "block_time": 1731759883 + "block_time": 1732471727 } ], "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": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c" + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd" }, "tx_hash": null, "block_index": 228, - "block_time": 1731759857 + "block_time": 1732471714 } ], "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": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "fairminter_tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "paid_quantity": 100000000, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": "valid", - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "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": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "block_index": 221, - "block_time": 1731759830 + "block_time": 1732471689 } ], "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": "cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec:0", + "destination": "000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "source": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "status": "valid", - "tx_hash": "cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec", + "tx_hash": "000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27", "tx_index": 75, - "block_time": 1731759690, + "block_time": 1732471550, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec", + "tx_hash": "000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27", "block_index": 199, - "block_time": 1731759690 + "block_time": 1732471550 } ], "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": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "destination": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "63623ad7483b05d5e3203ea214b4421c205c8619fbe8e69098e59cd3301abe6d:0", + "source": "534e070cac732d7784ecebc0ec258023f63cc19feda743a23fd25192fe560eee:0", "status": "valid", - "tx_hash": "b41a26f64b443be03944117f8b79f89ec69cb05e0c4a3e981aad5ce103d4298f", + "tx_hash": "d85302093d4204e207e303bd18bd423920cda9f17c1452670a34b122d87d876d", "tx_index": 74, - "block_time": 1731759687, + "block_time": 1732471547, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b41a26f64b443be03944117f8b79f89ec69cb05e0c4a3e981aad5ce103d4298f", + "tx_hash": "d85302093d4204e207e303bd18bd423920cda9f17c1452670a34b122d87d876d", "block_index": 198, - "block_time": 1731759687 + "block_time": 1732471547 } ], "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": 233, - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "msg_index": 1, "quantity": 2000000000, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", "status": "valid", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 905, @@ -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": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "status": "valid", - "tx_hash": "d80fd169ececc1a269897d8b2c109e20e6eda4dcf6187254ebe98270ec1a06d5", + "tx_hash": "722cbca318a965851ea1c8f33db264f2d79550c4dc26a538b1c40b391d33cdd8", "tx_index": 9, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, - "tx_hash": "d80fd169ececc1a269897d8b2c109e20e6eda4dcf6187254ebe98270ec1a06d5", + "tx_hash": "722cbca318a965851ea1c8f33db264f2d79550c4dc26a538b1c40b391d33cdd8", "block_index": 112, - "block_time": 1731759307 + "block_time": 1732471171 } ], "next_cursor": 50, @@ -1489,61 +1489,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "previous_block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "previous_block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236", "difficulty": 545259519, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, "confirmed": true }, { "block_index": 232, - "block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be", - "block_time": 1731759883, - "previous_block_hash": "602eab727fc97fad06b11b46b18c743ad83e59579ef9b4fff394df03dbfd63c6", + "block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236", + "block_time": 1732471727, + "previous_block_hash": "535e668c0eabe83bf29c37fa8652254f4dde4765e5c27c64af7417ba68a3a320", "difficulty": 545259519, - "ledger_hash": "dcd7d31738f37b83a41106cf71225d47c0cd59358e128cda517f915bf5b6f11f", - "txlist_hash": "bba1c95d2395cb349219d3edb5e110d31168de5b04fbd557feec74966f04ea05", - "messages_hash": "a36a1b41e92e282df416e44f8cac9c78e7d6052672ae4d73cffeea6969ed1deb", + "ledger_hash": "6ff33e55b2b32c3780c4207e3d03844bdd2fc8ee9a91ba842f91afbe78500403", + "txlist_hash": "44385933758279e6135cfb5727b2a676ffd30a91ab25a03f9df4cc6307487e20", + "messages_hash": "ac56cdd8e2cca8d6ee733ce6abba4162dcdb0d7694b54df23fb48ac7d2fdc3fe", "transaction_count": 1, "confirmed": true }, { "block_index": 231, - "block_hash": "602eab727fc97fad06b11b46b18c743ad83e59579ef9b4fff394df03dbfd63c6", - "block_time": 1731759869, - "previous_block_hash": "4600d79d612c2ad33ae0c2c2430a9f665dba127ea64286693b546cee390392b5", + "block_hash": "535e668c0eabe83bf29c37fa8652254f4dde4765e5c27c64af7417ba68a3a320", + "block_time": 1732471724, + "previous_block_hash": "42a053c26ef49cbde842fa0191a8752d82141a8ba49246b7ca38378e7854cb35", "difficulty": 545259519, - "ledger_hash": "7238c6fd3597eccf35472f0e933e084a3a827f8cf50942799079f060360a2cbb", - "txlist_hash": "654059c643488adaff780ee48402464dc3513e9ecdf2cd781cbd02c06df3e10f", - "messages_hash": "90556e036caa24c17584f615f7658667bee953200b2f2b797a078582fc12befa", + "ledger_hash": "e7de04fb1bb629d36c781cbe714f9e3d7865d30ebe6ca9de3f81a2a74dd9e688", + "txlist_hash": "db05d11afcf18790218322bdfc69900fd406edcba805155f39dbcf3ce55aba34", + "messages_hash": "bf8d47e8e2052104899eff54f9957ba0daa520277237004ba957d73214d60fba", "transaction_count": 1, "confirmed": true }, { "block_index": 230, - "block_hash": "4600d79d612c2ad33ae0c2c2430a9f665dba127ea64286693b546cee390392b5", - "block_time": 1731759865, - "previous_block_hash": "120dbc47eb959804f026373758f2c73781ff3b1996dabdafa67d86d50ffd000c", + "block_hash": "42a053c26ef49cbde842fa0191a8752d82141a8ba49246b7ca38378e7854cb35", + "block_time": 1732471721, + "previous_block_hash": "1b3d448300458542f0a4ac0172b6a4b455ef97ab2bbae65ad80a2af41cf23444", "difficulty": 545259519, - "ledger_hash": "064076aebc54763e1c9cc00a200eb3b127bbfc9b4cc0b91ddbcbd951a5db3448", - "txlist_hash": "067e2a6f3c3d008a6867e69c11e9f94091f67f1e239a6a5547a3acf9b2efe41c", - "messages_hash": "30d20053eb03c8bfec63943c40d937a5f8aaecaf25ff734436d90a50e16864f2", + "ledger_hash": "d04bbfa35e1d98a0dd3139f30ba62fd85c81fba218d1652d3dc00b92d2ae0084", + "txlist_hash": "dfc6f9fcc509518c166243a78c872b0cd1f7063f223300570ab54698c20e7546", + "messages_hash": "ed15ffb8336728d2f183ed4e3b449996e6d3405991256bc061e6e5e7607e1e42", "transaction_count": 1, "confirmed": true }, { "block_index": 229, - "block_hash": "120dbc47eb959804f026373758f2c73781ff3b1996dabdafa67d86d50ffd000c", - "block_time": 1731759861, - "previous_block_hash": "7c1c85fc797f0229d6f61b7a09a7d7a4acbd3af12fba8ce5cf94369a3ff17044", + "block_hash": "1b3d448300458542f0a4ac0172b6a4b455ef97ab2bbae65ad80a2af41cf23444", + "block_time": 1732471718, + "previous_block_hash": "42c23930f174e0b798bb3f773737ad28f14cb0ceee4dd68115c263b2303b387d", "difficulty": 545259519, - "ledger_hash": "41e3be3e7d133f8a45a91200f8a2847521118879ab9f64f191d2192173faee89", - "txlist_hash": "eb601c8d4e001e1f17c6ae48cc44a3fe3426b63a82b9ef911aee7e8e7fb3574b", - "messages_hash": "df0edaef5638189e92083dabb8ead31f38d961ff27bae1e3f681eb972a0b1814", + "ledger_hash": "6d02b811f85bd71b2e935d465a1d4172e8ea7a38252a65d649bf488c191b2a89", + "txlist_hash": "ec30a2144ceff4f1b49ac740d10f47eb9f26aaed5b9b0d8d898b27408d75e5d0", + "messages_hash": "a47c545803f224d13c45feadbbfd4c00bfb6a1cb1f151b7b02904ab79c0deabc", "transaction_count": 1, "confirmed": true } @@ -1580,13 +1580,13 @@ Return the information of a block { "result": { "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "previous_block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "previous_block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236", "difficulty": 545259519, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, "confirmed": true } @@ -1598,7 +1598,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83` (str, required) - The index of the block to return + + block_hash: `55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5` (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": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "previous_block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "previous_block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236", "difficulty": 545259519, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, "confirmed": true } @@ -1647,17 +1647,17 @@ Returns the transactions of a block "result": [ { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1 7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0 3 1", + "utxos_info": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1 91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604: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": 233, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "block_time": 1731759892 + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "block_time": 1732471742 }, "tx_hash": null }, @@ -1716,10 +1716,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106 }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" }, { "event_index": 911, @@ -1728,14 +1728,14 @@ Returns the events of a block "asset": "XCP", "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" }, { "event_index": 910, @@ -1755,9 +1755,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": 0, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" }, { "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" } ], "next_cursor": 908, @@ -1875,16 +1875,16 @@ Returns the events of a block filtered by event "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" }, { "event_index": 907, @@ -1904,12 +1904,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" }, { "event_index": 904, @@ -1929,22 +1929,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" } ], "next_cursor": null, @@ -2007,16 +2007,16 @@ Returns the credits of a block "result": [ { "block_index": 233, - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2122,12 +2122,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxo": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "utxo_address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "utxo": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "utxo_address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxo": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "utxo_address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "utxo": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "utxo_address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2188,10 +2188,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", + "object_id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", "block_index": 211, "confirmed": true, - "block_time": 1731759770 + "block_time": 1732471617 } ], "next_cursor": null, @@ -2223,13 +2223,13 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "df2e66655e964422f4b0223eca9aa16b91599e9fd65e295f93aa27130087051a", + "tx_hash": "e61f6e9411bb240a956761f3c635bc289eb4f317839a57f636824ce2202eb086", "block_index": 188, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "offer_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "offer_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "status": "valid", "confirmed": true, - "block_time": 1731759628 + "block_time": 1732471504 } ], "next_cursor": null, @@ -2261,19 +2261,19 @@ Returns the destructions of a block "result": [ { "tx_index": 101, - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "block_index": 228, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", "confirmed": true, - "block_time": 1731759857, + "block_time": 1732471714, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": false }, @@ -2322,14 +2322,14 @@ Returns the issuances of a block "result": [ { "tx_index": 105, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "issuer": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "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": 1731759883, + "block_time": 1732471727, "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": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604: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": 1731759892, + "block_time": 1732471742, "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": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604: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": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2455,27 +2455,27 @@ Returns the dispenses of a block { "tx_index": 106, "dispense_index": 0, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "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": 1731759892, + "block_time": 1732471742, "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": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "block_index": 190, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731759636, + "block_time": 1732471513, "fee_paid_normalized": "0.00600000" } ], @@ -2579,10 +2579,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "tx_index": 105, "block_index": 232, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -2607,7 +2607,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759883, + "block_time": 1732471727, "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": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "fairminter_tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "fairminter_tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -2700,17 +2700,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "cdf07448dc24f093a5cdcd94d4ad848a03dcbef80993b0bdb2827eff3187cc44", + "tx_hash": "78ecf23865e70f4a5a49ac9bba675dab6750ffbcc06338d609b381a44d17ad5d", "block_index": 129, - "block_hash": "6e59029e3bbfce38e422c8c23d08d859e97d09375c1ed09ed39f6d02922a741c", - "block_time": 1731759386, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "4b772323cd8d194200daf6b72e35422f98458c829f618a1d1d95a0f66ef11586", + "block_time": 1732471238, + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " cdf07448dc24f093a5cdcd94d4ad848a03dcbef80993b0bdb2827eff3187cc44:1 2 ", + "utxos_info": " 78ecf23865e70f4a5a49ac9bba675dab6750ffbcc06338d609b381a44d17ad5d: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": "a4e7702b0e7e9908e7a2d0b9ea40713df733dbc8760b7b68c90dc18d36d626d8", + "tx_hash": "df9193811d12bb9878abc31b8da60d0df89a69f3cfd443d00642db334bf6ff4f", "block_index": 182, - "block_hash": "6894468fd4cc453417e8378b17ad1a0929af161a29e426aceff8a9af1c509efe", - "block_time": 1731759596, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "3d3a309b05e4c85061f9f3bdadc5382be028503236a7b80d8893bf4adb69d6e2", + "block_time": 1732471470, + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "btc_amount": 2000, "fee": 10000, - "data": "0bb17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "data": "0b3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee9680d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "supported": true, - "utxos_info": " a4e7702b0e7e9908e7a2d0b9ea40713df733dbc8760b7b68c90dc18d36d626d8:0 3 1", + "utxos_info": " df9193811d12bb9878abc31b8da60d0df89a69f3cfd443d00642db334bf6ff4f:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx1_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", - "order_match_id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx1_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", + "order_match_id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "status": "valid" } }, @@ -2768,23 +2768,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "df2e66655e964422f4b0223eca9aa16b91599e9fd65e295f93aa27130087051a", + "tx_hash": "e61f6e9411bb240a956761f3c635bc289eb4f317839a57f636824ce2202eb086", "block_index": 188, - "block_hash": "66741767f181cca7b63ce58460612740dfba552d85f7c162503d0b61c3306ed6", - "block_time": 1731759628, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "4ad4b5b923681df93a8fbe2b94c133745a107fd25c91523bd415ac3d2a1a60bf", + "block_time": 1732471504, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "467abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "data": "46b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "supported": true, - "utxos_info": " df2e66655e964422f4b0223eca9aa16b91599e9fd65e295f93aa27130087051a:1 2 ", + "utxos_info": " e61f6e9411bb240a956761f3c635bc289eb4f317839a57f636824ce2202eb086:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "offer_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "status": "valid" } }, @@ -2807,17 +2807,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "block_index": 193, - "block_hash": "6c6c27aaa73095ae4981897e36ae2682cdfe38f49725c660b11135115b8dc836", - "block_time": 1731759657, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "0d0ff7c633d8847763032c87c78160538c4ff9cad0502d7cf385b483d62b3657", + "block_time": 1732471524, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce:1 2 ", + "utxos_info": " fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5: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": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2853,17 +2853,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1 7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0 3 1", + "utxos_info": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1 91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604: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": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "tx_hash": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "block_index": 146, - "block_hash": "4ae5684a198bdb280e54c0bbafecaf4fc7c18fa13ab1b1a8ef689f29fe954f11", - "block_time": 1731759450, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "6a5bbe12cc982516abefd6f5c3572c5743d2e755d89e9c516ebfbb596a84b91e", + "block_time": 1732471310, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6:1 2 ", + "utxos_info": " 1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453: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": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2931,17 +2931,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 105, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "block_index": 232, - "block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be", - "block_time": 1731759883, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236", + "block_time": 1732471727, + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27:1 2 ", + "utxos_info": " 7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a: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": 104, - "tx_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "block_index": 231, - "block_hash": "602eab727fc97fad06b11b46b18c743ad83e59579ef9b4fff394df03dbfd63c6", - "block_time": 1731759869, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "535e668c0eabe83bf29c37fa8652254f4dde4765e5c27c64af7417ba68a3a320", + "block_time": 1732471724, + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000000000000000003e8000003f1a69ea1d300000000000003e800150000000000000000", "supported": true, - "utxos_info": " fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411:1 2 ", + "utxos_info": " 0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e: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": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, @@ -3036,17 +3036,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc", + "tx_hash": "9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9", "block_index": 201, - "block_hash": "26916cbc71d769a19f9b91dc34b27e0583c7ecdcb25d076018e76fcb291d7fc7", - "block_time": 1731759697, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "61d30b2f7576c80552d3857cda6e64afbb7e13568da2be30da452ec0c02ee793", + "block_time": 1732471559, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a", + "data": "02000000178d82231300000000000003e880ea59ba6407b6ca374703351c81d67a8077d7ae1e", "supported": true, - "utxos_info": " dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc:1 2 ", + "utxos_info": " 9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9: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": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -3077,17 +3077,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "block_hash": "5ba403cedd4a17835df8b574f44ee1a91b44e435a6bb1d5091caf7329ae5a488", - "block_time": 1731759725, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "block_hash": "180f8731bf57f98101deb9574e9887c19c430916b5635d7e3f52d680a8a1d6d1", + "block_time": 1732471584, + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa72a4cae5765676f61961f3e7ff2d08f9ae88ee803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802ba632990d67f3cca92daf90e7f2adc092769a6d80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9:0 4 ", + "utxos_info": " bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128: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": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -3110,7 +3110,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "block_index": 190, - "block_hash": "7400e286c9941109ec8f6c385ed4ee5cb3e062957d046bd7f0c6917640d7889b", - "block_time": 1731759636, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "block_hash": "2bbf4dac83b3c9b759def339278bdcb155f1f2dbc3bcacc7a4f73562b76c0891", + "block_time": 1732471513, + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ec826d3210138c96dc02a5e87e4f229aab192f56017377656570206d7920617373657473", + "data": "0480c10af52b568889df3b2f913585bbaf3331a66262017377656570206d7920617373657473", "supported": true, - "utxos_info": " 500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9:1 2 ", + "utxos_info": " 6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "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": "cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec", + "tx_hash": "000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27", "block_index": 199, - "block_hash": "560e5a8acc3a6ab48519e198da859c4799ff37b6b4782871115be8e48fc1deaa", - "block_time": 1731759690, - "source": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", - "destination": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "block_hash": "5db37b9aa42586ebae0e15bf6c2a14fac2d7ce2f784119ec426cd9a76f13ea50", + "block_time": 1732471550, + "source": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", + "destination": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "btc_amount": 546, "fee": 0, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec:0 3 1", + "utxos_info": " 000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27: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": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, @@ -3208,17 +3208,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "b41a26f64b443be03944117f8b79f89ec69cb05e0c4a3e981aad5ce103d4298f", + "tx_hash": "d85302093d4204e207e303bd18bd423920cda9f17c1452670a34b122d87d876d", "block_index": 198, - "block_hash": "73d04880f7b9555fd4479bcd67f2f416bf26bbda22744cb331b2f3c0031a155b", - "block_time": 1731759687, - "source": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "block_hash": "7448bebbc0048319c9e95d8ea838495da238a6ad7792c13b11aeebc58ca96550", + "block_time": 1732471547, + "source": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "63623ad7483b05d5e3203ea214b4421c205c8619fbe8e69098e59cd3301abe6d:0 b41a26f64b443be03944117f8b79f89ec69cb05e0c4a3e981aad5ce103d4298f:1 2 ", + "utxos_info": "534e070cac732d7784ecebc0ec258023f63cc19feda743a23fd25192fe560eee:0 d85302093d4204e207e303bd18bd423920cda9f17c1452670a34b122d87d876d:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "detach", @@ -3255,17 +3255,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1 7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0 3 1", + "utxos_info": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1 91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3278,17 +3278,17 @@ Returns the list of the last ten transactions }, { "tx_index": 105, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "block_index": 232, - "block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be", - "block_time": 1731759883, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236", + "block_time": 1732471727, + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27:1 2 ", + "utxos_info": " 7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a: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: `02000000000106df84c678e075476ef6f003f4527d6c56bde27337e8fab7dfb66b751426b2251e0000000000ffffffffbdcb5aa790d086910ca42dcc2d55e1ffc57820d34cecb3d0d285ae9a1eb688e00000000000ffffffffc50d6241828a2bcb3e15fdf6f322a47be26677d58a0f8db969432d0251d243350000000000ffffffffb457d6e69e2648a5aad03873a4818e19ea5cff9244f70bc0d4617c978c87198f0000000000ffffffff591699673c2597c050c73368c62651829cfc73cd79228cb4a04bb9a4daa2ccff0000000000fffffffff1d68d06f80a3045895378a6e2d9c468e79abe68802311621b9178230e58766c0000000000ffffffff04e80300000000000069512103ecf160b3c5a244d26d34e311eb5b6c871faf1275e22dfd86d8815a2ece5e7ad621030b36a3ac84e4ca2560634d8e4a42addd3f8a54b1bad236ec37640256d852a58c2102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e6353aee80300000000000069512103ecf160b3c5a244d26da13f10ce66a5f9f1ee65da25b3f92dcfeb5c97ca4094fe21025f5c239734eae76a7f9917ec0256cceddcff58257a840001be8b0057484129d32102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e6353aee80300000000000069512102cdf160b3c5a244d26d37e3126b8e5bb6d374cec30ae5ed06a4c5d48eca8440b321025f5c239734eae7406a2c8259be9ccceddcff58257a8e856cdbe66f64c841290a2102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e6353ae387923fc06000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee0247304402206bab58cd42b1c3986a0e6b22454895b32c4ee3bfff105fd9ee60a950b3cd994302203d0ae7fc146c9607f48d7ef3ffc4a69ed32cf215fc57ad5a3fef657de68bd3bc012102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e630247304402206ae66c79a7f8e0b41709844e089508c2e7458b529007c7090efc6f9e62d8b91702200f15794f6a1ba54048e5691fc0f2a86fcaab0ae344ae236984a25f0e5cc06428012102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63024730440220452f0f764df602ecfb22bc7284497240ba35bffd155752b94df0bc4239ee947102201634fc290faf6af0dbfb06c194d177ff5fb2e7356ab196eb9ac2471fbd133c91012102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e630247304402205624013f724cb18d8cdf38f7587ef8038207547e1f49c489355eb167bb94405602207a14571cbd5747e4c7d4c3c7a095fe5f3413e4e1de79a2e90329148b9361e2c8012102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e630247304402207d7cbf2cf40e8640a58c8d6dc6d1353808c2ed7a5c39a3145990fb880ae470e202200befe9f6aa4aae6943381f9231d27c7e3fb6140b4d8a8153599f31ac7c4d14e3012102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63024730440220113269804ccc85b492dd9e085ca8b4426877a8108ca4932f17d8bac40f7c176d02206f2ebea1ae01e72a520f8c5882beee5c092e1d7f6ff9d5d34fb931cba2a0764b012102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e6300000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106542587aec5a4a185cb886e3a933ae17674989d05eaefd0c437737c3df8dfdc0c0000000000ffffffff349a75f6320239f3c2f744caea9c7d956a767d90a41c0a35e98dedda98036a150000000000ffffffff228986c3cefaf358807b8f31034034d85274167dd37f0a24b37eee12d3495ae30000000000ffffffff677ccf428b610b00d33f8cfc44251aa57a4e845b05135c6da41c91c67f3b1af90000000000ffffffffa81e00220cb1aa9b1d877e4fde1ae53f03590e7fc2de0897f6421068879e5a290000000000ffffffff7b53407a7b7d718c4f4e9391aba9e2e04f6dfd100cdf551413434a704e0f58ba0000000000ffffffff04e8030000000000006951210398dda925ae58287a894157622ea175c5a8483d5eb78082cf0beda58f80a37dc821030c837b0bf1e90c0978a74158e3a1f710af8afa520111c75cced73d016e300e122102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c0553aee8030000000000006951210398dda925ae58287a899d6c4e3f7ea9c4637cba32e2a5098e7f09539865b9c5562102229dfbeafa4906813b2337d78cb36ac07b2b5b24f19fd5dc059dc82a38b8879c2102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c0553aee80300000000000069512102b6dda925ae58287a89425721ae4b2c7fcc4f8bbc80c781fa176c73f500d4aa3e2102a29dfbe13c881708932337d78cb36ac0292b5b24f19fd5dc0fddc82a38b887cb2102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c0553ae387923fc060000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02473044022009778a3ce26f10834f8dcb736f95ac5c98fb98eeea7774ed3728c1a12d9627a3022052c77492b38be1b7e538e74b1945b3cf9b5347527e6b915dc4a705c1baf4a172012102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05024730440220106c60fc1b0b05d52e7d3266aadd1de4f499ecb536f7e3652c1137234dcdb0e40220747c5dd7148818474919e8a2fa2caf8bcc6ac2345978deda97e7745dc04e2d05012102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c050247304402204938c88ddc45ce2fe4fb6402bd8c5ccc0c4655ef7b5781c27fb9078d866f433302204f7b1a988549a00f3425098e6b986a6ce998325ba93dbbb92503dbfd38fe316d012102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05024730440220503e6d792a960b89fc2e20dc7fda00df1fb0b106f07d617ec13ac1ee047a702b0220405464505566e480e60fa881f3fb71dec78303e06f9fad728661c9fd6e7285aa012102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05024730440220147d7d99bf7bd0b2b66b35af894e248e88500ab756c8c169b5d066564b8137ce022036208bcc588dcb9c697e009d578a2e5aa139e43fa48f83e03cd42d7846e417a7012102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05024730440220720cb8f4d3367f676282b48431d346d477c142a5a8a7caa3f03aba3637eb71f302206bd0857a66c95b5a4091095eb43cbe3c4d2133a252d6a0974cd997965b39d6de012102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c0500000000` (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": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ea59ba6407b6ca374703351c81d67a8077d7ae1e80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "df84c678e075476ef6f003f4527d6c56bde27337e8fab7dfb66b751426b2251e", + "hash": "542587aec5a4a185cb886e3a933ae17674989d05eaefd0c437737c3df8dfdc0c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "bdcb5aa790d086910ca42dcc2d55e1ffc57820d34cecb3d0d285ae9a1eb688e0", + "hash": "349a75f6320239f3c2f744caea9c7d956a767d90a41c0a35e98dedda98036a15", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c50d6241828a2bcb3e15fdf6f322a47be26677d58a0f8db969432d0251d24335", + "hash": "228986c3cefaf358807b8f31034034d85274167dd37f0a24b37eee12d3495ae3", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "b457d6e69e2648a5aad03873a4818e19ea5cff9244f70bc0d4617c978c87198f", + "hash": "677ccf428b610b00d33f8cfc44251aa57a4e845b05135c6da41c91c67f3b1af9", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "591699673c2597c050c73368c62651829cfc73cd79228cb4a04bb9a4daa2ccff", + "hash": "a81e00220cb1aa9b1d877e4fde1ae53f03590e7fc2de0897f6421068879e5a29", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "f1d68d06f80a3045895378a6e2d9c468e79abe68802311621b9178230e58766c", + "hash": "7b53407a7b7d718c4f4e9391aba9e2e04f6dfd100cdf551413434a704e0f58ba", "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": "512103ecf160b3c5a244d26d34e311eb5b6c871faf1275e22dfd86d8815a2ece5e7ad621030b36a3ac84e4ca2560634d8e4a42addd3f8a54b1bad236ec37640256d852a58c2102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e6353ae" + "script_pub_key": "51210398dda925ae58287a894157622ea175c5a8483d5eb78082cf0beda58f80a37dc821030c837b0bf1e90c0978a74158e3a1f710af8afa520111c75cced73d016e300e122102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c0553ae" }, { "value": 1000, - "script_pub_key": "512103ecf160b3c5a244d26da13f10ce66a5f9f1ee65da25b3f92dcfeb5c97ca4094fe21025f5c239734eae76a7f9917ec0256cceddcff58257a840001be8b0057484129d32102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e6353ae" + "script_pub_key": "51210398dda925ae58287a899d6c4e3f7ea9c4637cba32e2a5098e7f09539865b9c5562102229dfbeafa4906813b2337d78cb36ac07b2b5b24f19fd5dc059dc82a38b8879c2102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c0553ae" }, { "value": 1000, - "script_pub_key": "512102cdf160b3c5a244d26d37e3126b8e5bb6d374cec30ae5ed06a4c5d48eca8440b321025f5c239734eae7406a2c8259be9ccceddcff58257a8e856cdbe66f64c841290a2102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e6353ae" + "script_pub_key": "512102b6dda925ae58287a89425721ae4b2c7fcc4f8bbc80c781fa176c73f500d4aa3e2102a29dfbe13c881708932337d78cb36ac0292b5b24f19fd5dc0fddc82a38b887cb2102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c0553ae" }, { "value": 29999987000, - "script_pub_key": "0014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee" + "script_pub_key": "00142ba632990d67f3cca92daf90e7f2adc092769a6d" } ], "vtxinwit": [ - "304402206bab58cd42b1c3986a0e6b22454895b32c4ee3bfff105fd9ee60a950b3cd994302203d0ae7fc146c9607f48d7ef3ffc4a69ed32cf215fc57ad5a3fef657de68bd3bc01", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63", - "304402206ae66c79a7f8e0b41709844e089508c2e7458b529007c7090efc6f9e62d8b91702200f15794f6a1ba54048e5691fc0f2a86fcaab0ae344ae236984a25f0e5cc0642801", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63", - "30440220452f0f764df602ecfb22bc7284497240ba35bffd155752b94df0bc4239ee947102201634fc290faf6af0dbfb06c194d177ff5fb2e7356ab196eb9ac2471fbd133c9101", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63", - "304402205624013f724cb18d8cdf38f7587ef8038207547e1f49c489355eb167bb94405602207a14571cbd5747e4c7d4c3c7a095fe5f3413e4e1de79a2e90329148b9361e2c801", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63", - "304402207d7cbf2cf40e8640a58c8d6dc6d1353808c2ed7a5c39a3145990fb880ae470e202200befe9f6aa4aae6943381f9231d27c7e3fb6140b4d8a8153599f31ac7c4d14e301", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63", - "30440220113269804ccc85b492dd9e085ca8b4426877a8108ca4932f17d8bac40f7c176d02206f2ebea1ae01e72a520f8c5882beee5c092e1d7f6ff9d5d34fb931cba2a0764b01", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63" + "3044022009778a3ce26f10834f8dcb736f95ac5c98fb98eeea7774ed3728c1a12d9627a3022052c77492b38be1b7e538e74b1945b3cf9b5347527e6b915dc4a705c1baf4a17201", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05", + "30440220106c60fc1b0b05d52e7d3266aadd1de4f499ecb536f7e3652c1137234dcdb0e40220747c5dd7148818474919e8a2fa2caf8bcc6ac2345978deda97e7745dc04e2d0501", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05", + "304402204938c88ddc45ce2fe4fb6402bd8c5ccc0c4655ef7b5781c27fb9078d866f433302204f7b1a988549a00f3425098e6b986a6ce998325ba93dbbb92503dbfd38fe316d01", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05", + "30440220503e6d792a960b89fc2e20dc7fda00df1fb0b106f07d617ec13ac1ee047a702b0220405464505566e480e60fa881f3fb71dec78303e06f9fad728661c9fd6e7285aa01", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05", + "30440220147d7d99bf7bd0b2b66b35af894e248e88500ab756c8c169b5d066564b8137ce022036208bcc588dcb9c697e009d578a2e5aa139e43fa48f83e03cd42d7846e417a701", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05", + "30440220720cb8f4d3367f676282b48431d346d477c142a5a8a7caa3f03aba3637eb71f302206bd0857a66c95b5a4091095eb43cbe3c4d2133a252d6a0974cd997965b39d6de01", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05" ], "lock_time": 0, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", - "tx_id": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4" + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", + "tx_id": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f" }, "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": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, - "memo": "memo2", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -3455,9 +3455,9 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 10, - "memo": "memo1", + "memo": "the memo", "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: `3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4` (str, required) - Transaction hash + + tx_hash: `e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa` (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": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803bb00e2d650a4fcfd7f4de6130e3750c94c05cb3", + "data": "020000000000000001000000000000271080eacd611b01eb84768f6f129dd086a1a176f08e12", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "bfc3719aeee00f693c42482bc2dc5db26fb13cbfc86e9721ff817867294d7c07", + "hash": "64d6b332291ef9dd4e5bf95ce3203755ff5b3be6d298512e2391cee4d3000ba0", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3512,20 +3512,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e802d1cd7e7f4b01de5f09059e6187bdf7a47bbfe9739f01c3b66a34f5d5cc59e4b5726599c950c8b2d31c733c2ba" + "script_pub_key": "6a2efed16f5ecc14fc1903ac2900c1b78d30b97b3cb40f6e4ddd406308413f06ae3207a62ca78a697e05e03b30265c92" }, { "value": 4949930546, - "script_pub_key": "0014ec826d3210138c96dc02a5e87e4f229aab192f56" + "script_pub_key": "0014c10af52b568889df3b2f913585bbaf3331a66262" } ], "vtxinwit": [ - "30440220492b23405d06d6890fc60dc9c74afb033e19c3a96142fa94861d7356e56e0614022079b622a6d92beea936b29df2d890a3d4f73b3d4abfdaa3b69ae6853e3b61da3201", - "029d03350526e6dd4e6b5750ecb7e3dabb0ee771c4492470389bc0acc34a9d2f40" + "3044022053faa4ad9895f4b6ad0f58b80101125cb353306206445be4705699c886ef3d5102206250f89beb94baf19ebebf73921340b2e082e02c182a7f416b7c5258a2da9c1a01", + "02ba99d2794116d748e801846a4fd3b4fc1ab4605610de426078c821d2024f676a" ], "lock_time": 0, - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", - "tx_id": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4" + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", + "tx_id": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3533,7 +3533,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "asset_info": { "asset_longname": null, @@ -3594,17 +3594,17 @@ Returns a transaction by its index. { "result": { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1 7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0 3 1", + "utxos_info": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1 91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604: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: `7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f` (str, required) - The hash of the transaction + + tx_hash: `91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604` (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. @@ -3635,17 +3635,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1 7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0 3 1", + "utxos_info": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1 91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3688,12 +3688,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106 }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 911, @@ -3702,14 +3702,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3720,9 +3720,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 910, @@ -3731,9 +3731,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": 0, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3770,9 +3770,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 908, @@ -3780,14 +3780,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 233, - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "msg_index": 1, "quantity": 2000000000, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", "status": "valid", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3797,9 +3797,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 907, @@ -3812,7 +3812,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f` (str, required) - The hash of the transaction to return + + tx_hash: `91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `913` (str, optional) - The last event index to return @@ -3836,12 +3836,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106 }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 911, @@ -3850,14 +3850,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3868,9 +3868,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 910, @@ -3879,9 +3879,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": 0, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3918,9 +3918,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 908, @@ -3928,14 +3928,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 233, - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "msg_index": 1, "quantity": 2000000000, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", "status": "valid", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3945,9 +3945,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 907, @@ -3960,7 +3960,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f` (str, required) - The hash of the transaction to return + + tx_hash: `91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604` (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 @@ -3979,10 +3979,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604: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": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4003,10 +4003,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604: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": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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: `7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f` (str, required) - The hash of the transaction to return + + tx_hash: `91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604` (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 @@ -4056,27 +4056,27 @@ Returns the dispenses of a block { "tx_index": 106, "dispense_index": 0, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "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": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4135,16 +4135,16 @@ Returns the events of a transaction "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4154,9 +4154,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 907, @@ -4166,12 +4166,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4181,9 +4181,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 904, @@ -4193,24 +4193,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": null, @@ -4223,7 +4223,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f` (str, required) - The hash of the transaction to return + + tx_hash: `91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `913` (str, optional) - The last event index to return + Default: `None` @@ -4245,16 +4245,16 @@ Returns the events of a transaction "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4264,9 +4264,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 907, @@ -4276,12 +4276,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4291,9 +4291,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 904, @@ -4303,24 +4303,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": null, @@ -4335,7 +4335,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3,bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj,bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (str, required) - Comma separated list of addresses + type (enum[str], optional) - The type of balances to return + Default: `all` + Members @@ -4365,7 +4365,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4375,7 +4375,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4386,7 +4386,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4396,7 +4396,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4407,7 +4407,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "utxo": null, "utxo_address": null, "quantity": 180, @@ -4417,7 +4417,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4428,7 +4428,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4438,7 +4438,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4449,7 +4449,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4459,7 +4459,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4476,7 +4476,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3,bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj,bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (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 @@ -4495,17 +4495,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 81, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "block_hash": "5ba403cedd4a17835df8b574f44ee1a91b44e435a6bb1d5091caf7329ae5a488", - "block_time": 1731759725, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "block_hash": "180f8731bf57f98101deb9574e9887c19c430916b5635d7e3f52d680a8a1d6d1", + "block_time": 1732471584, + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa72a4cae5765676f61961f3e7ff2d08f9ae88ee803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802ba632990d67f3cca92daf90e7f2adc092769a6d80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9:0 4 ", + "utxos_info": " bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4513,14 +4513,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4528,7 +4528,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4547,17 +4547,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "7152c36262483c1a3158cc8ca6ca8015a48ef6d6dfe215c6baf96e2f78d72dd2", + "tx_hash": "46664a9cfa41329ff96717dd72018d4a25e4d514ab236215432ed0754049f268", "block_index": 204, - "block_hash": "41b648b293770f543bc5aa2f62413afddc492531915a8115bfc92dcf089504ca", - "block_time": 1731759720, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "block_hash": "10d437d9b39069b93b39c78f384259c931cb3e5d0200b4a55ae5eae85f1bb660", + "block_time": 1732471580, + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa72a4cae5765676f61961f3e7ff2d08f9ae88ee803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f56c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802ba632990d67f3cca92daf90e7f2adc092769a6d80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a66262c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 7152c36262483c1a3158cc8ca6ca8015a48ef6d6dfe215c6baf96e2f78d72dd2:0 4 ", + "utxos_info": " 46664a9cfa41329ff96717dd72018d4a25e4d514ab236215432ed0754049f268:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4565,14 +4565,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4580,7 +4580,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4599,17 +4599,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "block_hash": "73a9ca3a2b9181f87664c3f4dc8691b9aa61de0f714e9a210c6b19a7cb1e77ae", - "block_time": 1731759716, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "72d828f9623aa9260cc26b080fc4591f6ed72194735ae56c3a9be3df28c0e92b", + "block_time": 1732471576, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ea59ba6407b6ca374703351c81d67a8077d7ae1e80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4:0 4 ", + "utxos_info": " a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4617,14 +4617,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4632,7 +4632,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4651,17 +4651,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "block_index": 202, - "block_hash": "1139d85b166a885a689d0417e403516af8ffd993586dec0ba8304890b94072ec", - "block_time": 1731759712, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "2cba7e31473a2fe091d97126a99b94b38f000c2a80e6796644f961d862729b0a", + "block_time": 1732471562, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ea59ba6407b6ca374703351c81d67a8077d7ae1e80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7:0 4 ", + "utxos_info": " b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4669,14 +4669,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4684,7 +4684,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4703,17 +4703,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc", + "tx_hash": "9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9", "block_index": 201, - "block_hash": "26916cbc71d769a19f9b91dc34b27e0583c7ecdcb25d076018e76fcb291d7fc7", - "block_time": 1731759697, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "61d30b2f7576c80552d3857cda6e64afbb7e13568da2be30da452ec0c02ee793", + "block_time": 1732471559, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a", + "data": "02000000178d82231300000000000003e880ea59ba6407b6ca374703351c81d67a8077d7ae1e", "supported": true, - "utxos_info": " dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc:1 2 ", + "utxos_info": " 9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4721,12 +4721,12 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4746,7 +4746,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3,bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj,bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `913` (str, optional) - The last event index to return @@ -4770,29 +4770,29 @@ Returns the events of a list of addresses "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "block_time": 1731759845 + "order_match_id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "block_time": 1732471704 }, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "block_index": 225, - "block_time": 1731759845 + "block_time": 1732471704 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "event": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731759845, + "block_time": 1732471704, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4802,37 +4802,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "block_index": 225, - "block_time": 1731759845 + "block_time": 1732471704 }, { "event_index": 743, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "block_time": 1731759770 + "order_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "block_time": 1732471617 }, - "tx_hash": "b75363013be0c3c3bee6863c8af4dc81b5db15c69b4daec18b3195eea23cd815", + "tx_hash": "3d55dcd93065b249f036b9e507ba6777bc16754049c2a286bf7ff7b07db11950", "block_index": 211, - "block_time": 1731759770 + "block_time": 1732471617 }, { "event_index": 742, "event": "CREDIT", "params": { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", + "event": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731759770, + "block_time": 1732471617, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4842,9 +4842,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000000" }, - "tx_hash": "b75363013be0c3c3bee6863c8af4dc81b5db15c69b4daec18b3195eea23cd815", + "tx_hash": "3d55dcd93065b249f036b9e507ba6777bc16754049c2a286bf7ff7b07db11950", "block_index": 211, - "block_time": 1731759770 + "block_time": 1732471617 }, { "event_index": 698, @@ -4852,15 +4852,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "status": "valid", - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "tx_index": 81, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4870,13 +4870,13 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "block_time": 1731759725 + "block_time": 1732471584 } ], "next_cursor": 698, - "result_count": 258 + "result_count": 260 } ``` @@ -4885,7 +4885,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3,bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s,bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f` (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 @@ -4901,17 +4901,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "quantity": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "status": "valid", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -4922,22 +4922,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "CREDIT", "params": { - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "XCP", "block_index": 233, "calling_function": "send", - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4947,22 +4947,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "address": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "XCP", "block_index": 233, - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4972,30 +4972,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731759896.8037238, + "block_time": 1732471746.555061, "btc_amount": 0, - "data": "0200000000000000010000000000002710803bb00e2d650a4fcfd7f4de6130e3750c94c05cb3", + "data": "020000000000000001000000000000271080eacd611b01eb84768f6f129dd086a1a176f08e12", "destination": "", "fee": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, - "utxos_info": "077c4d29677881ff21976ec8bf3cb16fb25ddcc22b48423c690fe0ee9a71c3bf:1 3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4:1 2 ", + "utxos_info": "a00b00d3e4ce91232e5198d2e63b5bff553720e35cf95b4eddf91e2932b3d664:1 e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "asset_info": { "asset_longname": null, @@ -5009,7 +5009,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 } ], "next_cursor": null, @@ -5022,7 +5022,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address to return + type (enum[str], optional) - The type of balances to return + Default: `` + Members @@ -5048,7 +5048,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5056,14 +5056,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5071,14 +5071,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "999.99998960" }, { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5086,14 +5086,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "979.99999980" }, { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5108,7 +5108,7 @@ Returns the balances of an address "quantity_normalized": "825.99966196" }, { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5116,7 +5116,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -5133,7 +5133,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + type (enum[str], optional) - The type of balances to return + Default: `all` @@ -5158,7 +5158,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5183,7 +5183,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5233,16 +5233,16 @@ Returns the credits of an address "result": [ { "block_index": 225, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "event": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759845, + "block_time": 1732471704, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5254,16 +5254,16 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "event": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5275,16 +5275,16 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "7152c36262483c1a3158cc8ca6ca8015a48ef6d6dfe215c6baf96e2f78d72dd2", + "event": "46664a9cfa41329ff96717dd72018d4a25e4d514ab236215432ed0754049f268", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759720, + "block_time": 1732471580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5296,16 +5296,16 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "event": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759720, + "block_time": 1732471580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5317,16 +5317,16 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", + "event": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5347,7 +5347,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5386,16 +5386,16 @@ Returns the debits of an address "result": [ { "block_index": 203, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "event": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5407,20 +5407,20 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "event": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -5428,16 +5428,16 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "event": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5449,20 +5449,20 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "event": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -5470,20 +5470,20 @@ Returns the debits of an address }, { "block_index": 201, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc", + "event": "9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759697, + "block_time": 1732471559, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -5500,7 +5500,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address of the feed + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5535,7 +5535,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -5554,9 +5554,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "8430ab16e38654e66a0dabd5f795ab64d8fad97f4f1acfdfa087b1d886ef3890", + "tx_hash": "4a8b2966e99df9a216be644fb270e01e52b54346404238870f42123cf0875ce3", "block_index": 128, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5564,7 +5564,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731759383, + "block_time": 1732471234, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5578,7 +5578,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -5597,14 +5597,14 @@ Returns the burns of an address "result": [ { "tx_index": 6, - "tx_hash": "5430898b9307908a2fde4be7bf8f36d7379489c34ee1e495a9ff5a5d76788ec7", + "tx_hash": "bc4750d9221375dc94726ab9c7f36670ab659e7595bd6cda2942082015118a7d", "block_index": 112, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -5619,7 +5619,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -5638,10 +5638,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5649,7 +5649,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5662,10 +5662,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5673,11 +5673,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -5686,10 +5686,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5697,11 +5697,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -5710,10 +5710,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5721,7 +5721,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5734,10 +5734,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5745,11 +5745,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -5767,7 +5767,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qcafgsw0swjvlkpcryph7lakegzqqs56zpnjqmw` (str, required) - The address to return + + address: `bcrt1qdhzy4e83u0hq472jxsuv30flhk0culysrd7mr5` (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 @@ -5786,10 +5786,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "73bff74111577b8dace97ec0ab257374d1f62bebfc386669d4c2b807b09bad49", + "tx_hash": "d02a74cbb590867b6ec56dd0d72e0f771f0933e88d931ef6ab2512a71584b73f", "block_index": 142, - "source": "d1ed10823853b558f58e63f14e038420ae619b38e62adc99dc5b3f0391b2914c:0", - "destination": "bcrt1qcafgsw0swjvlkpcryph7lakegzqqs56zpnjqmw", + "source": "9d75a123706398802118d0d66b1aeb349b820941d4fe509e76f6f53625800f38:0", + "destination": "bcrt1qdhzy4e83u0hq472jxsuv30flhk0culysrd7mr5", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5797,11 +5797,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759434, + "block_time": 1732471293, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -5819,7 +5819,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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` @@ -5847,7 +5847,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qcafgsw0swjvlkpcryph7lakegzqqs56zpnjqmw` (str, required) - The address to return + + address: `bcrt1qdhzy4e83u0hq472jxsuv30flhk0culysrd7mr5` (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` @@ -5875,7 +5875,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5904,9 +5904,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5915,7 +5915,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5926,7 +5926,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5943,9 +5943,9 @@ Returns the dispensers of an address }, { "tx_index": 68, - "tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -5954,7 +5954,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5965,11 +5965,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759660, + "block_time": 1732471527, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -5991,7 +5991,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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` @@ -6004,9 +6004,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6015,7 +6015,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6026,7 +6026,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6049,7 +6049,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6069,19 +6069,19 @@ Returns the dispenses of a source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "132594491317fb1e7506ad9b3527f2a09926ebbaf19e0f22c0c1ceeca3c13dff", + "tx_hash": "25becfab15793702ef29f3451e9bc99d13afe0a5e4ad41229360c8112c39b204", "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "dispenser_tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6089,7 +6089,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6104,11 +6104,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759660, + "block_time": 1732471527, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -6118,19 +6118,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6138,7 +6138,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6153,7 +6153,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6167,19 +6167,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6187,7 +6187,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6202,7 +6202,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6224,7 +6224,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - The address to return + + address: `bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (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 @@ -6244,19 +6244,19 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "132594491317fb1e7506ad9b3527f2a09926ebbaf19e0f22c0c1ceeca3c13dff", + "tx_hash": "25becfab15793702ef29f3451e9bc99d13afe0a5e4ad41229360c8112c39b204", "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "dispenser_tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6264,7 +6264,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6279,11 +6279,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759660, + "block_time": 1732471527, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -6293,19 +6293,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6313,7 +6313,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6328,7 +6328,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6342,19 +6342,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6362,7 +6362,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6377,7 +6377,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6399,7 +6399,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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` @@ -6420,19 +6420,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6440,7 +6440,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6455,7 +6455,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6469,19 +6469,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6489,7 +6489,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6504,7 +6504,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6526,7 +6526,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - The address to return + + address: `bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (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` @@ -6547,19 +6547,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6567,7 +6567,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6582,7 +6582,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6596,19 +6596,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6616,7 +6616,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6631,7 +6631,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6653,7 +6653,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3` (str, required) - The address to return + + address: `bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s` (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 @@ -6672,16 +6672,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "block_index": 190, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731759636, + "block_time": 1732471513, "fee_paid_normalized": "0.00600000" } ], @@ -6695,7 +6695,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6727,14 +6727,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "b98cc071664ff576b79be7f61ca00c742b29e9fddb94922abae93f8498cab67a", + "tx_hash": "ce3fccf33642b49c539acaef918e1443a85670e0904027c20fd0a1d00c042aa4", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "transfer": false, "callable": false, "call_date": 0, @@ -6749,20 +6749,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731759693, + "block_time": 1732471555, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "3572941c7dc9677f072515ce8977931217d90767ac674d5d52b461096f75d2c7", + "tx_hash": "eb21e4a9a591adb3a6fff02c25bd3378b73b04c0f7b322e5e343795a62948083", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "transfer": false, "callable": false, "call_date": 0, @@ -6777,20 +6777,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731759510, + "block_time": 1732471362, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "79ea9d5e6c95c63449ddf01c907f4fcf8184c05cff77a4439ee240f2bd250263", + "tx_hash": "5624d7900784fc43130010441b6be9fe728a46adf94cb10204c454fd5f9a3e67", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "transfer": false, "callable": false, "call_date": 0, @@ -6805,20 +6805,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731759506, + "block_time": 1732471358, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "6dbd2e40e6a4d94e30b991dbeed66a2b2e86354cc94247b685c349518c201e7a", + "tx_hash": "aa3fa1e1e9c3186503384e3d010f39865d8fbd942d3c855fd4c8bb8cade504d9", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "transfer": false, "callable": false, "call_date": 0, @@ -6833,20 +6833,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731759492, + "block_time": 1732471354, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "cbedfe5239d97d7104eff184f50b288f8e336205fb4c129a92028e4e5ac772de", + "tx_hash": "5a3c411833b651081f345517139a4f9f8aacd412322b844714f4599db51b72d6", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "transfer": false, "callable": false, "call_date": 0, @@ -6861,7 +6861,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731759477, + "block_time": 1732471349, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6876,7 +6876,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The issuer or owner to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -6899,8 +6899,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 100000000000, @@ -6908,16 +6908,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": 1731759693, - "last_issuance_block_time": 1731759693, + "first_issuance_block_time": 1732471555, + "last_issuance_block_time": 1732471555, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 10000000000, @@ -6925,16 +6925,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": 1731759477, - "last_issuance_block_time": 1731759506, + "first_issuance_block_time": 1732471349, + "last_issuance_block_time": 1732471358, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 180, @@ -6942,16 +6942,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": 1731759457, - "last_issuance_block_time": 1731759465, + "first_issuance_block_time": 1732471317, + "last_issuance_block_time": 1732471336, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 100000000000, @@ -6959,16 +6959,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": 1731759423, - "last_issuance_block_time": 1731759423, + "first_issuance_block_time": 1732471281, + "last_issuance_block_time": 1732471281, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 40, @@ -6976,8 +6976,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": 1731759374, - "last_issuance_block_time": 1731759379, + "first_issuance_block_time": 1732471226, + "last_issuance_block_time": 1732471230, "supply_normalized": "0.00000040" } ], @@ -6991,7 +6991,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The issuer to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -7014,8 +7014,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 100000000000, @@ -7023,16 +7023,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": 1731759693, - "last_issuance_block_time": 1731759693, + "first_issuance_block_time": 1732471555, + "last_issuance_block_time": 1732471555, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 10000000000, @@ -7040,16 +7040,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": 1731759477, - "last_issuance_block_time": 1731759506, + "first_issuance_block_time": 1732471349, + "last_issuance_block_time": 1732471358, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 180, @@ -7057,16 +7057,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": 1731759457, - "last_issuance_block_time": 1731759465, + "first_issuance_block_time": 1732471317, + "last_issuance_block_time": 1732471336, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 100000000000, @@ -7074,16 +7074,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": 1731759423, - "last_issuance_block_time": 1731759423, + "first_issuance_block_time": 1732471281, + "last_issuance_block_time": 1732471281, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 40, @@ -7091,8 +7091,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": 1731759374, - "last_issuance_block_time": 1731759379, + "first_issuance_block_time": 1732471226, + "last_issuance_block_time": 1732471230, "supply_normalized": "0.00000040" } ], @@ -7106,7 +7106,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The owner to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -7129,8 +7129,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 100000000000, @@ -7138,16 +7138,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": 1731759693, - "last_issuance_block_time": 1731759693, + "first_issuance_block_time": 1732471555, + "last_issuance_block_time": 1732471555, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 10000000000, @@ -7155,16 +7155,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": 1731759477, - "last_issuance_block_time": 1731759506, + "first_issuance_block_time": 1732471349, + "last_issuance_block_time": 1732471358, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 180, @@ -7172,16 +7172,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": 1731759457, - "last_issuance_block_time": 1731759465, + "first_issuance_block_time": 1732471317, + "last_issuance_block_time": 1732471336, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 100000000000, @@ -7189,16 +7189,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": 1731759423, - "last_issuance_block_time": 1731759423, + "first_issuance_block_time": 1732471281, + "last_issuance_block_time": 1732471281, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false, "supply": 40, @@ -7206,8 +7206,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": 1731759374, - "last_issuance_block_time": 1731759379, + "first_issuance_block_time": 1732471226, + "last_issuance_block_time": 1732471230, "supply_normalized": "0.00000040" } ], @@ -7221,7 +7221,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -7240,17 +7240,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "block_hash": "73a9ca3a2b9181f87664c3f4dc8691b9aa61de0f714e9a210c6b19a7cb1e77ae", - "block_time": 1731759716, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "72d828f9623aa9260cc26b080fc4591f6ed72194735ae56c3a9be3df28c0e92b", + "block_time": 1732471576, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ea59ba6407b6ca374703351c81d67a8077d7ae1e80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4:0 4 ", + "utxos_info": " a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7258,14 +7258,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -7273,7 +7273,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7292,17 +7292,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "block_index": 202, - "block_hash": "1139d85b166a885a689d0417e403516af8ffd993586dec0ba8304890b94072ec", - "block_time": 1731759712, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "2cba7e31473a2fe091d97126a99b94b38f000c2a80e6796644f961d862729b0a", + "block_time": 1732471562, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ea59ba6407b6ca374703351c81d67a8077d7ae1e80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7:0 4 ", + "utxos_info": " b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7310,14 +7310,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -7325,7 +7325,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7344,17 +7344,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc", + "tx_hash": "9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9", "block_index": 201, - "block_hash": "26916cbc71d769a19f9b91dc34b27e0583c7ecdcb25d076018e76fcb291d7fc7", - "block_time": 1731759697, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "61d30b2f7576c80552d3857cda6e64afbb7e13568da2be30da452ec0c02ee793", + "block_time": 1732471559, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a", + "data": "02000000178d82231300000000000003e880ea59ba6407b6ca374703351c81d67a8077d7ae1e", "supported": true, - "utxos_info": " dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc:1 2 ", + "utxos_info": " 9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7362,12 +7362,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -7378,17 +7378,17 @@ Returns the transactions of an address }, { "tx_index": 76, - "tx_hash": "b98cc071664ff576b79be7f61ca00c742b29e9fddb94922abae93f8498cab67a", + "tx_hash": "ce3fccf33642b49c539acaef918e1443a85670e0904027c20fd0a1d00c042aa4", "block_index": 200, - "block_hash": "417eed1a7146f8c4a489d8c99425f8e6eca7e2e9acc1323ec88ab9d4786ea42b", - "block_time": 1731759693, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "03d61c5d9987d073cd13acf24bd711c8938bff7e02c2b6414dc52f4e9ed71af8", + "block_time": 1732471555, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " b98cc071664ff576b79be7f61ca00c742b29e9fddb94922abae93f8498cab67a:1 2 ", + "utxos_info": " ce3fccf33642b49c539acaef918e1443a85670e0904027c20fd0a1d00c042aa4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7413,17 +7413,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "block_index": 193, - "block_hash": "6c6c27aaa73095ae4981897e36ae2682cdfe38f49725c660b11135115b8dc836", - "block_time": 1731759657, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "0d0ff7c633d8847763032c87c78160538c4ff9cad0502d7cf385b483d62b3657", + "block_time": 1732471524, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce:1 2 ", + "utxos_info": " fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7440,7 +7440,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -7461,7 +7461,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -7480,20 +7480,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "tx_hash": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "block_index": 146, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731759450, + "block_time": 1732471310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -7518,7 +7518,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7547,9 +7547,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", + "tx_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", "block_index": 179, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7566,7 +7566,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759522, + "block_time": 1732471386, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7594,9 +7594,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", + "tx_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7613,7 +7613,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7641,9 +7641,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "tx_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "block_index": 188, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7660,7 +7660,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759628, + "block_time": 1732471504, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7688,9 +7688,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", + "tx_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", "block_index": 211, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -7707,7 +7707,7 @@ Returns the orders of an address "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759770, + "block_time": 1732471617, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7744,7 +7744,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The source of the fairminter to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7769,10 +7769,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "22e15bb976dafae6b5d6550963b709441d90a36b705dd7d122c0d6e74aca9ee1", + "tx_hash": "990ca2dd84bda5e1b719c0b132959c88c3da3bbfb91432c6b8ae4279aaba8372", "tx_index": 44, "block_index": 150, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "FREEFAIRMINT", "asset_parent": null, "asset_longname": null, @@ -7797,7 +7797,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731759465, + "block_time": 1732471336, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -7809,10 +7809,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "ec04f10a36d49b14bc58fb9eb01d43680d8f10ad31bfae8386d4b86c7d9ec859", + "tx_hash": "ed0d44936a91225d0f5817f4387d923072945932e4223a884cde23e2a54071b6", "tx_index": 43, "block_index": 147, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7837,7 +7837,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759454, + "block_time": 1732471314, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7846,10 +7846,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "ade9ef15dd1cc618815984c7d7d307d3d06c340eb27b1af1c3f2d2f6f3dbbb18", + "tx_hash": "1f185374ff1b503fa2860c9b9c61ea1dd92c1f483477c52ce36f872562685c27", "tx_index": 22, "block_index": 126, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "FAIRMINTD", "asset_parent": null, "asset_longname": null, @@ -7874,7 +7874,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731759374, + "block_time": 1732471226, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7886,10 +7886,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "68111295f491f1377f8599aaabfbe8c341a51b88e782c64ad5d45774f7a2d957", + "tx_hash": "9176928899665fab065079e6173f9f331c93f218f835966ba71f8876d6001ddf", "tx_index": 18, "block_index": 122, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "FAIRMINTC", "asset_parent": null, "asset_longname": null, @@ -7914,7 +7914,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731759349, + "block_time": 1732471209, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7926,10 +7926,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "b26f0299ae73b61d9a9f122bfbe0cd2de151c6bcbb2b174c49887bc45d07f30a", + "tx_hash": "6e648e686b0af8f9bad1ee617095a4ca4d4bff52461bf6a6dbc551751dca106f", "tx_index": 14, "block_index": 121, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "FAIRMINTB", "asset_parent": null, "asset_longname": null, @@ -7954,7 +7954,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731759346, + "block_time": 1732471206, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7966,10 +7966,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "0c375f75a195b0fd01c4a56bfecd32373d2d5eada1d8cb1aa6de475de9ebdefc", + "tx_hash": "82ae3a1189bc2654a7f91ea54881f5ec9ba25193107597888f6134112d546dd2", "tx_index": 10, "block_index": 116, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "FAIRMINTA", "asset_parent": null, "asset_longname": null, @@ -7994,7 +7994,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731759325, + "block_time": 1732471189, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8016,7 +8016,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - The address of the mints to return + + address: `bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8034,22 +8034,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "d8251537ada7cac543c912d4fba6a7a834092803321eabfa848bb0f089f787f1", + "tx_hash": "660976e4b7c607bffd972e3a48292ad06f2372cbf1be035e716bb697746dc064", "tx_index": 46, "block_index": 150, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "22e15bb976dafae6b5d6550963b709441d90a36b705dd7d122c0d6e74aca9ee1", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "990ca2dd84bda5e1b719c0b132959c88c3da3bbfb91432c6b8ae4279aaba8372", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759465, + "block_time": 1732471336, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8058,22 +8058,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "63d771bb9e4591c00a7f9a0ae2285b22bc085479e10032da2feaec24b2113a89", + "tx_hash": "9baa83e2249df86e3e722a1b6966513e15c112290150bc2fdb0a0c47f6653660", "tx_index": 45, "block_index": 149, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "22e15bb976dafae6b5d6550963b709441d90a36b705dd7d122c0d6e74aca9ee1", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "990ca2dd84bda5e1b719c0b132959c88c3da3bbfb91432c6b8ae4279aaba8372", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759461, + "block_time": 1732471322, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8082,22 +8082,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "1fa69076fd4d4950079db42ce38b016bf7a9f7d6e455cbbbac527a45cd164f38", + "tx_hash": "51d63f17cf7a13acdb351bdbce92acfecc835fd03a4ee0d0675f5f806380d0bc", "tx_index": 23, "block_index": 127, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "ade9ef15dd1cc618815984c7d7d307d3d06c340eb27b1af1c3f2d2f6f3dbbb18", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "1f185374ff1b503fa2860c9b9c61ea1dd92c1f483477c52ce36f872562685c27", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759379, + "block_time": 1732471230, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8106,22 +8106,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "80c1f187008203a2f61fd88a63dacd1da5f3059f64d885f7948f4acb69516c2c", + "tx_hash": "c92f59de2df943978015198fba477aa934b42c4d7cb40f99f55919eb6eae6ed1", "tx_index": 21, "block_index": 125, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "68111295f491f1377f8599aaabfbe8c341a51b88e782c64ad5d45774f7a2d957", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "9176928899665fab065079e6173f9f331c93f218f835966ba71f8876d6001ddf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759371, + "block_time": 1732471221, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8130,22 +8130,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e6706ef4b84494fedbb8bbaa597aea0306e87d8628b04834fecc679568a03bee", + "tx_hash": "9a448e24d30659b41db19e68935cfa37819ad2cdb7ea454070470f296e67b581", "tx_index": 20, "block_index": 124, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "68111295f491f1377f8599aaabfbe8c341a51b88e782c64ad5d45774f7a2d957", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "9176928899665fab065079e6173f9f331c93f218f835966ba71f8876d6001ddf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759357, + "block_time": 1732471217, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8154,22 +8154,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2bc717c478852c4fcbc79ecd2f3df1fabd8136392b9b9d9c3dd63b6373237ef4", + "tx_hash": "e626255e3d0fce74d72c13a715c37fcfd801e2aee8141eb69bdd1a8402642bf5", "tx_index": 19, "block_index": 123, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "68111295f491f1377f8599aaabfbe8c341a51b88e782c64ad5d45774f7a2d957", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "9176928899665fab065079e6173f9f331c93f218f835966ba71f8876d6001ddf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759353, + "block_time": 1732471214, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8178,22 +8178,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9eda3a2c4bd518e5142f68185257602b68c4a76f791edade1068e05c547ac098", + "tx_hash": "5fadd8b96f40bf374ae431be91b215de48ee01e9a0c417f2c3ca5a95cc725e22", "tx_index": 15, "block_index": 118, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "b26f0299ae73b61d9a9f122bfbe0cd2de151c6bcbb2b174c49887bc45d07f30a", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "6e648e686b0af8f9bad1ee617095a4ca4d4bff52461bf6a6dbc551751dca106f", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759333, + "block_time": 1732471195, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8202,22 +8202,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "d33293fdda0a6471a2d2dcb4e0d7bd1880943d01b189389cac269687b78ed54d", + "tx_hash": "20220e14679703fbb47cbeedaf98faf7be7fc40d8169df521a30ce5491826e7c", "tx_index": 11, "block_index": 114, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "0c375f75a195b0fd01c4a56bfecd32373d2d5eada1d8cb1aa6de475de9ebdefc", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "82ae3a1189bc2654a7f91ea54881f5ec9ba25193107597888f6134112d546dd2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759317, + "block_time": 1732471180, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8236,7 +8236,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - The address of the mints to return + + address: `bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (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` @@ -8266,7 +8266,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0` (str, required) - The utxo to return + + utxo: `91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604: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 @@ -8286,8 +8286,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 2000000000, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8300,12 +8300,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8367,8 +8367,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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address that will make the bet - + feed_address: `bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address that will make the bet + + feed_address: `bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (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) @@ -8390,7 +8390,7 @@ Composes a transaction to issue a bet against a feed. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -8442,7 +8442,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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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) @@ -8459,7 +8459,7 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -8504,7 +8504,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8515,9 +8515,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985817, - "btc_fee": 14183, - "rawtransaction": "02000000000101c2f42383c604095e984023fa8a6bc7c2c8e15309914bc6eb4cb409288a96cd2900000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff0200000000000000002b6a29f4d1fa54ef331f75e8a3a3a7264515bc3b4764925f9b60179e597eaf49468d577b13f4a658716d3ff999ba052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "02000000000101f43d6aa35ec97a4c354537498de48c09925a50ab4561e11e8463b5994d91b603000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff0200000000000000002b6a295106a80f6ad5284620b39fcc710285635f48bccdff797e5ef065a11c457dd00ad6ebcf2071e956cd0900f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8539,8 +8539,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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address that will be sending the payment - + order_match_id: `f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655_fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411` (str, required) - The ID of the order match to pay for + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address that will be sending the payment + + order_match_id: `d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b_0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e` (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) @@ -8553,7 +8553,7 @@ Composes a transaction to pay for a BTC order match. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -8598,24 +8598,24 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "order_match_id": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655_fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "order_match_id": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b_0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bf2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "data": "434e5452505254590bd015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980948, - "btc_fee": 18052, - "rawtransaction": "020000000001019554816e129503f60b8d0dc427100d9b1bd0dba349592aaffcb42f4395ce773600000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff03e803000000000000160014dfe4da65ba3b67ccfd1bfd15ca201312b56e770600000000000000004b6a494c747ece8a4be38bbd8201cc24a01e73d0d0fe0b0ee08cadb4e68a488657368540f789de30d7e9a29edf656c3ecfe740e75b7fa24497365d294d10191db9cf42c5e560566287f77cad94a7052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 4999999000, + "btc_fee": 0, + "rawtransaction": "02000000000101ef5f3b7ca0303c659b05ac30a1f7554218a143bf940a04fe1f05bbb6b8f3aee1000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff03e803000000000000160014bcbf9a22a972f1f7f3e2246001e97f4d482de92d00000000000000004b6a49107be2b589efc51cbc56c65ed2f954affebfce30546682c8cf1037d0769989e796bd5345f32e47b23ee220c6afb96d85bdb0f27866559e50f1fb6cb97240980b4029983c7145893f0018ee052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655", - "tx1_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", - "order_match_id": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655_fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx0_hash": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b", + "tx1_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", + "order_match_id": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b_0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "status": "valid" } } @@ -8628,7 +8628,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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address with the BTC to burn + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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` @@ -8644,7 +8644,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -8689,7 +8689,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "quantity": 1000, "overburn": false, "skip_validation": false @@ -8698,9 +8698,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": 4999985813, - "btc_fee": 13187, - "rawtransaction": "02000000000101ab6040b76c83b4cf2f4d56af2a2cee15a0ab8076f24f6007e49f4c03862af38d00000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac95ba052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000" + "btc_change": 4999999000, + "btc_fee": 0, + "rawtransaction": "02000000000101b7d763184bd0d5bd0381d08885b1f8567df57779d9b30e40ab8e6d2a8869c41e000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac18ee052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000" } } ``` @@ -8710,8 +8710,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: `bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e` (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) @@ -8724,7 +8724,7 @@ Composes a transaction to cancel an open order or bet. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -8769,22 +8769,22 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "offer_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "offer_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "data": "434e545250525459460437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "btc_in": 90000, "btc_out": 0, - "btc_change": 75817, - "btc_fee": 14183, - "rawtransaction": "0200000000010111946be08247e2d3fa565780b5397f60b2ce4478f7068a17ad31da637accd3fa01000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c21ffffffff0200000000000000002b6a29e104f299b807b6ddf2e65d140b2924eca6033789b658268363632eaabb5e52f7ebea7177e01e68c7d22928010000000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c2102000000000000", + "btc_change": 90000, + "btc_fee": 0, + "rawtransaction": "020000000001015e173379133d5e5f9e374b3582d332ba96589aa399bba3420a13a4133589370401000000160014487c7e696463e9771c5f5ff6b6fef04c141fad69ffffffff0200000000000000002b6a298718e72ac774d60aae8159af76f9400653d5a3a2685a4c7330a568e9c2e151a4c7102155aafc0b2982905f010000000000160014487c7e696463e9771c5f5ff6b6fef04c141fad6902000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "offer_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "status": "valid" } } @@ -8797,7 +8797,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -8813,7 +8813,7 @@ Composes a transaction to destroy a quantity of an asset. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -8858,7 +8858,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8876,9 +8876,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986344, - "btc_fee": 13656, - "rawtransaction": "02000000000101d584668551844a6942c1e86fd2ae736eac271a9aa24ca0d824ebc4c790e4017900000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000226a20856a6f06693dfb95f545e7359db6b56436e91aa312191082b02c2d559e4a36ada8bc052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "0200000000010178174a9be1c81793228c7b687231adbadf2823a66886740ef25e4702fbab1678000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000226a2052c54132db3e4dc884972be92170f71bc25f1f6be1299c77724db4777d374c2300f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8898,7 +8898,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: `bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf` (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) @@ -8920,7 +8920,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -8965,7 +8965,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8988,9 +8988,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": 4949859557, - "btc_fee": 14242, - "rawtransaction": "020000000001018f3063b08bb5954786450621fa49ff269cf3872659e815cbd890adf94149d47e0200000016001434fffcadf3880bfcaa3dfe48aaac56a887cd2cd2ffffffff0200000000000000002c6a2afba660de8342a8499bced7b205aa4a1c11b60ce295fd1e69fc20b9df49864d4d2e8fc7cb12dacb7f2f88e5dc08270100000016001434fffcadf3880bfcaa3dfe48aaac56a887cd2cd202000000000000", + "btc_change": 4949873799, + "btc_fee": 0, + "rawtransaction": "0200000000010104666fccae7539350ae8603f0058631ae76142e951a39ac436f3371996f3b691020000001600149ec39310f6fb4d103d6ed0f18885b18e2ec1d083ffffffff0200000000000000002c6a2ad8013a3159797a6e0bb9b17202c1ba998537e75265d6eb03c39ec4c456a296935a87acbdd0b1b8429a0d87140927010000001600149ec39310f6fb4d103d6ed0f18885b18e2ec1d08302000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -9016,7 +9016,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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (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: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -9032,7 +9032,7 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -9077,7 +9077,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -9085,7 +9085,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": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -9102,9 +9102,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000182b37176e0000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986286, - "btc_fee": 13714, - "rawtransaction": "020000000001014d81d34c45f2b678b4b4ea74eb5657a4e7804ac4303eeacf2df3fab5e036ecee00000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000236a21da9c5217c1cdcd8ea3d965570f5ff196363729b4c0b5fe96a16f16226674904a916ebc052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "020000000001011ba424ab536378337828e54ae765106060f3b423ae260847d615decf1a8ba0e1000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000236a21e583b07d68582db4b0856f5bbfac41791d2b54e0f77978d13a9cb14d85996a0ef200f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9125,10 +9125,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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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` @@ -9150,7 +9150,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -9195,10 +9195,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "transfer_destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "lock": false, "reset": false, @@ -9210,9 +9210,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": 4999983747, - "btc_fee": 15707, - "rawtransaction": "02000000000101d598dbfd42c3a20d981841e41ccfdeb733965952c7872f56007ff110e83f813800000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff032202000000000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee0000000000000000236a216dddb3395e2788ec9c67fadaa8f98578252449e049be674691b7399a70574fbf8483b2052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 4999999454, + "btc_fee": 0, + "rawtransaction": "02000000000101cb8a92c262833056554ba5c62d541dd534193c58ceac6131511fbadb5327bdae000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff0322020000000000001600142ba632990d67f3cca92daf90e7f2adc092769a6d0000000000000000236a21e1e00cb022fd6376e109708c21b9bbaeb007455cff1bea64ca17ebf0ff8af9f8a8deef052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9241,9 +9241,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: `bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3,bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj,bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (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` @@ -9265,7 +9265,7 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -9310,16 +9310,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", 1 ], [ "FAIRMINTC", - "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", 2 ] ], @@ -9328,26 +9328,26 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280aa72a4cae5765676f61961f3e7ff2d08f9ae88ee80d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a4000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002802ba632990d67f3cca92daf90e7f2adc092769a6d80ea59ba6407b6ca374703351c81d67a8077d7ae1e4000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 4949785311, - "btc_fee": 20689, - "rawtransaction": "02000000000101e98fa463e9abeb7cc57b7a25f0cb54183810c843f11e8aa48afd86f2ed23477f03000000160014d5b731ccdbdcb6e8c844ab176fe5d98cda3a546affffffff03e803000000000000695121032e99d3652a69c69d5b96f1db8dcbe8f8975da5d4c3bbcee8b944df28cdb6ed672103bc11c0bc7d5e79bd83800d523e52328fd9b02932c0fa779caff0d7dba509b62c210345cdb686a94ab9ae64acc4942c24edcd4bb00ec2b25c348d7aa0e91072ecbcf753aee803000000000000695121033199d3652a69c69d5b85f1d90d619a5c5d9cd382b54dd7894aa72005c54f43f8210334ff4169ca6fb5665f36e59a7af925e03c69a5e8faae1ddcaff0eb351a8d0f4d210345cdb686a94ab9ae64acc4942c24edcd4bb00ec2b25c348d7aa0e91072ecbcf753aedfba072701000000160014d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a02000000000000", + "btc_change": 4949806000, + "btc_fee": 0, + "rawtransaction": "02000000000101285102d98f813087376a795b071a117ae3eaa3a1069ea2a82982b915dfdcb4bf03000000160014ea59ba6407b6ca374703351c81d67a8077d7ae1effffffff03e80300000000000069512103aaccdcfccbfa84645847b4c2103162525de0d0a21ffe1c494163e5ed073183962102a0d8f279711a96ec74bd05b2907c06cc8a6e2cedff2c02a13722a931769b01e0210365d453c37a79d5e00ddcec59562e8eff09504cfc7ff23f9e898a533669433ad953aee80300000000000069512103b5ccdcfccbfa84645854b4c0901ac460c4c9b751d35731e6d1801740c7a3f54821033ab5739328a0f2ebc27732f593491a4d5c14ac9a28821ce1372295dfc91fb827210365d453c37a79d5e00ddcec59562e8eff09504cfc7ff23f9e898a533669433ad953aeb00b082701000000160014ea59ba6407b6ca374703351c81d67a8077d7ae1e02000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FAIRMINTC", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9363,7 +9363,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -9382,7 +9382,7 @@ Composes a transaction to place an order on the distributed exchange. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -9427,7 +9427,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -9445,7 +9445,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -9457,9 +9457,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e800000000014572d500000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985231, - "btc_fee": 14769, - "rawtransaction": "02000000000101574ff41abcaee2d8651614d54f8223aa4cb4a6d6360da7d9730ece9a96b59e7800000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000356a335494948d88327b7e6961f16e3d74dce10617e053f2a9778561ada81f3688ac9fb601ccaa538feb268d2d1d5536b63fb5e315874fb8052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "020000000001017f1b2a7ca7fc0ee2642f9951e277cfb2efa0e770e336b422faa680f899c65adf000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000356a334640bfe3fef597f9923117619d21a68a89c37e8d3d6af8939de22118c5c9798f3f05d8d1fa377de000daf922e493d9b410554d00f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9485,8 +9485,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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - The address that will be receiving the asset + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (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 @@ -9507,7 +9507,7 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -9552,8 +9552,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9570,19 +9570,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a", + "data": "434e54525052545902000000000000000100000000000003e880ea59ba6407b6ca374703351c81d67a8077d7ae1e", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985524, - "btc_fee": 14476, - "rawtransaction": "02000000000101f96b64b0e484d132b2bb0edcfedb9ec451144bc733ce16da8f5ea6bcb8041bbe00000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000306a2e0efc970f7634cc0927a9167f74983ed20dcf5094366ec7cf45420ecc3a3acdf16c2df16a253b3066aaab68c79d0f74b9052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "020000000001017f386b486e5fb02b7a69d1879d646fac8a3c9011289da06edb2e5809e4073aae000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000306a2ee255510fe85620f0e95192b3dc80e0751862e3b2137136646e6f8af4b1edddccc444dcdeeede8b439d30d859759700f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "memo": null, "quantity_normalized": "0.00001000" } @@ -9596,8 +9596,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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address that will be sending - + destination: `bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address that will be sending + + destination: `bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (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 @@ -9612,7 +9612,7 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -9657,24 +9657,24 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a07ffff", + "data": "434e5452505254590480ea59ba6407b6ca374703351c81d67a8077d7ae1e07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986286, - "btc_fee": 13714, - "rawtransaction": "02000000000101941b3fdcc12fa2911eee3a16ebaafa514925194cf2e378a83b93985994af817500000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000236a217e58acd8c5761398fc666e2b075860867ff66e49d4e8cc60a98a87e0b5a6c486636ebc052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "0200000000010135e00efa0f2e74c4cb932d2b3fc34d876e79a92706dae6fa2cd7b2ce12b26cc6000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000236a214a35bd7339fa7485c50160790936117ee66844eda23683cd7ea789dfe73bf4631300f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "flags": 7, "memo": "ffff" } @@ -9688,8 +9688,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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f` (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` @@ -9703,7 +9703,7 @@ Composes a transaction to send BTC to a dispenser. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -9748,8 +9748,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "quantity": 1000, "skip_validation": false }, @@ -9757,9 +9757,9 @@ Composes a transaction to send BTC to a dispenser. "data": "434e5452505254590d00", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999984641, - "btc_fee": 14359, - "rawtransaction": "02000000000101a67fbe5cd9731d50fd5894c670ef4e0bb9bf022f014d694fc46a6467af9dae1100000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff03e803000000000000160014ec826d3210138c96dc02a5e87e4f229aab192f5600000000000000000c6a0a02c2ef180846d06992d801b6052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 4999999000, + "btc_fee": 0, + "rawtransaction": "020000000001017d9c78270cb6696ac192f19cee9432d32593dec1f282330a149bfb3fd8effc5e000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff03e803000000000000160014c10af52b568889df3b2f913585bbaf3331a6626200000000000000000c6a0a0c4c782b454700e4213b18ee052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9776,7 +9776,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address that will be issuing the asset + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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: `` @@ -9822,7 +9822,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -9867,7 +9867,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9897,9 +9897,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985465, - "btc_fee": 14535, - "rawtransaction": "02000000000101490c3d34bcc1470bdb0e3652602d3fb9614f7c8e76f1b3facf27b035b5b4128500000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000316a2f8c8f6fb14a2db478883e56c5f74693ee0b3a0c1103acdb5625ebaca0656b3f51bed134c9139468b759caad71a89ccb39b9052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "02000000000101942722be1990e6a848b97b58e5e6085817018958cc4c18478dbf2a58910093d6000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000316a2f457a7f8e0d4cc008f43c6754dccfd58d583df2ec1b57bcc3336d48a0a37b6ef617bc62edbec6785d750ff45097ac4a00f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9938,7 +9938,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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address that will be minting the asset + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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` @@ -9954,7 +9954,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -9999,14 +9999,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "divisible": true, "locked": false }, @@ -10016,9 +10016,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": 4999987106, - "btc_fee": 12894, - "rawtransaction": "02000000000101b1e1e2b3f702a6e11f91e2f79c7e6a42bc0be732b5540818b5087a05ff99742c00000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000156a13c5651ecc3e0566dcd8d555f5c8e1f929a99583a2bf052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "0200000000010124a627408d73f8f80c36abc7e6b644cc21577b1e958744648b5dee099454df23000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000156a13191f06612718faf60bdcd3a62fbe8717363bd200f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10037,7 +10037,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: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address from which the assets are attached + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 @@ -10056,7 +10056,7 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -10101,7 +10101,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -10119,9 +10119,9 @@ Composes a transaction to attach assets from an address to UTXO. "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984626, - "btc_fee": 14828, - "rawtransaction": "02000000000101e16ff3e1a889263d63bf9d8d7483da84f13a66f7115c478a46cc4680902986ce00000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff032202000000000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee0000000000000000146a12f22706a68f924a57af2454976a1e663ee4f0f2b5052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 4999999454, + "btc_fee": 0, + "rawtransaction": "02000000000101d43a198a8d174655e8a9c9bca551465ad47c7acacb67ec2931b95ba0c6015824000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff0322020000000000001600142ba632990d67f3cca92daf90e7f2adc092769a6d0000000000000000146a12c75532ae6a76ecf789dac1ce3dec5d38e848deef052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -10141,8 +10141,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: `7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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 871900] The asset or subasset to detach + Default: `None` @@ -10160,7 +10160,7 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `None` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs + Default: `False` - + 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 + + exact_fee: `0` (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` @@ -10205,22 +10205,22 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "skip_validation": false }, "name": "detach", - "data": "434e5452505254596662637274317134666532666a6839776574386461736576386537306c656470727536617a387766716c776133", - "btc_in": 4949951000, + "data": "434e5452505254596662637274317139776e7239786764766c6575653266643437677730753464637a663864786e6472373439686a", + "btc_in": 1000, "btc_out": 0, - "btc_change": 4949925505, - "btc_fee": 25495, - "rawtransaction": "020000000001028f3063b08bb5954786450621fa49ff269cf3872659e815cbd890adf94149d47e00000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c21ffffffff27ba40ae95ca14d91e82369b250b0f87255747348825567e392f4ea7c463a7a801000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c21ffffffff020000000000000000376a35fba660de8342a849f1acb4c0719b3b2876d33e84ff95271d715481bb28f52838feeaf0fb7ebfaf0f39fdc3a7a8015e060479cf379d81de092701000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c2102000002000000000000", + "btc_change": 1000, + "btc_fee": 0, + "rawtransaction": "0200000000010104666fccae7539350ae8603f0058631ae76142e951a39ac436f3371996f3b69100000000160014487c7e696463e9771c5f5ff6b6fef04c141fad69ffffffff020000000000000000376a35d8013a3159797a6e61dbd20076f0cba0f359956b1db18f7647fbb1a164c4f2a485e0db8da585dc21846bff7f1265dfd49068e02006e803000000000000160014487c7e696463e9771c5f5ff6b6fef04c141fad6902000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3" + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj" } } } @@ -10232,8 +10232,8 @@ Composes a transaction to detach assets from UTXO to an address. 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 + + utxo: `91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0` (str, required) - The utxo from which the assets are moved + + destination: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (str, required) - The address to move 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) @@ -10246,7 +10246,7 @@ Composes a transaction to move assets from UTXO to another UTXO. + 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 + + exact_fee: `0` (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` @@ -10285,6 +10285,27 @@ Composes a transaction to move assets from UTXO to another UTXO. + show_unconfirmed (bool, optional) - Include results from Mempool. + Default: `false` ++ Response 200 (application/json) + + ``` + { + "result": { + "params": { + "source": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "skip_validation": false + }, + "name": "move", + "data": null, + "btc_in": 4949951000, + "btc_out": 546, + "btc_change": 4949950454, + "btc_fee": 0, + "rawtransaction": "0200000000010204666fccae7539350ae8603f0058631ae76142e951a39ac436f3371996f3b69100000000160014487c7e696463e9771c5f5ff6b6fef04c141fad69ffffffff7ab85a5beb9761de8806312ef8ac61db775ec2740cf4f81176d2fb931792a47f01000000160014487c7e696463e9771c5f5ff6b6fef04c141fad69ffffffff0222020000000000001600142ba632990d67f3cca92daf90e7f2adc092769a6df63f0a2701000000160014487c7e696463e9771c5f5ff6b6fef04c141fad6902000002000000000000" + } + } + ``` + ### Get Attach Estimate Xcp Fee [GET /v2/compose/attach/estimatexcpfees{?verbose}{&show_unconfirmed}] Returns the estimated fee for attaching assets to a UTXO. @@ -10324,8 +10345,8 @@ Returns the valid assets "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": null, - "issuer": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "owner": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "owner": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "divisible": true, "locked": false, "supply": 0, @@ -10333,16 +10354,16 @@ Returns the valid assets "first_issuance_block_index": 232, "last_issuance_block_index": 232, "confirmed": true, - "first_issuance_block_time": 1731759883, - "last_issuance_block_time": 1731759883, + "first_issuance_block_time": 1732471727, + "last_issuance_block_time": 1732471727, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": null, - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "owner": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "owner": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": false, "supply": 0, @@ -10350,16 +10371,16 @@ Returns the valid assets "first_issuance_block_index": 227, "last_issuance_block_index": 229, "confirmed": true, - "first_issuance_block_time": 1731759852, - "last_issuance_block_time": 1731759861, + "first_issuance_block_time": 1732471710, + "last_issuance_block_time": 1732471718, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": null, - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "owner": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "owner": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": false, "supply": 0, @@ -10367,16 +10388,16 @@ Returns the valid assets "first_issuance_block_index": 225, "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731759845, - "last_issuance_block_time": 1731759849, + "first_issuance_block_time": 1732471704, + "last_issuance_block_time": 1732471707, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": null, - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "owner": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "owner": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": false, "supply": 0, @@ -10384,16 +10405,16 @@ Returns the valid assets "first_issuance_block_index": 222, "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731759834, - "last_issuance_block_time": 1731759838, + "first_issuance_block_time": 1732471694, + "last_issuance_block_time": 1732471697, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "owner": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "owner": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true, "supply": 100000000, @@ -10401,8 +10422,8 @@ Returns the valid assets "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731759825, - "last_issuance_block_time": 1731759830, + "first_issuance_block_time": 1732471685, + "last_issuance_block_time": 1732471689, "supply_normalized": "1.00000000" } ], @@ -10430,8 +10451,8 @@ Returns an asset by its name "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "owner": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "owner": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true, "supply": 100000000, @@ -10439,8 +10460,8 @@ Returns an asset by its name "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731759825, - "last_issuance_block_time": 1731759830, + "first_issuance_block_time": 1732471685, + "last_issuance_block_time": 1732471689, "supply_normalized": "1.00000000" } } @@ -10477,7 +10498,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -10485,14 +10506,14 @@ Returns the asset balances "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -10500,7 +10521,7 @@ Returns the asset balances "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -10518,7 +10539,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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. @@ -10530,7 +10551,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -10584,9 +10605,9 @@ Returns the orders of an asset "result": [ { "tx_index": 53, - "tx_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", + "tx_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", "block_index": 179, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10603,7 +10624,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759522, + "block_time": 1732471386, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10631,9 +10652,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", + "tx_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10650,7 +10671,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10678,9 +10699,9 @@ Returns the orders of an asset }, { "tx_index": 62, - "tx_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "tx_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "block_index": 188, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10697,7 +10718,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759628, + "block_time": 1732471504, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10725,9 +10746,9 @@ Returns the orders of an asset }, { "tx_index": 64, - "tx_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", + "tx_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", "block_index": 211, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10744,7 +10765,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759770, + "block_time": 1732471617, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10772,9 +10793,9 @@ Returns the orders of an asset }, { "tx_index": 56, - "tx_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "tx_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "block_index": 182, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10791,7 +10812,7 @@ Returns the orders of an asset "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759596, + "block_time": 1732471470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10855,13 +10876,13 @@ Returns the orders of an asset { "result": [ { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10875,7 +10896,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759720, + "block_time": 1732471580, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10895,13 +10916,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 56, - "tx1_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10915,7 +10936,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731759596, + "block_time": 1732471470, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10935,13 +10956,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae_90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", + "id": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e_17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", "tx0_index": 53, - "tx0_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 54, - "tx1_hash": "90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10955,7 +10976,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759522, + "block_time": 1732471386, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10975,13 +10996,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 64, - "tx0_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10995,7 +11016,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759845, + "block_time": 1732471704, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11075,20 +11096,20 @@ Returns the credits of an asset "result": [ { "block_index": 221, - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "event": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -11096,20 +11117,20 @@ Returns the credits of an asset }, { "block_index": 221, - "address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "event": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -11169,12 +11190,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxo": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "utxo_address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "utxo": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "utxo_address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11186,16 +11207,16 @@ Returns the debits of an asset }, { "block_index": 232, - "address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "event": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "tx_index": 105, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759883, + "block_time": 1732471727, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11207,16 +11228,16 @@ Returns the debits of an asset }, { "block_index": 227, - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "event": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "tx_index": 101, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759852, + "block_time": 1732471710, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11228,16 +11249,16 @@ Returns the debits of an asset }, { "block_index": 225, - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "event": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759845, + "block_time": 1732471704, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11249,16 +11270,16 @@ Returns the debits of an asset }, { "block_index": 222, - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "df7e51926863f935200f59177a56f6fa34605a0ceb0de52ba6d799fdb91e6d31", + "event": "b81a565d34130e15c2ff2c558b4a67d1a86c6140baef33889756c74dea54131e", "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759834, + "block_time": 1732471694, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11338,14 +11359,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 97, - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -11360,20 +11381,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -11388,7 +11409,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731759825, + "block_time": 1732471685, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11422,10 +11443,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -11433,7 +11454,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11446,10 +11467,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 81, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11457,7 +11478,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11470,10 +11491,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 80, - "tx_hash": "7152c36262483c1a3158cc8ca6ca8015a48ef6d6dfe215c6baf96e2f78d72dd2", + "tx_hash": "46664a9cfa41329ff96717dd72018d4a25e4d514ab236215432ed0754049f268", "block_index": 204, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11481,7 +11502,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731759720, + "block_time": 1732471580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11494,10 +11515,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11505,7 +11526,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11518,10 +11539,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11529,7 +11550,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11580,9 +11601,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11591,7 +11612,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11602,7 +11623,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11619,9 +11640,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "ee92ab0d5921711ab5d6d0562cae2a143cb791eaa2e05368dd3c5b75db9b77f7", + "tx_hash": "9beb2e21666f7f700a792d384b93e23b5d4559b46983887853fe9aac0e38f608", "block_index": 133, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11630,7 +11651,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "origin": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11641,7 +11662,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759402, + "block_time": 1732471256, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11658,9 +11679,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "e5e46de14dd1329e0f58e8a2ab319efe39edfc6d3ea175e9dfb8da7338855b4a", + "tx_hash": "0ba333965785b16989dafa3480ab098ed20accd47e40ab581dde8584a63e1d93", "block_index": 141, - "source": "mfbnuE9fskyyrrdTpM9Pziwid653g8eeCM", + "source": "mq9WAYa6HLxVAZFUhydg7AkREqXvGibH6R", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11668,10 +11689,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a4372c290b4cdd850bee2652d2eb16ac88824b5de5b02571a0bea6b1d6035a01", - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "last_status_tx_hash": "97868bfb6c9e53a34539c22ade4180acd811a2906d7a6fadf91cf23ea628054f", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "last_status_tx_source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -11680,7 +11701,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759431, + "block_time": 1732471289, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11697,18 +11718,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11719,7 +11740,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11745,7 +11766,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - The address to return + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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` @@ -11758,9 +11779,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11769,7 +11790,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11780,7 +11801,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11824,7 +11845,7 @@ Returns the holders of an asset "result": [ { "asset": "BURNER", - "address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -11833,7 +11854,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -11841,7 +11862,7 @@ Returns the holders of an asset }, { "asset": "BURNER", - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -11850,7 +11871,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -11887,27 +11908,27 @@ Returns the dispenses of an asset { "tx_index": 106, "dispense_index": 0, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11922,7 +11943,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11936,27 +11957,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d6e16ad03594a5baccfab207bca33c7d172e3be26bec0a9d5e6551d3035707b7", + "tx_hash": "3d13c065ac8258d73b06cfc139ac71922110343a6d3f8fdde6ffa0a0568ab9cc", "block_index": 138, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11971,7 +11992,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731759419, + "block_time": 1732471276, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11985,19 +12006,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12005,7 +12026,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12020,7 +12041,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12034,19 +12055,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12054,7 +12075,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12069,7 +12090,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12143,10 +12164,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "tx_index": 96, "block_index": 221, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "BURNER", "asset_parent": null, "asset_longname": null, @@ -12171,7 +12192,7 @@ Returns the fairminter by its asset "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -12211,22 +12232,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "fairminter_tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "fairminter_tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -12245,7 +12266,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9` (str, required) - The address of the mints to return + + address: `bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa` (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` @@ -12307,9 +12328,9 @@ Returns all the orders "result": [ { "tx_index": 53, - "tx_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", + "tx_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", "block_index": 179, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12326,7 +12347,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759522, + "block_time": 1732471386, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12354,9 +12375,9 @@ Returns all the orders }, { "tx_index": 56, - "tx_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "tx_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "block_index": 182, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12373,7 +12394,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759596, + "block_time": 1732471470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12401,9 +12422,9 @@ Returns all the orders }, { "tx_index": 62, - "tx_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "tx_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "block_index": 188, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12420,7 +12441,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759628, + "block_time": 1732471504, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12448,9 +12469,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", + "tx_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12467,7 +12488,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12495,9 +12516,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "tx_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "block_index": 205, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12514,7 +12535,7 @@ Returns all the orders "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12551,7 +12572,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411` (str, required) - The hash of the transaction that created the order + + order_hash: `0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e` (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. @@ -12563,9 +12584,9 @@ Returns the information of an order { "result": { "tx_index": 104, - "tx_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "block_index": 231, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -12582,7 +12603,7 @@ Returns the information of an order "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759869, + "block_time": 1732471724, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12593,7 +12614,7 @@ Returns the information of an order "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, @@ -12616,7 +12637,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655` (str, required) - The hash of the transaction that created the order + + order_hash: `d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b` (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 @@ -12643,13 +12664,13 @@ Returns the order matches of an order { "result": [ { - "id": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655_fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "id": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b_0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "tx0_index": 103, - "tx0_hash": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655", - "tx0_address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "tx0_hash": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b", + "tx0_address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "tx1_index": 104, - "tx1_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", - "tx1_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "tx1_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", + "tx1_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12663,11 +12684,11 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731759869, + "block_time": 1732471724, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, @@ -12693,7 +12714,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd` (str, required) - The hash of the transaction that created the order + + order_hash: `3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96` (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 @@ -12712,15 +12733,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 57, - "tx_hash": "a4e7702b0e7e9908e7a2d0b9ea40713df733dbc8760b7b68c90dc18d36d626d8", + "tx_hash": "df9193811d12bb9878abc31b8da60d0df89a69f3cfd443d00642db334bf6ff4f", "block_index": 182, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "btc_amount": 2000, - "order_match_id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "order_match_id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "status": "valid", "confirmed": true, - "block_time": 1731759596, + "block_time": 1732471470, "btc_amount_normalized": "0.00002000" } ], @@ -12764,9 +12785,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 56, - "tx_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "tx_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "block_index": 182, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12784,7 +12805,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731759596, + "block_time": 1732471470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12810,9 +12831,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "tx_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "block_index": 205, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -12830,7 +12851,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731759725, + "block_time": 1732471584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12856,9 +12877,9 @@ Returns the orders to exchange two assets }, { "tx_index": 53, - "tx_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", + "tx_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", "block_index": 179, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12876,7 +12897,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759522, + "block_time": 1732471386, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12902,9 +12923,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", + "tx_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12922,7 +12943,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759712, + "block_time": 1732471562, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12948,9 +12969,9 @@ Returns the orders to exchange two assets }, { "tx_index": 62, - "tx_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "tx_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "block_index": 188, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12968,7 +12989,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759628, + "block_time": 1732471504, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13031,13 +13052,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13054,7 +13075,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759720, + "block_time": 1732471580, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13074,13 +13095,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 56, - "tx1_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13097,7 +13118,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759596, + "block_time": 1732471470, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13117,13 +13138,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae_90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", + "id": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e_17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", "tx0_index": 53, - "tx0_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 54, - "tx1_hash": "90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13140,7 +13161,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759522, + "block_time": 1732471386, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13160,13 +13181,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 64, - "tx0_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13183,7 +13204,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759845, + "block_time": 1732471704, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13241,13 +13262,13 @@ Returns all the order matches { "result": [ { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13261,7 +13282,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759720, + "block_time": 1732471580, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13281,13 +13302,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 56, - "tx1_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13301,7 +13322,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731759596, + "block_time": 1732471470, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13321,13 +13342,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae_90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", + "id": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e_17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", "tx0_index": 53, - "tx0_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 54, - "tx1_hash": "90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13341,7 +13362,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759522, + "block_time": 1732471386, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13361,13 +13382,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 64, - "tx0_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13381,7 +13402,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759845, + "block_time": 1732471704, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13401,13 +13422,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655_fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "id": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b_0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "tx0_index": 103, - "tx0_hash": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655", - "tx0_address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "tx0_hash": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b", + "tx0_address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "tx1_index": 104, - "tx1_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", - "tx1_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "tx1_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", + "tx1_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13421,11 +13442,11 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731759869, + "block_time": 1732471724, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, @@ -13589,66 +13610,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "d80fd169ececc1a269897d8b2c109e20e6eda4dcf6187254ebe98270ec1a06d5", + "tx_hash": "722cbca318a965851ea1c8f33db264f2d79550c4dc26a538b1c40b391d33cdd8", "block_index": 112, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 8, - "tx_hash": "9e2fd85327a452b32e7d3798e2eaf9b0b724a80d9c3a9cd89f6c28b792a265d4", + "tx_hash": "1d356c6fde6ecd35883e835f7bd8ab72d0949ea26353caa0a506c919106b7ba2", "block_index": 112, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 7, - "tx_hash": "356e9b90e4a87166cfb99fdae6b8d49c6b3c28d7555afbe71cf50951dda19ad2", + "tx_hash": "c9da6614203538da1f75917ebb1699756e5334df9b761f0f08377853a948fd89", "block_index": 112, - "source": "bcrt1qcafgsw0swjvlkpcryph7lakegzqqs56zpnjqmw", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 6, - "tx_hash": "5430898b9307908a2fde4be7bf8f36d7379489c34ee1e495a9ff5a5d76788ec7", + "tx_hash": "bc4750d9221375dc94726ab9c7f36670ab659e7595bd6cda2942082015118a7d", "block_index": 112, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 5, - "tx_hash": "ceb7ec24a9bbacfd78a5b855640c6a68842e095bf11359ffdcb43dcbc6346db2", + "tx_hash": "26de14d72e12005d79504389abd8eff300693a4941ea5460bd20a707861c6a74", "block_index": 112, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -13693,9 +13714,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13704,7 +13725,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13715,7 +13736,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13732,9 +13753,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "ee92ab0d5921711ab5d6d0562cae2a143cb791eaa2e05368dd3c5b75db9b77f7", + "tx_hash": "9beb2e21666f7f700a792d384b93e23b5d4559b46983887853fe9aac0e38f608", "block_index": 133, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13743,7 +13764,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "origin": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13754,7 +13775,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759402, + "block_time": 1732471256, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13771,9 +13792,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "e5e46de14dd1329e0f58e8a2ab319efe39edfc6d3ea175e9dfb8da7338855b4a", + "tx_hash": "0ba333965785b16989dafa3480ab098ed20accd47e40ab581dde8584a63e1d93", "block_index": 141, - "source": "mfbnuE9fskyyrrdTpM9Pziwid653g8eeCM", + "source": "mq9WAYa6HLxVAZFUhydg7AkREqXvGibH6R", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13781,10 +13802,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a4372c290b4cdd850bee2652d2eb16ac88824b5de5b02571a0bea6b1d6035a01", - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "last_status_tx_hash": "97868bfb6c9e53a34539c22ade4180acd811a2906d7a6fadf91cf23ea628054f", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "last_status_tx_source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -13793,7 +13814,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759431, + "block_time": 1732471289, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13810,9 +13831,9 @@ Returns all dispensers }, { "tx_index": 68, - "tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13821,7 +13842,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13832,11 +13853,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759660, + "block_time": 1732471527, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -13849,18 +13870,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13871,7 +13892,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13897,7 +13918,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7` (str, required) - The hash of the dispenser to return + + dispenser_hash: `4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5` (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. @@ -13909,9 +13930,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13920,7 +13941,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13931,7 +13952,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13954,7 +13975,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7` (str, required) - The hash of the dispenser to return + + dispenser_hash: `4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5` (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 @@ -13974,19 +13995,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13994,7 +14015,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14009,7 +14030,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14023,19 +14044,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14043,7 +14064,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14058,7 +14079,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14100,20 +14121,20 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "tx_hash": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "block_index": 146, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731759450, + "block_time": 1732471310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -14138,7 +14159,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6` (str, required) - The hash of the dividend to return + + dividend_hash: `1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453` (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. @@ -14150,20 +14171,20 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "tx_hash": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "block_index": 146, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731759450, + "block_time": 1732471310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -14185,7 +14206,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453` (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 @@ -14208,12 +14229,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "event": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "tx_index": 42, - "utxo": "03740218f3b2ea810c7a4de4417acf87c0c89d1d300c0ef6ac2328b39bd67c59:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "utxo": "7d63554fb4e3aab575939f3d814e6294a81261caf5cfc79939fa1bb3e9cc9ae9:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "confirmed": true, - "block_time": 1731759450, + "block_time": 1732471310, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14259,27 +14280,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 233, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "block_time": 1731759892 + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "block_time": 1732471742 }, "tx_hash": null, "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106 }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 911, @@ -14288,14 +14309,14 @@ Returns all events "asset": "XCP", "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14306,9 +14327,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 910, @@ -14317,9 +14338,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": 0, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14329,24 +14350,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14356,9 +14377,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 908, @@ -14386,15 +14407,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 233, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "block_time": 1731759892 + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "block_time": 1732471742 }, "tx_hash": null, "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } } ``` @@ -14472,16 +14493,16 @@ Returns the events filtered by event name "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14491,9 +14512,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 907, @@ -14503,12 +14524,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14518,9 +14539,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 904, @@ -14530,24 +14551,24 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 862, @@ -14557,39 +14578,39 @@ Returns the events filtered by event name "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "event": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1731759852, + "block_time": 1732471710, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "block_index": 227, - "block_time": 1731759852 + "block_time": 1732471710 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "event": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731759845, + "block_time": 1732471704, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14599,9 +14620,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "block_index": 225, - "block_time": 1731759845 + "block_time": 1732471704 } ], "next_cursor": 819, @@ -14657,27 +14678,27 @@ Returns all the dispenses { "tx_index": 106, "dispense_index": 0, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14692,7 +14713,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14706,19 +14727,19 @@ Returns all the dispenses { "tx_index": 69, "dispense_index": 0, - "tx_hash": "132594491317fb1e7506ad9b3527f2a09926ebbaf19e0f22c0c1ceeca3c13dff", + "tx_hash": "25becfab15793702ef29f3451e9bc99d13afe0a5e4ad41229360c8112c39b204", "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "dispenser_tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14726,7 +14747,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14741,11 +14762,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759660, + "block_time": 1732471527, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -14755,27 +14776,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d6e16ad03594a5baccfab207bca33c7d172e3be26bec0a9d5e6551d3035707b7", + "tx_hash": "3d13c065ac8258d73b06cfc139ac71922110343a6d3f8fdde6ffa0a0568ab9cc", "block_index": 138, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14790,7 +14811,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731759419, + "block_time": 1732471276, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14804,19 +14825,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14824,7 +14845,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14839,7 +14860,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14853,19 +14874,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14873,7 +14894,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14888,7 +14909,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14930,10 +14951,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -14941,7 +14962,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14954,10 +14975,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -14965,11 +14986,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -14978,10 +14999,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14989,7 +15010,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15002,10 +15023,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15013,11 +15034,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -15026,10 +15047,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15037,11 +15058,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -15092,14 +15113,14 @@ Returns all the issuances "result": [ { "tx_index": 105, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "issuer": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "transfer": false, "callable": false, "call_date": 0, @@ -15114,20 +15135,20 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731759883, + "block_time": 1732471727, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 102, - "tx_hash": "127ab246daca375dbe5a73b1b0c249805dc1d43607fe50db00eb8e2697b7f16d", + "tx_hash": "c12cbcc15ac08a9dbd21a3338455e0d4a0e7e7e899dcd6cd9932be0d349dfb16", "msg_index": 0, "block_index": 229, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -15142,20 +15163,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "change_description", "confirmed": true, - "block_time": 1731759861, + "block_time": 1732471718, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -15170,20 +15191,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731759857, + "block_time": 1732471714, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -15198,20 +15219,20 @@ Returns all the issuances "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731759852, + "block_time": 1732471710, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -15226,7 +15247,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731759849, + "block_time": 1732471707, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15241,7 +15262,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27` (str, required) - The hash of the transaction to return + + tx_hash: `7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a` (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. @@ -15253,14 +15274,14 @@ Returns the issuances of a block { "result": { "tx_index": 105, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "issuer": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "transfer": false, "callable": false, "call_date": 0, @@ -15275,7 +15296,7 @@ Returns the issuances of a block "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731759883, + "block_time": 1732471727, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -15307,16 +15328,16 @@ Returns all sweeps "result": [ { "tx_index": 65, - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "block_index": 190, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731759636, + "block_time": 1732471513, "fee_paid_normalized": "0.00600000" } ], @@ -15330,7 +15351,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9` (str, required) - The hash of the transaction to return + + tx_hash: `6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba` (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. @@ -15343,16 +15364,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 65, - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "block_index": 190, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731759636, + "block_time": 1732471513, "fee_paid_normalized": "0.00600000" } ], @@ -15386,9 +15407,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "cdf07448dc24f093a5cdcd94d4ad848a03dcbef80993b0bdb2827eff3187cc44", + "tx_hash": "78ecf23865e70f4a5a49ac9bba675dab6750ffbcc06338d609b381a44d17ad5d", "block_index": 129, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15396,14 +15417,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731759386, + "block_time": 1732471238, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "8430ab16e38654e66a0dabd5f795ab64d8fad97f4f1acfdfa087b1d886ef3890", + "tx_hash": "4a8b2966e99df9a216be644fb270e01e52b54346404238870f42123cf0875ce3", "block_index": 128, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15411,7 +15432,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731759383, + "block_time": 1732471234, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15425,7 +15446,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `cdf07448dc24f093a5cdcd94d4ad848a03dcbef80993b0bdb2827eff3187cc44` (str, required) - The hash of the transaction to return + + tx_hash: `78ecf23865e70f4a5a49ac9bba675dab6750ffbcc06338d609b381a44d17ad5d` (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. @@ -15437,9 +15458,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "cdf07448dc24f093a5cdcd94d4ad848a03dcbef80993b0bdb2827eff3187cc44", + "tx_hash": "78ecf23865e70f4a5a49ac9bba675dab6750ffbcc06338d609b381a44d17ad5d", "block_index": 129, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15447,7 +15468,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731759386, + "block_time": 1732471238, "fee_fraction_int_normalized": "0.00000000" } } @@ -15484,10 +15505,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "tx_index": 105, "block_index": 232, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -15512,7 +15533,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759883, + "block_time": 1732471727, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15521,10 +15542,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "tx_index": 101, "block_index": 228, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "PREMINT", "asset_parent": null, "asset_longname": null, @@ -15549,7 +15570,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759857, + "block_time": 1732471714, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -15558,10 +15579,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "tx_index": 100, "block_index": 226, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "STARTNOW", "asset_parent": null, "asset_longname": null, @@ -15586,7 +15607,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759849, + "block_time": 1732471707, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -15595,10 +15616,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "332d2005e844e1bb7ac90168c00bed3e5bb5abdcb9790da5c4a434351e670e4c", + "tx_hash": "5e84caa85743ad3220e5d74b0913d492353fe43ccd64f8afc1c692d54a2cd8ec", "tx_index": 99, "block_index": 224, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": null, "asset_parent": null, "asset_longname": null, @@ -15623,13 +15644,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759842 + "block_time": 1732471700 }, { - "tx_hash": "df7e51926863f935200f59177a56f6fa34605a0ceb0de52ba6d799fdb91e6d31", + "tx_hash": "b81a565d34130e15c2ff2c558b4a67d1a86c6140baef33889756c74dea54131e", "tx_index": 98, "block_index": 223, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "EXPANSIVE", "asset_parent": null, "asset_longname": null, @@ -15654,7 +15675,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759838, + "block_time": 1732471697, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15720,22 +15741,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "fairminter_tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "fairminter_tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -15744,22 +15765,22 @@ Returns all fairmints "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "aa8689ffeae543a7440d01dd7648ede22cc0360a156ac3db7b49c8352216335a", + "tx_hash": "e49542851f72ff6bce45165971be045878d5dcce53049d21356862407f94f637", "tx_index": 95, "block_index": 219, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "fairminter_tx_hash": "d079aa10f033480888690b6f982f1c32c1b5bfe2f9414447d93e5fc0e0408398", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "fairminter_tx_hash": "e174017ac538e43065503bcbeb09f512404e8e6ddc868481cdb1ffdf828c8f07", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731759821, + "block_time": 1732471681, "asset_info": { "asset_longname": null, "description": "My super asset LOCKDESC", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -15768,22 +15789,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "ee4b833c7321101530a7931a9fe59d1920ba85bd41cf25c3ea719bf6c72f3c9a", + "tx_hash": "86f2efe3219d2c607359e5f4678ef13fb7a1385bce5e72c3e5e2e2093787eafc", "tx_index": 91, "block_index": 215, - "source": "bcrt1qqqs0annxtvtvpp7cmqt7mahmzxjfc0h689jguv", - "fairminter_tx_hash": "ec11d6dfbf9707efd14119d959ed5429c1e9d4e60852d6b8ddb031eda3148090", + "source": "bcrt1qk838gweltd7zurllg34r64jmky48yayd0lqxws", + "fairminter_tx_hash": "8e1236071b9fd13386359a8f2867a45a1b21a8f1fc5b43f53710077eb4d9e881", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759796, + "block_time": 1732471655, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qqqs0annxtvtvpp7cmqt7mahmzxjfc0h689jguv", + "issuer": "bcrt1qk838gweltd7zurllg34r64jmky48yayd0lqxws", "divisible": true, "locked": false }, @@ -15792,22 +15813,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "d8251537ada7cac543c912d4fba6a7a834092803321eabfa848bb0f089f787f1", + "tx_hash": "660976e4b7c607bffd972e3a48292ad06f2372cbf1be035e716bb697746dc064", "tx_index": 46, "block_index": 150, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "22e15bb976dafae6b5d6550963b709441d90a36b705dd7d122c0d6e74aca9ee1", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "990ca2dd84bda5e1b719c0b132959c88c3da3bbfb91432c6b8ae4279aaba8372", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759465, + "block_time": 1732471336, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -15816,22 +15837,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "63d771bb9e4591c00a7f9a0ae2285b22bc085479e10032da2feaec24b2113a89", + "tx_hash": "9baa83e2249df86e3e722a1b6966513e15c112290150bc2fdb0a0c47f6653660", "tx_index": 45, "block_index": 149, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "22e15bb976dafae6b5d6550963b709441d90a36b705dd7d122c0d6e74aca9ee1", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "990ca2dd84bda5e1b719c0b132959c88c3da3bbfb91432c6b8ae4279aaba8372", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759461, + "block_time": 1732471322, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -15850,7 +15871,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1` (str, required) - The hash of the fairmint to return + + tx_hash: `90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2` (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. @@ -15861,22 +15882,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "fairminter_tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "fairminter_tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -15894,7 +15915,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x,bcrt1qqqs0annxtvtvpp7cmqt7mahmzxjfc0h689jguv` (str, required) - The addresses to search for + + addresses: `bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l,bcrt1qk838gweltd7zurllg34r64jmky48yayd0lqxws` (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. @@ -15907,14 +15928,23 @@ Returns a list of unspent outputs for a list of addresses ``` { "result": [ + { + "vout": 0, + "height": 199, + "value": 546, + "confirmations": 35, + "amount": 5.46e-06, + "txid": "000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27", + "address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l" + }, { "vout": 1, "height": 230, "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655", - "address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x" + "txid": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b", + "address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l" }, { "vout": 1, @@ -15922,17 +15952,8 @@ Returns a list of unspent outputs for a list of addresses "value": 546, "confirmations": 36, "amount": 5.46e-06, - "txid": "b41a26f64b443be03944117f8b79f89ec69cb05e0c4a3e981aad5ce103d4298f", - "address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x" - }, - { - "vout": 0, - "height": 199, - "value": 546, - "confirmations": 35, - "amount": 5.46e-06, - "txid": "cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec", - "address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x" + "txid": "d85302093d4204e207e303bd18bd423920cda9f17c1452670a34b122d87d876d", + "address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l" } ], "next_cursor": null, @@ -15945,7 +15966,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3` (str, required) - The address to search for + + address: `bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s` (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 @@ -15961,28 +15982,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "1ff8e92f971f7777eb9a4a98bc29f717f2d7c9ca26e4ae7d1d4d21bca8afe86c" + "tx_hash": "281d38ceb46c10e8ffbecbe3f7447be927d1f7ee7add35ca49499d35dadd874f" }, { - "tx_hash": "f80e2b4f7c70249f3bc07963253b64182f8155f3923bb25d6afc6d7a8cbc4b97" + "tx_hash": "83a6db2bcfb35cf906f6b74e856148f361b19c0e00caefad290907f5e7c24f5b" }, { - "tx_hash": "902ef8eafafcc38afc8da2b4c39616e9e8720b9eac1db3bf333d913ed7021e9f" + "tx_hash": "40c0d96b2baf06c24f67921db9ae6c91c484ab49c85faf0c4c8a280bd8f5f96a" }, { - "tx_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3" + "tx_hash": "6bbbd982c42eaa0d753c9bfe9886e062682c09fc2d6bb3a9c3d1e6c7b0c49b8b" }, { - "tx_hash": "ceb7ec24a9bbacfd78a5b855640c6a68842e095bf11359ffdcb43dcbc6346db2" + "tx_hash": "19e763e7ae1a4a1d67f3f95e2cc197a217280944ee50250a99ae015ef97ab496" }, { - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9" + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba" }, { - "tx_hash": "0889a8ec097c98a20360274475e4768d51f3206bd9a0fc20ce65ebfa6f1a64fb" + "tx_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf" }, { - "tx_hash": "28186d391058abb6c30a1c2401a2c59bc41d6697ccd95f2fc81b7cca47b325fd" + "tx_hash": "87348723aa5b961b5c92923ed8590b6a863c5e1102061f773f023464ee9061f2" } ], "next_cursor": null, @@ -15995,7 +16016,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j` (str, required) - The address to search for. + + address: `bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf` (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. @@ -16008,8 +16029,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 8, - "tx_hash": "c9fe515c9e6f4f91c7e6011c561860f2b9aaee910f1b2e9a41d17eee03b8d4ba" + "block_index": 6, + "tx_hash": "68d80b14daf7c485f761162379cabce096410c001c9ec578991415d74d4eb904" } } ``` @@ -16019,7 +16040,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x` (str, required) - The address to search for + + address: `bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l` (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 @@ -16040,7 +16061,7 @@ Returns a list of unspent outputs for a specific address "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec" + "txid": "000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27" }, { "vout": 1, @@ -16048,7 +16069,7 @@ Returns a list of unspent outputs for a specific address "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655" + "txid": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b" }, { "vout": 1, @@ -16056,7 +16077,7 @@ Returns a list of unspent outputs for a specific address "value": 546, "confirmations": 36, "amount": 5.46e-06, - "txid": "b41a26f64b443be03944117f8b79f89ec69cb05e0c4a3e981aad5ce103d4298f" + "txid": "d85302093d4204e207e303bd18bd423920cda9f17c1452670a34b122d87d876d" } ], "next_cursor": null, @@ -16069,7 +16090,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3` (str, required) - Address to get pubkey for. + + address: `bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj` (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. @@ -16081,7 +16102,7 @@ Get pubkey for an address. ``` { - "result": "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63" + "result": "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05" } ``` @@ -16090,7 +16111,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f` (str, required) - The transaction hash + + tx_hash: `91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604` (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. @@ -16102,7 +16123,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010169cfa33c0e9ea43197afb694c08cf21a3ad42952874fa87c66d6128c7b46dbd90100000000ffffffff03e803000000000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c2100000000000000000c6a0a0a13e87842bcd0d71598871409270100000016001434fffcadf3880bfcaa3dfe48aaac56a887cd2cd202473044022068bede892e108f51edf590145cf9956e17dcadcbd58a01d4aa62c2718beefed10220773df1914b6bb79d608ef0d310238613b9a1137d55db7340087d404dde49e92c01210242a92200990e8361ee3fbe80ec0742492f2c25bf7c781807faeb3d9fbeed2c7000000000" + "result": "0200000000010157a837a13ec1d51e9335795791ec5d32c9614e12d87589d4a01f5ee6f084559e0100000000ffffffff03e803000000000000160014487c7e696463e9771c5f5ff6b6fef04c141fad6900000000000000000c6a0ae7c0bb85059f5f1d0e1087140927010000001600149ec39310f6fb4d103d6ed0f18885b18e2ec1d0830247304402206c9bb3d5571c8ff482aa6a4a8a288cd2f7ecd746846f7f39203b8ebaa0005b2a022054d9dd8827db254d31480399b27bcb9b543aaceed332494222e8951091657b110121033b331e827405c83d8732d8a5b536df3d06a2430d2212c6a3edf36c626650579e00000000" } ``` @@ -16263,27 +16284,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107 }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "quantity": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "status": "valid", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -16294,22 +16315,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "CREDIT", "params": { - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "XCP", "block_index": 233, "calling_function": "send", - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16319,22 +16340,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "address": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "XCP", "block_index": 233, - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16344,30 +16365,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731759896.8037238, + "block_time": 1732471746.555061, "btc_amount": 0, - "data": "0200000000000000010000000000002710803bb00e2d650a4fcfd7f4de6130e3750c94c05cb3", + "data": "020000000000000001000000000000271080eacd611b01eb84768f6f129dd086a1a176f08e12", "destination": "", "fee": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, - "utxos_info": "077c4d29677881ff21976ec8bf3cb16fb25ddcc22b48423c690fe0ee9a71c3bf:1 3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4:1 2 ", + "utxos_info": "a00b00d3e4ce91232e5198d2e63b5bff553720e35cf95b4eddf91e2932b3d664:1 e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "asset_info": { "asset_longname": null, @@ -16381,7 +16402,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 } ], "next_cursor": null, @@ -16412,19 +16433,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "CREDIT", "params": { - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "XCP", "block_index": 233, "calling_function": "send", - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16434,7 +16455,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 } ], "next_cursor": null, @@ -16447,7 +16468,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4` (str, required) - The hash of the transaction to return + + tx_hash: `e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa` (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 @@ -16467,27 +16488,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107 }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "quantity": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "status": "valid", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -16498,22 +16519,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "CREDIT", "params": { - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "XCP", "block_index": 233, "calling_function": "send", - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16523,22 +16544,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "address": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "XCP", "block_index": 233, - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16548,30 +16569,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731759896.8037238, + "block_time": 1732471746.555061, "btc_amount": 0, - "data": "0200000000000000010000000000002710803bb00e2d650a4fcfd7f4de6130e3750c94c05cb3", + "data": "020000000000000001000000000000271080eacd611b01eb84768f6f129dd086a1a176f08e12", "destination": "", "fee": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, - "utxos_info": "077c4d29677881ff21976ec8bf3cb16fb25ddcc22b48423c690fe0ee9a71c3bf:1 3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4:1 2 ", + "utxos_info": "a00b00d3e4ce91232e5198d2e63b5bff553720e35cf95b4eddf91e2932b3d664:1 e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "asset_info": { "asset_longname": null, @@ -16585,7 +16606,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index fe24874f80..63d3b0a55d 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -740,8 +740,8 @@ def get_attach_estimate_xcp_fee(db): 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 utxo: The utxo from which the assets are moved (e.g. $UTXO_WITH_BALANCE) + :param destination: The address to move the assets to (e.g. $ADDRESS_1) """ params = { "source": utxo, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index a9f5ea5857..0ecab40120 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": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "previous_block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "previous_block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236", "difficulty": 545259519, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, "confirmed": true }, { "block_index": 232, - "block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be", - "block_time": 1731759883, - "previous_block_hash": "602eab727fc97fad06b11b46b18c743ad83e59579ef9b4fff394df03dbfd63c6", + "block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236", + "block_time": 1732471727, + "previous_block_hash": "535e668c0eabe83bf29c37fa8652254f4dde4765e5c27c64af7417ba68a3a320", "difficulty": 545259519, - "ledger_hash": "dcd7d31738f37b83a41106cf71225d47c0cd59358e128cda517f915bf5b6f11f", - "txlist_hash": "bba1c95d2395cb349219d3edb5e110d31168de5b04fbd557feec74966f04ea05", - "messages_hash": "a36a1b41e92e282df416e44f8cac9c78e7d6052672ae4d73cffeea6969ed1deb", + "ledger_hash": "6ff33e55b2b32c3780c4207e3d03844bdd2fc8ee9a91ba842f91afbe78500403", + "txlist_hash": "44385933758279e6135cfb5727b2a676ffd30a91ab25a03f9df4cc6307487e20", + "messages_hash": "ac56cdd8e2cca8d6ee733ce6abba4162dcdb0d7694b54df23fb48ac7d2fdc3fe", "transaction_count": 1, "confirmed": true }, { "block_index": 231, - "block_hash": "602eab727fc97fad06b11b46b18c743ad83e59579ef9b4fff394df03dbfd63c6", - "block_time": 1731759869, - "previous_block_hash": "4600d79d612c2ad33ae0c2c2430a9f665dba127ea64286693b546cee390392b5", + "block_hash": "535e668c0eabe83bf29c37fa8652254f4dde4765e5c27c64af7417ba68a3a320", + "block_time": 1732471724, + "previous_block_hash": "42a053c26ef49cbde842fa0191a8752d82141a8ba49246b7ca38378e7854cb35", "difficulty": 545259519, - "ledger_hash": "7238c6fd3597eccf35472f0e933e084a3a827f8cf50942799079f060360a2cbb", - "txlist_hash": "654059c643488adaff780ee48402464dc3513e9ecdf2cd781cbd02c06df3e10f", - "messages_hash": "90556e036caa24c17584f615f7658667bee953200b2f2b797a078582fc12befa", + "ledger_hash": "e7de04fb1bb629d36c781cbe714f9e3d7865d30ebe6ca9de3f81a2a74dd9e688", + "txlist_hash": "db05d11afcf18790218322bdfc69900fd406edcba805155f39dbcf3ce55aba34", + "messages_hash": "bf8d47e8e2052104899eff54f9957ba0daa520277237004ba957d73214d60fba", "transaction_count": 1, "confirmed": true }, { "block_index": 230, - "block_hash": "4600d79d612c2ad33ae0c2c2430a9f665dba127ea64286693b546cee390392b5", - "block_time": 1731759865, - "previous_block_hash": "120dbc47eb959804f026373758f2c73781ff3b1996dabdafa67d86d50ffd000c", + "block_hash": "42a053c26ef49cbde842fa0191a8752d82141a8ba49246b7ca38378e7854cb35", + "block_time": 1732471721, + "previous_block_hash": "1b3d448300458542f0a4ac0172b6a4b455ef97ab2bbae65ad80a2af41cf23444", "difficulty": 545259519, - "ledger_hash": "064076aebc54763e1c9cc00a200eb3b127bbfc9b4cc0b91ddbcbd951a5db3448", - "txlist_hash": "067e2a6f3c3d008a6867e69c11e9f94091f67f1e239a6a5547a3acf9b2efe41c", - "messages_hash": "30d20053eb03c8bfec63943c40d937a5f8aaecaf25ff734436d90a50e16864f2", + "ledger_hash": "d04bbfa35e1d98a0dd3139f30ba62fd85c81fba218d1652d3dc00b92d2ae0084", + "txlist_hash": "dfc6f9fcc509518c166243a78c872b0cd1f7063f223300570ab54698c20e7546", + "messages_hash": "ed15ffb8336728d2f183ed4e3b449996e6d3405991256bc061e6e5e7607e1e42", "transaction_count": 1, "confirmed": true }, { "block_index": 229, - "block_hash": "120dbc47eb959804f026373758f2c73781ff3b1996dabdafa67d86d50ffd000c", - "block_time": 1731759861, - "previous_block_hash": "7c1c85fc797f0229d6f61b7a09a7d7a4acbd3af12fba8ce5cf94369a3ff17044", + "block_hash": "1b3d448300458542f0a4ac0172b6a4b455ef97ab2bbae65ad80a2af41cf23444", + "block_time": 1732471718, + "previous_block_hash": "42c23930f174e0b798bb3f773737ad28f14cb0ceee4dd68115c263b2303b387d", "difficulty": 545259519, - "ledger_hash": "41e3be3e7d133f8a45a91200f8a2847521118879ab9f64f191d2192173faee89", - "txlist_hash": "eb601c8d4e001e1f17c6ae48cc44a3fe3426b63a82b9ef911aee7e8e7fb3574b", - "messages_hash": "df0edaef5638189e92083dabb8ead31f38d961ff27bae1e3f681eb972a0b1814", + "ledger_hash": "6d02b811f85bd71b2e935d465a1d4172e8ea7a38252a65d649bf488c191b2a89", + "txlist_hash": "ec30a2144ceff4f1b49ac740d10f47eb9f26aaed5b9b0d8d898b27408d75e5d0", + "messages_hash": "a47c545803f224d13c45feadbbfd4c00bfb6a1cb1f151b7b02904ab79c0deabc", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "previous_block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "previous_block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236", "difficulty": 545259519, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "previous_block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "previous_block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236", "difficulty": 545259519, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1 7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0 3 1", + "utxos_info": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1 91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 233, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "block_time": 1731759892 + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "block_time": 1732471742 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106 }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" }, { "event_index": 911, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "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": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" }, { "event_index": 910, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": 0, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" }, { "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" } ], "next_cursor": 908, @@ -256,16 +256,16 @@ "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" }, { "event_index": 907, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -300,7 +300,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" }, { "event_index": 904, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f" + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 233, - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxo": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "utxo_address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "utxo": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "utxo_address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxo": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "utxo_address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "utxo": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "utxo_address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", + "object_id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", "block_index": 211, "confirmed": true, - "block_time": 1731759770 + "block_time": 1732471617 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 63, - "tx_hash": "df2e66655e964422f4b0223eca9aa16b91599e9fd65e295f93aa27130087051a", + "tx_hash": "e61f6e9411bb240a956761f3c635bc289eb4f317839a57f636824ce2202eb086", "block_index": 188, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "offer_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "offer_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "status": "valid", "confirmed": true, - "block_time": 1731759628 + "block_time": 1732471504 } ], "next_cursor": null, @@ -481,19 +481,19 @@ "result": [ { "tx_index": 101, - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "block_index": 228, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", "confirmed": true, - "block_time": 1731759857, + "block_time": 1732471714, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": false }, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 105, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "issuer": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731759883, + "block_time": 1732471727, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -565,10 +565,10 @@ }, { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "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": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -650,16 +650,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "block_index": 190, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731759636, + "block_time": 1732471513, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "tx_index": 105, "block_index": 232, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759883, + "block_time": 1732471727, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "fairminter_tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "fairminter_tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1 7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0 3 1", + "utxos_info": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1 91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 105, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "block_index": 232, - "block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be", - "block_time": 1731759883, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236", + "block_time": 1732471727, + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27:1 2 ", + "utxos_info": " 7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "fairminter", @@ -815,53 +815,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ea59ba6407b6ca374703351c81d67a8077d7ae1e80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "df84c678e075476ef6f003f4527d6c56bde27337e8fab7dfb66b751426b2251e", + "hash": "542587aec5a4a185cb886e3a933ae17674989d05eaefd0c437737c3df8dfdc0c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "bdcb5aa790d086910ca42dcc2d55e1ffc57820d34cecb3d0d285ae9a1eb688e0", + "hash": "349a75f6320239f3c2f744caea9c7d956a767d90a41c0a35e98dedda98036a15", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c50d6241828a2bcb3e15fdf6f322a47be26677d58a0f8db969432d0251d24335", + "hash": "228986c3cefaf358807b8f31034034d85274167dd37f0a24b37eee12d3495ae3", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "b457d6e69e2648a5aad03873a4818e19ea5cff9244f70bc0d4617c978c87198f", + "hash": "677ccf428b610b00d33f8cfc44251aa57a4e845b05135c6da41c91c67f3b1af9", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "591699673c2597c050c73368c62651829cfc73cd79228cb4a04bb9a4daa2ccff", + "hash": "a81e00220cb1aa9b1d877e4fde1ae53f03590e7fc2de0897f6421068879e5a29", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "f1d68d06f80a3045895378a6e2d9c468e79abe68802311621b9178230e58766c", + "hash": "7b53407a7b7d718c4f4e9391aba9e2e04f6dfd100cdf551413434a704e0f58ba", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -871,38 +871,38 @@ "vout": [ { "value": 1000, - "script_pub_key": "512103ecf160b3c5a244d26d34e311eb5b6c871faf1275e22dfd86d8815a2ece5e7ad621030b36a3ac84e4ca2560634d8e4a42addd3f8a54b1bad236ec37640256d852a58c2102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e6353ae" + "script_pub_key": "51210398dda925ae58287a894157622ea175c5a8483d5eb78082cf0beda58f80a37dc821030c837b0bf1e90c0978a74158e3a1f710af8afa520111c75cced73d016e300e122102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c0553ae" }, { "value": 1000, - "script_pub_key": "512103ecf160b3c5a244d26da13f10ce66a5f9f1ee65da25b3f92dcfeb5c97ca4094fe21025f5c239734eae76a7f9917ec0256cceddcff58257a840001be8b0057484129d32102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e6353ae" + "script_pub_key": "51210398dda925ae58287a899d6c4e3f7ea9c4637cba32e2a5098e7f09539865b9c5562102229dfbeafa4906813b2337d78cb36ac07b2b5b24f19fd5dc059dc82a38b8879c2102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c0553ae" }, { "value": 1000, - "script_pub_key": "512102cdf160b3c5a244d26d37e3126b8e5bb6d374cec30ae5ed06a4c5d48eca8440b321025f5c239734eae7406a2c8259be9ccceddcff58257a8e856cdbe66f64c841290a2102bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e6353ae" + "script_pub_key": "512102b6dda925ae58287a89425721ae4b2c7fcc4f8bbc80c781fa176c73f500d4aa3e2102a29dfbe13c881708932337d78cb36ac0292b5b24f19fd5dc0fddc82a38b887cb2102771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c0553ae" }, { "value": 29999987000, - "script_pub_key": "0014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee" + "script_pub_key": "00142ba632990d67f3cca92daf90e7f2adc092769a6d" } ], "vtxinwit": [ - "304402206bab58cd42b1c3986a0e6b22454895b32c4ee3bfff105fd9ee60a950b3cd994302203d0ae7fc146c9607f48d7ef3ffc4a69ed32cf215fc57ad5a3fef657de68bd3bc01", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63", - "304402206ae66c79a7f8e0b41709844e089508c2e7458b529007c7090efc6f9e62d8b91702200f15794f6a1ba54048e5691fc0f2a86fcaab0ae344ae236984a25f0e5cc0642801", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63", - "30440220452f0f764df602ecfb22bc7284497240ba35bffd155752b94df0bc4239ee947102201634fc290faf6af0dbfb06c194d177ff5fb2e7356ab196eb9ac2471fbd133c9101", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63", - "304402205624013f724cb18d8cdf38f7587ef8038207547e1f49c489355eb167bb94405602207a14571cbd5747e4c7d4c3c7a095fe5f3413e4e1de79a2e90329148b9361e2c801", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63", - "304402207d7cbf2cf40e8640a58c8d6dc6d1353808c2ed7a5c39a3145990fb880ae470e202200befe9f6aa4aae6943381f9231d27c7e3fb6140b4d8a8153599f31ac7c4d14e301", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63", - "30440220113269804ccc85b492dd9e085ca8b4426877a8108ca4932f17d8bac40f7c176d02206f2ebea1ae01e72a520f8c5882beee5c092e1d7f6ff9d5d34fb931cba2a0764b01", - "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63" + "3044022009778a3ce26f10834f8dcb736f95ac5c98fb98eeea7774ed3728c1a12d9627a3022052c77492b38be1b7e538e74b1945b3cf9b5347527e6b915dc4a705c1baf4a17201", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05", + "30440220106c60fc1b0b05d52e7d3266aadd1de4f499ecb536f7e3652c1137234dcdb0e40220747c5dd7148818474919e8a2fa2caf8bcc6ac2345978deda97e7745dc04e2d0501", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05", + "304402204938c88ddc45ce2fe4fb6402bd8c5ccc0c4655ef7b5781c27fb9078d866f433302204f7b1a988549a00f3425098e6b986a6ce998325ba93dbbb92503dbfd38fe316d01", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05", + "30440220503e6d792a960b89fc2e20dc7fda00df1fb0b106f07d617ec13ac1ee047a702b0220405464505566e480e60fa881f3fb71dec78303e06f9fad728661c9fd6e7285aa01", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05", + "30440220147d7d99bf7bd0b2b66b35af894e248e88500ab756c8c169b5d066564b8137ce022036208bcc588dcb9c697e009d578a2e5aa139e43fa48f83e03cd42d7846e417a701", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05", + "30440220720cb8f4d3367f676282b48431d346d477c142a5a8a7caa3f03aba3637eb71f302206bd0857a66c95b5a4091095eb43cbe3c4d2133a252d6a0974cd997965b39d6de01", + "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05" ], "lock_time": 0, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", - "tx_id": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4" + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", + "tx_id": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f" }, "unpacked_data": { "message_type": "mpma_send", @@ -910,14 +910,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, - "memo": "memo2", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -925,9 +925,9 @@ }, { "asset": "XCP", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 10, - "memo": "memo1", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, @@ -945,18 +945,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803bb00e2d650a4fcfd7f4de6130e3750c94c05cb3", + "data": "020000000000000001000000000000271080eacd611b01eb84768f6f129dd086a1a176f08e12", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "bfc3719aeee00f693c42482bc2dc5db26fb13cbfc86e9721ff817867294d7c07", + "hash": "64d6b332291ef9dd4e5bf95ce3203755ff5b3be6d298512e2391cee4d3000ba0", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -966,20 +966,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e802d1cd7e7f4b01de5f09059e6187bdf7a47bbfe9739f01c3b66a34f5d5cc59e4b5726599c950c8b2d31c733c2ba" + "script_pub_key": "6a2efed16f5ecc14fc1903ac2900c1b78d30b97b3cb40f6e4ddd406308413f06ae3207a62ca78a697e05e03b30265c92" }, { "value": 4949930546, - "script_pub_key": "0014ec826d3210138c96dc02a5e87e4f229aab192f56" + "script_pub_key": "0014c10af52b568889df3b2f913585bbaf3331a66262" } ], "vtxinwit": [ - "30440220492b23405d06d6890fc60dc9c74afb033e19c3a96142fa94861d7356e56e0614022079b622a6d92beea936b29df2d890a3d4f73b3d4abfdaa3b69ae6853e3b61da3201", - "029d03350526e6dd4e6b5750ecb7e3dabb0ee771c4492470389bc0acc34a9d2f40" + "3044022053faa4ad9895f4b6ad0f58b80101125cb353306206445be4705699c886ef3d5102206250f89beb94baf19ebebf73921340b2e082e02c182a7f416b7c5258a2da9c1a01", + "02ba99d2794116d748e801846a4fd3b4fc1ab4605610de426078c821d2024f676a" ], "lock_time": 0, - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", - "tx_id": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4" + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", + "tx_id": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa" }, "unpacked_data": { "message_type": "enhanced_send", @@ -987,7 +987,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "asset_info": { "asset_longname": null, @@ -1014,17 +1014,17 @@ "/v2/transactions/": { "result": { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1 7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0 3 1", + "utxos_info": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1 91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1039,17 +1039,17 @@ "/v2/transactions/": { "result": { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", - "block_time": 1731759892, - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", + "block_time": 1732471742, + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1 7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0 3 1", + "utxos_info": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1 91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0 3 1", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1068,12 +1068,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106 }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 911, @@ -1082,14 +1082,14 @@ "asset": "XCP", "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1100,9 +1100,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 910, @@ -1111,9 +1111,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": 0, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1123,24 +1123,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1150,9 +1150,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 908, @@ -1160,14 +1160,14 @@ "params": { "asset": "XCP", "block_index": 233, - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "msg_index": 1, "quantity": 2000000000, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", "status": "valid", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1177,9 +1177,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 907, @@ -1192,12 +1192,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106 }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 911, @@ -1206,14 +1206,14 @@ "asset": "XCP", "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1224,9 +1224,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 910, @@ -1235,9 +1235,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": 0, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1247,24 +1247,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1274,9 +1274,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 908, @@ -1284,14 +1284,14 @@ "params": { "asset": "XCP", "block_index": 233, - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "msg_index": 1, "quantity": 2000000000, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", "status": "valid", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1301,9 +1301,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 907, @@ -1313,10 +1313,10 @@ "result": [ { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -1324,7 +1324,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1337,10 +1337,10 @@ }, { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -1348,11 +1348,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -1368,27 +1368,27 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "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": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1424,16 +1424,16 @@ "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1443,9 +1443,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 907, @@ -1455,12 +1455,12 @@ "asset": "XCP", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1470,9 +1470,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 904, @@ -1482,24 +1482,24 @@ "asset": "MYASSETA", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": null, @@ -1511,16 +1511,16 @@ "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1530,9 +1530,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 907, @@ -1542,12 +1542,12 @@ "asset": "XCP", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1557,9 +1557,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 904, @@ -1569,24 +1569,24 @@ "asset": "MYASSETA", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": null, @@ -1599,7 +1599,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1609,7 +1609,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -1620,7 +1620,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1630,7 +1630,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -1641,7 +1641,7 @@ "total": 180, "addresses": [ { - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "utxo": null, "utxo_address": null, "quantity": 180, @@ -1651,7 +1651,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -1662,7 +1662,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1672,7 +1672,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -1683,7 +1683,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1693,7 +1693,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -1707,17 +1707,17 @@ "result": [ { "tx_index": 81, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "block_hash": "5ba403cedd4a17835df8b574f44ee1a91b44e435a6bb1d5091caf7329ae5a488", - "block_time": 1731759725, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "block_hash": "180f8731bf57f98101deb9574e9887c19c430916b5635d7e3f52d680a8a1d6d1", + "block_time": 1732471584, + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa72a4cae5765676f61961f3e7ff2d08f9ae88ee803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802ba632990d67f3cca92daf90e7f2adc092769a6d80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9:0 4 ", + "utxos_info": " bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1725,14 +1725,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -1740,7 +1740,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1759,17 +1759,17 @@ }, { "tx_index": 80, - "tx_hash": "7152c36262483c1a3158cc8ca6ca8015a48ef6d6dfe215c6baf96e2f78d72dd2", + "tx_hash": "46664a9cfa41329ff96717dd72018d4a25e4d514ab236215432ed0754049f268", "block_index": 204, - "block_hash": "41b648b293770f543bc5aa2f62413afddc492531915a8115bfc92dcf089504ca", - "block_time": 1731759720, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "block_hash": "10d437d9b39069b93b39c78f384259c931cb3e5d0200b4a55ae5eae85f1bb660", + "block_time": 1732471580, + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380aa72a4cae5765676f61961f3e7ff2d08f9ae88ee803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f56c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802ba632990d67f3cca92daf90e7f2adc092769a6d80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a66262c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 7152c36262483c1a3158cc8ca6ca8015a48ef6d6dfe215c6baf96e2f78d72dd2:0 4 ", + "utxos_info": " 46664a9cfa41329ff96717dd72018d4a25e4d514ab236215432ed0754049f268:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1777,14 +1777,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -1792,7 +1792,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1811,17 +1811,17 @@ }, { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "block_hash": "73a9ca3a2b9181f87664c3f4dc8691b9aa61de0f714e9a210c6b19a7cb1e77ae", - "block_time": 1731759716, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "72d828f9623aa9260cc26b080fc4591f6ed72194735ae56c3a9be3df28c0e92b", + "block_time": 1732471576, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ea59ba6407b6ca374703351c81d67a8077d7ae1e80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4:0 4 ", + "utxos_info": " a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1829,14 +1829,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -1844,7 +1844,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1863,17 +1863,17 @@ }, { "tx_index": 78, - "tx_hash": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "block_index": 202, - "block_hash": "1139d85b166a885a689d0417e403516af8ffd993586dec0ba8304890b94072ec", - "block_time": 1731759712, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "2cba7e31473a2fe091d97126a99b94b38f000c2a80e6796644f961d862729b0a", + "block_time": 1732471562, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ea59ba6407b6ca374703351c81d67a8077d7ae1e80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7:0 4 ", + "utxos_info": " b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1881,14 +1881,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -1896,7 +1896,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1915,17 +1915,17 @@ }, { "tx_index": 77, - "tx_hash": "dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc", + "tx_hash": "9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9", "block_index": 201, - "block_hash": "26916cbc71d769a19f9b91dc34b27e0583c7ecdcb25d076018e76fcb291d7fc7", - "block_time": 1731759697, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "61d30b2f7576c80552d3857cda6e64afbb7e13568da2be30da452ec0c02ee793", + "block_time": 1732471559, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a", + "data": "02000000178d82231300000000000003e880ea59ba6407b6ca374703351c81d67a8077d7ae1e", "supported": true, - "utxos_info": " dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc:1 2 ", + "utxos_info": " 9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -1933,12 +1933,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -1958,29 +1958,29 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "block_time": 1731759845 + "order_match_id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "block_time": 1732471704 }, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "block_index": 225, - "block_time": 1731759845 + "block_time": 1732471704 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "event": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731759845, + "block_time": 1732471704, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1990,37 +1990,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "block_index": 225, - "block_time": 1731759845 + "block_time": 1732471704 }, { "event_index": 743, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "block_time": 1731759770 + "order_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "block_time": 1732471617 }, - "tx_hash": "b75363013be0c3c3bee6863c8af4dc81b5db15c69b4daec18b3195eea23cd815", + "tx_hash": "3d55dcd93065b249f036b9e507ba6777bc16754049c2a286bf7ff7b07db11950", "block_index": 211, - "block_time": 1731759770 + "block_time": 1732471617 }, { "event_index": 742, "event": "CREDIT", "params": { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", + "event": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731759770, + "block_time": 1732471617, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2030,9 +2030,9 @@ }, "quantity_normalized": "0.00000000" }, - "tx_hash": "b75363013be0c3c3bee6863c8af4dc81b5db15c69b4daec18b3195eea23cd815", + "tx_hash": "3d55dcd93065b249f036b9e507ba6777bc16754049c2a286bf7ff7b07db11950", "block_index": 211, - "block_time": 1731759770 + "block_time": 1732471617 }, { "event_index": 698, @@ -2040,15 +2040,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "status": "valid", - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "tx_index": 81, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2058,28 +2058,28 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "block_time": 1731759725 + "block_time": 1732471584 } ], "next_cursor": 698, - "result_count": 258 + "result_count": 260 }, "/v2/addresses/mempool": { "result": [ { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "quantity": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "status": "valid", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -2090,22 +2090,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "CREDIT", "params": { - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "XCP", "block_index": 233, "calling_function": "send", - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2115,22 +2115,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "address": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "XCP", "block_index": 233, - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2140,30 +2140,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731759896.8037238, + "block_time": 1732471746.555061, "btc_amount": 0, - "data": "0200000000000000010000000000002710803bb00e2d650a4fcfd7f4de6130e3750c94c05cb3", + "data": "020000000000000001000000000000271080eacd611b01eb84768f6f129dd086a1a176f08e12", "destination": "", "fee": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, - "utxos_info": "077c4d29677881ff21976ec8bf3cb16fb25ddcc22b48423c690fe0ee9a71c3bf:1 3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4:1 2 ", + "utxos_info": "a00b00d3e4ce91232e5198d2e63b5bff553720e35cf95b4eddf91e2932b3d664:1 e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "asset_info": { "asset_longname": null, @@ -2177,7 +2177,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 } ], "next_cursor": null, @@ -2186,7 +2186,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2194,14 +2194,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2209,14 +2209,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "999.99998960" }, { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2224,14 +2224,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "979.99999980" }, { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2246,7 +2246,7 @@ "quantity_normalized": "825.99966196" }, { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2254,7 +2254,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2267,7 +2267,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -2289,16 +2289,16 @@ "result": [ { "block_index": 225, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "event": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759845, + "block_time": 1732471704, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2310,16 +2310,16 @@ }, { "block_index": 205, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "event": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "tx_index": 81, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2331,16 +2331,16 @@ }, { "block_index": 204, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "7152c36262483c1a3158cc8ca6ca8015a48ef6d6dfe215c6baf96e2f78d72dd2", + "event": "46664a9cfa41329ff96717dd72018d4a25e4d514ab236215432ed0754049f268", "tx_index": 80, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759720, + "block_time": 1732471580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2352,16 +2352,16 @@ }, { "block_index": 204, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "event": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759720, + "block_time": 1732471580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2373,16 +2373,16 @@ }, { "block_index": 202, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", + "event": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2400,16 +2400,16 @@ "result": [ { "block_index": 203, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "event": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2421,20 +2421,20 @@ }, { "block_index": 203, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "event": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "tx_index": 79, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2442,16 +2442,16 @@ }, { "block_index": 202, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "event": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2463,20 +2463,20 @@ }, { "block_index": 202, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "event": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "tx_index": 78, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2484,20 +2484,20 @@ }, { "block_index": 201, - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc", + "event": "9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9", "tx_index": 77, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759697, + "block_time": 1732471559, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2516,9 +2516,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "8430ab16e38654e66a0dabd5f795ab64d8fad97f4f1acfdfa087b1d886ef3890", + "tx_hash": "4a8b2966e99df9a216be644fb270e01e52b54346404238870f42123cf0875ce3", "block_index": 128, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2526,7 +2526,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731759383, + "block_time": 1732471234, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2537,14 +2537,14 @@ "result": [ { "tx_index": 6, - "tx_hash": "5430898b9307908a2fde4be7bf8f36d7379489c34ee1e495a9ff5a5d76788ec7", + "tx_hash": "bc4750d9221375dc94726ab9c7f36670ab659e7595bd6cda2942082015118a7d", "block_index": 112, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -2556,10 +2556,10 @@ "result": [ { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2567,7 +2567,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2580,10 +2580,10 @@ }, { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2591,11 +2591,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2604,10 +2604,10 @@ }, { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2615,11 +2615,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2628,10 +2628,10 @@ }, { "tx_index": 78, - "tx_hash": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2639,7 +2639,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2652,10 +2652,10 @@ }, { "tx_index": 78, - "tx_hash": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2663,11 +2663,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2682,10 +2682,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "73bff74111577b8dace97ec0ab257374d1f62bebfc386669d4c2b807b09bad49", + "tx_hash": "d02a74cbb590867b6ec56dd0d72e0f771f0933e88d931ef6ab2512a71584b73f", "block_index": 142, - "source": "d1ed10823853b558f58e63f14e038420ae619b38e62adc99dc5b3f0391b2914c:0", - "destination": "bcrt1qcafgsw0swjvlkpcryph7lakegzqqs56zpnjqmw", + "source": "9d75a123706398802118d0d66b1aeb349b820941d4fe509e76f6f53625800f38:0", + "destination": "bcrt1qdhzy4e83u0hq472jxsuv30flhk0culysrd7mr5", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2693,11 +2693,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759434, + "block_time": 1732471293, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2722,9 +2722,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2733,7 +2733,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2761,9 +2761,9 @@ }, { "tx_index": 68, - "tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2772,7 +2772,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759660, + "block_time": 1732471527, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2805,9 +2805,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2816,7 +2816,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2848,19 +2848,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "132594491317fb1e7506ad9b3527f2a09926ebbaf19e0f22c0c1ceeca3c13dff", + "tx_hash": "25becfab15793702ef29f3451e9bc99d13afe0a5e4ad41229360c8112c39b204", "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "dispenser_tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2868,7 +2868,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759660, + "block_time": 1732471527, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -2897,19 +2897,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2917,7 +2917,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2946,19 +2946,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2966,7 +2966,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3001,19 +3001,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "132594491317fb1e7506ad9b3527f2a09926ebbaf19e0f22c0c1ceeca3c13dff", + "tx_hash": "25becfab15793702ef29f3451e9bc99d13afe0a5e4ad41229360c8112c39b204", "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "dispenser_tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3021,7 +3021,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759660, + "block_time": 1732471527, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -3050,19 +3050,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3070,7 +3070,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3099,19 +3099,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3119,7 +3119,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3154,19 +3154,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3174,7 +3174,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3203,19 +3203,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3223,7 +3223,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3258,19 +3258,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3278,7 +3278,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3307,19 +3307,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3327,7 +3327,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3361,16 +3361,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "block_index": 190, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731759636, + "block_time": 1732471513, "fee_paid_normalized": "0.00600000" } ], @@ -3381,14 +3381,14 @@ "result": [ { "tx_index": 76, - "tx_hash": "b98cc071664ff576b79be7f61ca00c742b29e9fddb94922abae93f8498cab67a", + "tx_hash": "ce3fccf33642b49c539acaef918e1443a85670e0904027c20fd0a1d00c042aa4", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "transfer": false, "callable": false, "call_date": 0, @@ -3403,20 +3403,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731759693, + "block_time": 1732471555, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "3572941c7dc9677f072515ce8977931217d90767ac674d5d52b461096f75d2c7", + "tx_hash": "eb21e4a9a591adb3a6fff02c25bd3378b73b04c0f7b322e5e343795a62948083", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "transfer": false, "callable": false, "call_date": 0, @@ -3431,20 +3431,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731759510, + "block_time": 1732471362, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "79ea9d5e6c95c63449ddf01c907f4fcf8184c05cff77a4439ee240f2bd250263", + "tx_hash": "5624d7900784fc43130010441b6be9fe728a46adf94cb10204c454fd5f9a3e67", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "transfer": false, "callable": false, "call_date": 0, @@ -3459,20 +3459,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1731759506, + "block_time": 1732471358, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "6dbd2e40e6a4d94e30b991dbeed66a2b2e86354cc94247b685c349518c201e7a", + "tx_hash": "aa3fa1e1e9c3186503384e3d010f39865d8fbd942d3c855fd4c8bb8cade504d9", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "transfer": false, "callable": false, "call_date": 0, @@ -3487,20 +3487,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731759492, + "block_time": 1732471354, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "cbedfe5239d97d7104eff184f50b288f8e336205fb4c129a92028e4e5ac772de", + "tx_hash": "5a3c411833b651081f345517139a4f9f8aacd412322b844714f4599db51b72d6", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "transfer": false, "callable": false, "call_date": 0, @@ -3515,7 +3515,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1731759477, + "block_time": 1732471349, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3529,8 +3529,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759693, - "last_issuance_block_time": 1731759693, + "first_issuance_block_time": 1732471555, + "last_issuance_block_time": 1732471555, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759477, - "last_issuance_block_time": 1731759506, + "first_issuance_block_time": 1732471349, + "last_issuance_block_time": 1732471358, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759457, - "last_issuance_block_time": 1731759465, + "first_issuance_block_time": 1732471317, + "last_issuance_block_time": 1732471336, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759423, - "last_issuance_block_time": 1731759423, + "first_issuance_block_time": 1732471281, + "last_issuance_block_time": 1732471281, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759374, - "last_issuance_block_time": 1731759379, + "first_issuance_block_time": 1732471226, + "last_issuance_block_time": 1732471230, "supply_normalized": "0.00000040" } ], @@ -3620,8 +3620,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759693, - "last_issuance_block_time": 1731759693, + "first_issuance_block_time": 1732471555, + "last_issuance_block_time": 1732471555, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759477, - "last_issuance_block_time": 1731759506, + "first_issuance_block_time": 1732471349, + "last_issuance_block_time": 1732471358, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759457, - "last_issuance_block_time": 1731759465, + "first_issuance_block_time": 1732471317, + "last_issuance_block_time": 1732471336, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759423, - "last_issuance_block_time": 1731759423, + "first_issuance_block_time": 1732471281, + "last_issuance_block_time": 1732471281, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759374, - "last_issuance_block_time": 1731759379, + "first_issuance_block_time": 1732471226, + "last_issuance_block_time": 1732471230, "supply_normalized": "0.00000040" } ], @@ -3711,8 +3711,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759693, - "last_issuance_block_time": 1731759693, + "first_issuance_block_time": 1732471555, + "last_issuance_block_time": 1732471555, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759477, - "last_issuance_block_time": 1731759506, + "first_issuance_block_time": 1732471349, + "last_issuance_block_time": 1732471358, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759457, - "last_issuance_block_time": 1731759465, + "first_issuance_block_time": 1732471317, + "last_issuance_block_time": 1732471336, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759423, - "last_issuance_block_time": 1731759423, + "first_issuance_block_time": 1732471281, + "last_issuance_block_time": 1732471281, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "owner": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "owner": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759374, - "last_issuance_block_time": 1731759379, + "first_issuance_block_time": 1732471226, + "last_issuance_block_time": 1732471230, "supply_normalized": "0.00000040" } ], @@ -3800,17 +3800,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "block_hash": "73a9ca3a2b9181f87664c3f4dc8691b9aa61de0f714e9a210c6b19a7cb1e77ae", - "block_time": 1731759716, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "72d828f9623aa9260cc26b080fc4591f6ed72194735ae56c3a9be3df28c0e92b", + "block_time": 1732471576, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5640000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ea59ba6407b6ca374703351c81d67a8077d7ae1e80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4:0 4 ", + "utxos_info": " a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3818,14 +3818,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -3833,7 +3833,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3852,17 +3852,17 @@ }, { "tx_index": 78, - "tx_hash": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "block_index": 202, - "block_hash": "1139d85b166a885a689d0417e403516af8ffd993586dec0ba8304890b94072ec", - "block_time": 1731759712, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "2cba7e31473a2fe091d97126a99b94b38f000c2a80e6796644f961d862729b0a", + "block_time": 1732471562, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a803bb00e2d650a4fcfd7f4de6130e3750c94c05cb380ec826d3210138c96dc02a5e87e4f229aab192f5688746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ea59ba6407b6ca374703351c81d67a8077d7ae1e80eacd611b01eb84768f6f129dd086a1a176f08e1280c10af52b568889df3b2f913585bbaf3331a6626288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7:0 4 ", + "utxos_info": " b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f:0 4 ", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3870,14 +3870,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -3885,7 +3885,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -3904,17 +3904,17 @@ }, { "tx_index": 77, - "tx_hash": "dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc", + "tx_hash": "9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9", "block_index": 201, - "block_hash": "26916cbc71d769a19f9b91dc34b27e0583c7ecdcb25d076018e76fcb291d7fc7", - "block_time": 1731759697, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "61d30b2f7576c80552d3857cda6e64afbb7e13568da2be30da452ec0c02ee793", + "block_time": 1732471559, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a", + "data": "02000000178d82231300000000000003e880ea59ba6407b6ca374703351c81d67a8077d7ae1e", "supported": true, - "utxos_info": " dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc:1 2 ", + "utxos_info": " 9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3922,12 +3922,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -3938,17 +3938,17 @@ }, { "tx_index": 76, - "tx_hash": "b98cc071664ff576b79be7f61ca00c742b29e9fddb94922abae93f8498cab67a", + "tx_hash": "ce3fccf33642b49c539acaef918e1443a85670e0904027c20fd0a1d00c042aa4", "block_index": 200, - "block_hash": "417eed1a7146f8c4a489d8c99425f8e6eca7e2e9acc1323ec88ab9d4786ea42b", - "block_time": 1731759693, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "03d61c5d9987d073cd13acf24bd711c8938bff7e02c2b6414dc52f4e9ed71af8", + "block_time": 1732471555, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " b98cc071664ff576b79be7f61ca00c742b29e9fddb94922abae93f8498cab67a:1 2 ", + "utxos_info": " ce3fccf33642b49c539acaef918e1443a85670e0904027c20fd0a1d00c042aa4:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3973,17 +3973,17 @@ }, { "tx_index": 68, - "tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "block_index": 193, - "block_hash": "6c6c27aaa73095ae4981897e36ae2682cdfe38f49725c660b11135115b8dc836", - "block_time": 1731759657, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "block_hash": "0d0ff7c633d8847763032c87c78160538c4ff9cad0502d7cf385b483d62b3657", + "block_time": 1732471524, + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce:1 2 ", + "utxos_info": " fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5:1 2 ", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4000,7 +4000,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4018,20 +4018,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "tx_hash": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "block_index": 146, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731759450, + "block_time": 1732471310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4053,9 +4053,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", + "tx_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", "block_index": 179, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759522, + "block_time": 1732471386, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4100,9 +4100,9 @@ }, { "tx_index": 55, - "tx_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", + "tx_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759712, + "block_time": 1732471562, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4147,9 +4147,9 @@ }, { "tx_index": 62, - "tx_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "tx_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "block_index": 188, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759628, + "block_time": 1732471504, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4194,9 +4194,9 @@ }, { "tx_index": 64, - "tx_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", + "tx_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", "block_index": 211, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "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": 1731759770, + "block_time": 1732471617, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4246,10 +4246,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "22e15bb976dafae6b5d6550963b709441d90a36b705dd7d122c0d6e74aca9ee1", + "tx_hash": "990ca2dd84bda5e1b719c0b132959c88c3da3bbfb91432c6b8ae4279aaba8372", "tx_index": 44, "block_index": 150, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "FREEFAIRMINT", "asset_parent": null, "asset_longname": null, @@ -4274,7 +4274,7 @@ "commission": 0, "paid_quantity": 0, "confirmed": true, - "block_time": 1731759465, + "block_time": 1732471336, "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": "ec04f10a36d49b14bc58fb9eb01d43680d8f10ad31bfae8386d4b86c7d9ec859", + "tx_hash": "ed0d44936a91225d0f5817f4387d923072945932e4223a884cde23e2a54071b6", "tx_index": 43, "block_index": 147, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4314,7 +4314,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759454, + "block_time": 1732471314, "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": "ade9ef15dd1cc618815984c7d7d307d3d06c340eb27b1af1c3f2d2f6f3dbbb18", + "tx_hash": "1f185374ff1b503fa2860c9b9c61ea1dd92c1f483477c52ce36f872562685c27", "tx_index": 22, "block_index": 126, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "FAIRMINTD", "asset_parent": null, "asset_longname": null, @@ -4351,7 +4351,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1731759374, + "block_time": 1732471226, "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": "68111295f491f1377f8599aaabfbe8c341a51b88e782c64ad5d45774f7a2d957", + "tx_hash": "9176928899665fab065079e6173f9f331c93f218f835966ba71f8876d6001ddf", "tx_index": 18, "block_index": 122, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "FAIRMINTC", "asset_parent": null, "asset_longname": null, @@ -4391,7 +4391,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1731759349, + "block_time": 1732471209, "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": "b26f0299ae73b61d9a9f122bfbe0cd2de151c6bcbb2b174c49887bc45d07f30a", + "tx_hash": "6e648e686b0af8f9bad1ee617095a4ca4d4bff52461bf6a6dbc551751dca106f", "tx_index": 14, "block_index": 121, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "FAIRMINTB", "asset_parent": null, "asset_longname": null, @@ -4431,7 +4431,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1731759346, + "block_time": 1732471206, "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": "0c375f75a195b0fd01c4a56bfecd32373d2d5eada1d8cb1aa6de475de9ebdefc", + "tx_hash": "82ae3a1189bc2654a7f91ea54881f5ec9ba25193107597888f6134112d546dd2", "tx_index": 10, "block_index": 116, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "FAIRMINTA", "asset_parent": null, "asset_longname": null, @@ -4471,7 +4471,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1731759325, + "block_time": 1732471189, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4489,22 +4489,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "d8251537ada7cac543c912d4fba6a7a834092803321eabfa848bb0f089f787f1", + "tx_hash": "660976e4b7c607bffd972e3a48292ad06f2372cbf1be035e716bb697746dc064", "tx_index": 46, "block_index": 150, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "22e15bb976dafae6b5d6550963b709441d90a36b705dd7d122c0d6e74aca9ee1", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "990ca2dd84bda5e1b719c0b132959c88c3da3bbfb91432c6b8ae4279aaba8372", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759465, + "block_time": 1732471336, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4513,22 +4513,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "63d771bb9e4591c00a7f9a0ae2285b22bc085479e10032da2feaec24b2113a89", + "tx_hash": "9baa83e2249df86e3e722a1b6966513e15c112290150bc2fdb0a0c47f6653660", "tx_index": 45, "block_index": 149, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "22e15bb976dafae6b5d6550963b709441d90a36b705dd7d122c0d6e74aca9ee1", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "990ca2dd84bda5e1b719c0b132959c88c3da3bbfb91432c6b8ae4279aaba8372", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759461, + "block_time": 1732471322, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4537,22 +4537,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "1fa69076fd4d4950079db42ce38b016bf7a9f7d6e455cbbbac527a45cd164f38", + "tx_hash": "51d63f17cf7a13acdb351bdbce92acfecc835fd03a4ee0d0675f5f806380d0bc", "tx_index": 23, "block_index": 127, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "ade9ef15dd1cc618815984c7d7d307d3d06c340eb27b1af1c3f2d2f6f3dbbb18", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "1f185374ff1b503fa2860c9b9c61ea1dd92c1f483477c52ce36f872562685c27", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759379, + "block_time": 1732471230, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4561,22 +4561,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "80c1f187008203a2f61fd88a63dacd1da5f3059f64d885f7948f4acb69516c2c", + "tx_hash": "c92f59de2df943978015198fba477aa934b42c4d7cb40f99f55919eb6eae6ed1", "tx_index": 21, "block_index": 125, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "68111295f491f1377f8599aaabfbe8c341a51b88e782c64ad5d45774f7a2d957", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "9176928899665fab065079e6173f9f331c93f218f835966ba71f8876d6001ddf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759371, + "block_time": 1732471221, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4585,22 +4585,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "e6706ef4b84494fedbb8bbaa597aea0306e87d8628b04834fecc679568a03bee", + "tx_hash": "9a448e24d30659b41db19e68935cfa37819ad2cdb7ea454070470f296e67b581", "tx_index": 20, "block_index": 124, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "68111295f491f1377f8599aaabfbe8c341a51b88e782c64ad5d45774f7a2d957", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "9176928899665fab065079e6173f9f331c93f218f835966ba71f8876d6001ddf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759357, + "block_time": 1732471217, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4609,22 +4609,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2bc717c478852c4fcbc79ecd2f3df1fabd8136392b9b9d9c3dd63b6373237ef4", + "tx_hash": "e626255e3d0fce74d72c13a715c37fcfd801e2aee8141eb69bdd1a8402642bf5", "tx_index": 19, "block_index": 123, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "68111295f491f1377f8599aaabfbe8c341a51b88e782c64ad5d45774f7a2d957", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "9176928899665fab065079e6173f9f331c93f218f835966ba71f8876d6001ddf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759353, + "block_time": 1732471214, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4633,22 +4633,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9eda3a2c4bd518e5142f68185257602b68c4a76f791edade1068e05c547ac098", + "tx_hash": "5fadd8b96f40bf374ae431be91b215de48ee01e9a0c417f2c3ca5a95cc725e22", "tx_index": 15, "block_index": 118, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "b26f0299ae73b61d9a9f122bfbe0cd2de151c6bcbb2b174c49887bc45d07f30a", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "6e648e686b0af8f9bad1ee617095a4ca4d4bff52461bf6a6dbc551751dca106f", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759333, + "block_time": 1732471195, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4657,22 +4657,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "d33293fdda0a6471a2d2dcb4e0d7bd1880943d01b189389cac269687b78ed54d", + "tx_hash": "20220e14679703fbb47cbeedaf98faf7be7fc40d8169df521a30ce5491826e7c", "tx_index": 11, "block_index": 114, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "0c375f75a195b0fd01c4a56bfecd32373d2d5eada1d8cb1aa6de475de9ebdefc", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "82ae3a1189bc2654a7f91ea54881f5ec9ba25193107597888f6134112d546dd2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759317, + "block_time": 1732471180, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4694,8 +4694,8 @@ { "asset": "XCP", "quantity": 2000000000, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4708,12 +4708,12 @@ { "asset": "MYASSETA", "quantity": 2000000000, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4735,7 +4735,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4746,9 +4746,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985817, - "btc_fee": 14183, - "rawtransaction": "02000000000101c2f42383c604095e984023fa8a6bc7c2c8e15309914bc6eb4cb409288a96cd2900000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff0200000000000000002b6a29f4d1fa54ef331f75e8a3a3a7264515bc3b4764925f9b60179e597eaf49468d577b13f4a658716d3ff999ba052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "02000000000101f43d6aa35ec97a4c354537498de48c09925a50ab4561e11e8463b5994d91b603000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff0200000000000000002b6a295106a80f6ad5284620b39fcc710285635f48bccdff797e5ef065a11c457dd00ad6ebcf2071e956cd0900f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4766,24 +4766,24 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "order_match_id": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655_fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "order_match_id": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b_0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bf2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "data": "434e5452505254590bd015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999980948, - "btc_fee": 18052, - "rawtransaction": "020000000001019554816e129503f60b8d0dc427100d9b1bd0dba349592aaffcb42f4395ce773600000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff03e803000000000000160014dfe4da65ba3b67ccfd1bfd15ca201312b56e770600000000000000004b6a494c747ece8a4be38bbd8201cc24a01e73d0d0fe0b0ee08cadb4e68a488657368540f789de30d7e9a29edf656c3ecfe740e75b7fa24497365d294d10191db9cf42c5e560566287f77cad94a7052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 4999999000, + "btc_fee": 0, + "rawtransaction": "02000000000101ef5f3b7ca0303c659b05ac30a1f7554218a143bf940a04fe1f05bbb6b8f3aee1000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff03e803000000000000160014bcbf9a22a972f1f7f3e2246001e97f4d482de92d00000000000000004b6a49107be2b589efc51cbc56c65ed2f954affebfce30546682c8cf1037d0769989e796bd5345f32e47b23ee220c6afb96d85bdb0f27866559e50f1fb6cb97240980b4029983c7145893f0018ee052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655", - "tx1_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", - "order_match_id": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655_fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx0_hash": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b", + "tx1_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", + "order_match_id": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b_0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "status": "valid" } } @@ -4792,7 +4792,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "quantity": 1000, "overburn": false, "skip_validation": false @@ -4801,30 +4801,30 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985813, - "btc_fee": 13187, - "rawtransaction": "02000000000101ab6040b76c83b4cf2f4d56af2a2cee15a0ab8076f24f6007e49f4c03862af38d00000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac95ba052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000" + "btc_change": 4999999000, + "btc_fee": 0, + "rawtransaction": "02000000000101b7d763184bd0d5bd0381d08885b1f8567df57779d9b30e40ab8e6d2a8869c41e000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac18ee052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "offer_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "offer_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "data": "434e545250525459460437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "btc_in": 90000, "btc_out": 0, - "btc_change": 75817, - "btc_fee": 14183, - "rawtransaction": "0200000000010111946be08247e2d3fa565780b5397f60b2ce4478f7068a17ad31da637accd3fa01000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c21ffffffff0200000000000000002b6a29e104f299b807b6ddf2e65d140b2924eca6033789b658268363632eaabb5e52f7ebea7177e01e68c7d22928010000000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c2102000000000000", + "btc_change": 90000, + "btc_fee": 0, + "rawtransaction": "020000000001015e173379133d5e5f9e374b3582d332ba96589aa399bba3420a13a4133589370401000000160014487c7e696463e9771c5f5ff6b6fef04c141fad69ffffffff0200000000000000002b6a298718e72ac774d60aae8159af76f9400653d5a3a2685a4c7330a568e9c2e151a4c7102155aafc0b2982905f010000000000160014487c7e696463e9771c5f5ff6b6fef04c141fad6902000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "offer_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "status": "valid" } } @@ -4833,7 +4833,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4851,9 +4851,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986344, - "btc_fee": 13656, - "rawtransaction": "02000000000101d584668551844a6942c1e86fd2ae736eac271a9aa24ca0d824ebc4c790e4017900000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000226a20856a6f06693dfb95f545e7359db6b56436e91aa312191082b02c2d559e4a36ada8bc052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "0200000000010178174a9be1c81793228c7b687231adbadf2823a66886740ef25e4702fbab1678000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000226a2052c54132db3e4dc884972be92170f71bc25f1f6be1299c77724db4777d374c2300f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4869,7 +4869,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4892,9 +4892,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949873799, "btc_out": 0, - "btc_change": 4949859557, - "btc_fee": 14242, - "rawtransaction": "020000000001018f3063b08bb5954786450621fa49ff269cf3872659e815cbd890adf94149d47e0200000016001434fffcadf3880bfcaa3dfe48aaac56a887cd2cd2ffffffff0200000000000000002c6a2afba660de8342a8499bced7b205aa4a1c11b60ce295fd1e69fc20b9df49864d4d2e8fc7cb12dacb7f2f88e5dc08270100000016001434fffcadf3880bfcaa3dfe48aaac56a887cd2cd202000000000000", + "btc_change": 4949873799, + "btc_fee": 0, + "rawtransaction": "0200000000010104666fccae7539350ae8603f0058631ae76142e951a39ac436f3371996f3b691020000001600149ec39310f6fb4d103d6ed0f18885b18e2ec1d083ffffffff0200000000000000002c6a2ad8013a3159797a6e0bb9b17202c1ba998537e75265d6eb03c39ec4c456a296935a87acbdd0b1b8429a0d87140927010000001600149ec39310f6fb4d103d6ed0f18885b18e2ec1d08302000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4916,7 +4916,7 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -4924,7 +4924,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -4941,9 +4941,9 @@ "data": "434e545250525459320000000000000001000000182b37176e0000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986286, - "btc_fee": 13714, - "rawtransaction": "020000000001014d81d34c45f2b678b4b4ea74eb5657a4e7804ac4303eeacf2df3fab5e036ecee00000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000236a21da9c5217c1cdcd8ea3d965570f5ff196363729b4c0b5fe96a16f16226674904a916ebc052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "020000000001011ba424ab536378337828e54ae765106060f3b423ae260847d615decf1a8ba0e1000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000236a21e583b07d68582db4b0856f5bbfac41791d2b54e0f77978d13a9cb14d85996a0ef200f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4960,10 +4960,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "transfer_destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "lock": false, "reset": false, @@ -4975,9 +4975,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983747, - "btc_fee": 15707, - "rawtransaction": "02000000000101d598dbfd42c3a20d981841e41ccfdeb733965952c7872f56007ff110e83f813800000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff032202000000000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee0000000000000000236a216dddb3395e2788ec9c67fadaa8f98578252449e049be674691b7399a70574fbf8483b2052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 4999999454, + "btc_fee": 0, + "rawtransaction": "02000000000101cb8a92c262833056554ba5c62d541dd534193c58ceac6131511fbadb5327bdae000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff0322020000000000001600142ba632990d67f3cca92daf90e7f2adc092769a6d0000000000000000236a21e1e00cb022fd6376e109708c21b9bbaeb007455cff1bea64ca17ebf0ff8af9f8a8deef052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5002,16 +5002,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", 1 ], [ "FAIRMINTC", - "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", 2 ] ], @@ -5020,26 +5020,26 @@ "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280aa72a4cae5765676f61961f3e7ff2d08f9ae88ee80d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a4000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002802ba632990d67f3cca92daf90e7f2adc092769a6d80ea59ba6407b6ca374703351c81d67a8077d7ae1e4000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, - "btc_change": 4949785311, - "btc_fee": 20689, - "rawtransaction": "02000000000101e98fa463e9abeb7cc57b7a25f0cb54183810c843f11e8aa48afd86f2ed23477f03000000160014d5b731ccdbdcb6e8c844ab176fe5d98cda3a546affffffff03e803000000000000695121032e99d3652a69c69d5b96f1db8dcbe8f8975da5d4c3bbcee8b944df28cdb6ed672103bc11c0bc7d5e79bd83800d523e52328fd9b02932c0fa779caff0d7dba509b62c210345cdb686a94ab9ae64acc4942c24edcd4bb00ec2b25c348d7aa0e91072ecbcf753aee803000000000000695121033199d3652a69c69d5b85f1d90d619a5c5d9cd382b54dd7894aa72005c54f43f8210334ff4169ca6fb5665f36e59a7af925e03c69a5e8faae1ddcaff0eb351a8d0f4d210345cdb686a94ab9ae64acc4942c24edcd4bb00ec2b25c348d7aa0e91072ecbcf753aedfba072701000000160014d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a02000000000000", + "btc_change": 4949806000, + "btc_fee": 0, + "rawtransaction": "02000000000101285102d98f813087376a795b071a117ae3eaa3a1069ea2a82982b915dfdcb4bf03000000160014ea59ba6407b6ca374703351c81d67a8077d7ae1effffffff03e80300000000000069512103aaccdcfccbfa84645847b4c2103162525de0d0a21ffe1c494163e5ed073183962102a0d8f279711a96ec74bd05b2907c06cc8a6e2cedff2c02a13722a931769b01e0210365d453c37a79d5e00ddcec59562e8eff09504cfc7ff23f9e898a533669433ad953aee80300000000000069512103b5ccdcfccbfa84645854b4c0901ac460c4c9b751d35731e6d1801740c7a3f54821033ab5739328a0f2ebc27732f593491a4d5c14ac9a28821ce1372295dfc91fb827210365d453c37a79d5e00ddcec59562e8eff09504cfc7ff23f9e898a533669433ad953aeb00b082701000000160014ea59ba6407b6ca374703351c81d67a8077d7ae1e02000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "FAIRMINTC", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5051,7 +5051,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -5069,7 +5069,7 @@ "get_asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -5081,9 +5081,9 @@ "data": "434e5452505254590a000000000000000100000000000003e800000000014572d500000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985231, - "btc_fee": 14769, - "rawtransaction": "02000000000101574ff41abcaee2d8651614d54f8223aa4cb4a6d6360da7d9730ece9a96b59e7800000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000356a335494948d88327b7e6961f16e3d74dce10617e053f2a9778561ada81f3688ac9fb601ccaa538feb268d2d1d5536b63fb5e315874fb8052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "020000000001017f1b2a7ca7fc0ee2642f9951e277cfb2efa0e770e336b422faa680f899c65adf000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000356a334640bfe3fef597f9923117619d21a68a89c37e8d3d6af8939de22118c5c9798f3f05d8d1fa377de000daf922e493d9b410554d00f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5105,8 +5105,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5123,19 +5123,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a", + "data": "434e54525052545902000000000000000100000000000003e880ea59ba6407b6ca374703351c81d67a8077d7ae1e", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985524, - "btc_fee": 14476, - "rawtransaction": "02000000000101f96b64b0e484d132b2bb0edcfedb9ec451144bc733ce16da8f5ea6bcb8041bbe00000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000306a2e0efc970f7634cc0927a9167f74983ed20dcf5094366ec7cf45420ecc3a3acdf16c2df16a253b3066aaab68c79d0f74b9052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "020000000001017f386b486e5fb02b7a69d1879d646fac8a3c9011289da06edb2e5809e4073aae000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000306a2ee255510fe85620f0e95192b3dc80e0751862e3b2137136646e6f8af4b1edddccc444dcdeeede8b439d30d859759700f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "memo": null, "quantity_normalized": "0.00001000" } @@ -5145,24 +5145,24 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480d5b731ccdbdcb6e8c844ab176fe5d98cda3a546a07ffff", + "data": "434e5452505254590480ea59ba6407b6ca374703351c81d67a8077d7ae1e07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986286, - "btc_fee": 13714, - "rawtransaction": "02000000000101941b3fdcc12fa2911eee3a16ebaafa514925194cf2e378a83b93985994af817500000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000236a217e58acd8c5761398fc666e2b075860867ff66e49d4e8cc60a98a87e0b5a6c486636ebc052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "0200000000010135e00efa0f2e74c4cb932d2b3fc34d876e79a92706dae6fa2cd7b2ce12b26cc6000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000236a214a35bd7339fa7485c50160790936117ee66844eda23683cd7ea789dfe73bf4631300f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "flags": 7, "memo": "ffff" } @@ -5172,8 +5172,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "quantity": 1000, "skip_validation": false }, @@ -5181,9 +5181,9 @@ "data": "434e5452505254590d00", "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999984641, - "btc_fee": 14359, - "rawtransaction": "02000000000101a67fbe5cd9731d50fd5894c670ef4e0bb9bf022f014d694fc46a6467af9dae1100000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff03e803000000000000160014ec826d3210138c96dc02a5e87e4f229aab192f5600000000000000000c6a0a02c2ef180846d06992d801b6052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 4999999000, + "btc_fee": 0, + "rawtransaction": "020000000001017d9c78270cb6696ac192f19cee9432d32593dec1f282330a149bfb3fd8effc5e000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff03e803000000000000160014c10af52b568889df3b2f913585bbaf3331a6626200000000000000000c6a0a0c4c782b454700e4213b18ee052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5196,7 +5196,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5226,9 +5226,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985465, - "btc_fee": 14535, - "rawtransaction": "02000000000101490c3d34bcc1470bdb0e3652602d3fb9614f7c8e76f1b3facf27b035b5b4128500000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000316a2f8c8f6fb14a2db478883e56c5f74693ee0b3a0c1103acdb5625ebaca0656b3f51bed134c9139468b759caad71a89ccb39b9052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "02000000000101942722be1990e6a848b97b58e5e6085817018958cc4c18478dbf2a58910093d6000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000316a2f457a7f8e0d4cc008f43c6754dccfd58d583df2ec1b57bcc3336d48a0a37b6ef617bc62edbec6785d750ff45097ac4a00f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5263,14 +5263,14 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "divisible": true, "locked": false }, @@ -5280,9 +5280,9 @@ "data": "434e5452505254595b4f50454e464149527c30", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987106, - "btc_fee": 12894, - "rawtransaction": "02000000000101b1e1e2b3f702a6e11f91e2f79c7e6a42bc0be732b5540818b5087a05ff99742c00000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff020000000000000000156a13c5651ecc3e0566dcd8d555f5c8e1f929a99583a2bf052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 5000000000, + "btc_fee": 0, + "rawtransaction": "0200000000010124a627408d73f8f80c36abc7e6b644cc21577b1e958744648b5dee099454df23000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff020000000000000000156a13191f06612718faf60bdcd3a62fbe8717363bd200f2052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5297,7 +5297,7 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -5315,9 +5315,9 @@ "data": "434e545250525459655843507c313030307c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999984626, - "btc_fee": 14828, - "rawtransaction": "02000000000101e16ff3e1a889263d63bf9d8d7483da84f13a66f7115c478a46cc4680902986ce00000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88eeffffffff032202000000000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee0000000000000000146a12f22706a68f924a57af2454976a1e663ee4f0f2b5052a01000000160014aa72a4cae5765676f61961f3e7ff2d08f9ae88ee02000000000000", + "btc_change": 4999999454, + "btc_fee": 0, + "rawtransaction": "02000000000101d43a198a8d174655e8a9c9bca551465ad47c7acacb67ec2931b95ba0c6015824000000001600142ba632990d67f3cca92daf90e7f2adc092769a6dffffffff0322020000000000001600142ba632990d67f3cca92daf90e7f2adc092769a6d0000000000000000146a12c75532ae6a76ecf789dac1ce3dec5d38e848deef052a010000001600142ba632990d67f3cca92daf90e7f2adc092769a6d02000000000000", "unpacked_data": { "message_type": "attach", "message_type_id": 101, @@ -5333,34 +5333,50 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "skip_validation": false }, "name": "detach", - "data": "434e5452505254596662637274317134666532666a6839776574386461736576386537306c656470727536617a387766716c776133", - "btc_in": 4949951000, + "data": "434e5452505254596662637274317139776e7239786764766c6575653266643437677730753464637a663864786e6472373439686a", + "btc_in": 1000, "btc_out": 0, - "btc_change": 4949925505, - "btc_fee": 25495, - "rawtransaction": "020000000001028f3063b08bb5954786450621fa49ff269cf3872659e815cbd890adf94149d47e00000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c21ffffffff27ba40ae95ca14d91e82369b250b0f87255747348825567e392f4ea7c463a7a801000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c21ffffffff020000000000000000376a35fba660de8342a849f1acb4c0719b3b2876d33e84ff95271d715481bb28f52838feeaf0fb7ebfaf0f39fdc3a7a8015e060479cf379d81de092701000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c2102000002000000000000", + "btc_change": 1000, + "btc_fee": 0, + "rawtransaction": "0200000000010104666fccae7539350ae8603f0058631ae76142e951a39ac436f3371996f3b69100000000160014487c7e696463e9771c5f5ff6b6fef04c141fad69ffffffff020000000000000000376a35d8013a3159797a6e61dbd20076f0cba0f359956b1db18f7647fbb1a164c4f2a485e0db8da585dc21846bff7f1265dfd49068e02006e803000000000000160014487c7e696463e9771c5f5ff6b6fef04c141fad6902000000000000", "unpacked_data": { "message_type": "detach", "message_type_id": 102, "message_data": { - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3" + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj" } } } }, + "/v2/utxos//compose/movetoutxo": { + "result": { + "params": { + "source": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "skip_validation": false + }, + "name": "move", + "data": null, + "btc_in": 4949951000, + "btc_out": 546, + "btc_change": 4949950454, + "btc_fee": 0, + "rawtransaction": "0200000000010204666fccae7539350ae8603f0058631ae76142e951a39ac436f3371996f3b69100000000160014487c7e696463e9771c5f5ff6b6fef04c141fad69ffffffff7ab85a5beb9761de8806312ef8ac61db775ec2740cf4f81176d2fb931792a47f01000000160014487c7e696463e9771c5f5ff6b6fef04c141fad69ffffffff0222020000000000001600142ba632990d67f3cca92daf90e7f2adc092769a6df63f0a2701000000160014487c7e696463e9771c5f5ff6b6fef04c141fad6902000002000000000000" + } + }, "/v2/assets": { "result": [ { "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": null, - "issuer": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "owner": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "owner": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "divisible": true, "locked": false, "supply": 0, @@ -5368,16 +5384,16 @@ "first_issuance_block_index": 232, "last_issuance_block_index": 232, "confirmed": true, - "first_issuance_block_time": 1731759883, - "last_issuance_block_time": 1731759883, + "first_issuance_block_time": 1732471727, + "last_issuance_block_time": 1732471727, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": null, - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "owner": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "owner": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": false, "supply": 0, @@ -5385,16 +5401,16 @@ "first_issuance_block_index": 227, "last_issuance_block_index": 229, "confirmed": true, - "first_issuance_block_time": 1731759852, - "last_issuance_block_time": 1731759861, + "first_issuance_block_time": 1732471710, + "last_issuance_block_time": 1732471718, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": null, - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "owner": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "owner": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": false, "supply": 0, @@ -5402,16 +5418,16 @@ "first_issuance_block_index": 225, "last_issuance_block_index": 226, "confirmed": true, - "first_issuance_block_time": 1731759845, - "last_issuance_block_time": 1731759849, + "first_issuance_block_time": 1732471704, + "last_issuance_block_time": 1732471707, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": null, - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "owner": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "owner": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": false, "supply": 0, @@ -5419,16 +5435,16 @@ "first_issuance_block_index": 222, "last_issuance_block_index": 223, "confirmed": true, - "first_issuance_block_time": 1731759834, - "last_issuance_block_time": 1731759838, + "first_issuance_block_time": 1732471694, + "last_issuance_block_time": 1732471697, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "owner": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "owner": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true, "supply": 100000000, @@ -5436,8 +5452,8 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731759825, - "last_issuance_block_time": 1731759830, + "first_issuance_block_time": 1732471685, + "last_issuance_block_time": 1732471689, "supply_normalized": "1.00000000" } ], @@ -5449,8 +5465,8 @@ "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "owner": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "owner": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true, "supply": 100000000, @@ -5458,15 +5474,15 @@ "first_issuance_block_index": 220, "last_issuance_block_index": 221, "confirmed": true, - "first_issuance_block_time": 1731759825, - "last_issuance_block_time": 1731759830, + "first_issuance_block_time": 1732471685, + "last_issuance_block_time": 1732471689, "supply_normalized": "1.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5474,14 +5490,14 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -5489,7 +5505,7 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -5502,7 +5518,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 82599966196, "utxo": null, @@ -5524,9 +5540,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", + "tx_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", "block_index": 179, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5543,7 +5559,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759522, + "block_time": 1732471386, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5571,9 +5587,9 @@ }, { "tx_index": 55, - "tx_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", + "tx_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5590,7 +5606,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5618,9 +5634,9 @@ }, { "tx_index": 62, - "tx_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "tx_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "block_index": 188, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5637,7 +5653,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759628, + "block_time": 1732471504, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5665,9 +5681,9 @@ }, { "tx_index": 64, - "tx_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", + "tx_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", "block_index": 211, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5684,7 +5700,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759770, + "block_time": 1732471617, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5712,9 +5728,9 @@ }, { "tx_index": 56, - "tx_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "tx_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "block_index": 182, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5731,7 +5747,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759596, + "block_time": 1732471470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5764,13 +5780,13 @@ "/v2/assets//matches": { "result": [ { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5784,7 +5800,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759720, + "block_time": 1732471580, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5804,13 +5820,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 56, - "tx1_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5824,7 +5840,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731759596, + "block_time": 1732471470, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5844,13 +5860,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae_90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", + "id": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e_17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", "tx0_index": 53, - "tx0_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 54, - "tx1_hash": "90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5864,7 +5880,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759522, + "block_time": 1732471386, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5884,13 +5900,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 64, - "tx0_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5904,7 +5920,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759845, + "block_time": 1732471704, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5931,20 +5947,20 @@ "result": [ { "block_index": 221, - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "event": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -5952,20 +5968,20 @@ }, { "block_index": 221, - "address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "event": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -5983,12 +5999,12 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxo": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "utxo_address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "utxo": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "utxo_address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6000,16 +6016,16 @@ }, { "block_index": 232, - "address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "event": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "tx_index": 105, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759883, + "block_time": 1732471727, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6021,16 +6037,16 @@ }, { "block_index": 227, - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "event": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "tx_index": 101, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759852, + "block_time": 1732471710, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6042,16 +6058,16 @@ }, { "block_index": 225, - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "event": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "tx_index": 100, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759845, + "block_time": 1732471704, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6063,16 +6079,16 @@ }, { "block_index": 222, - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "df7e51926863f935200f59177a56f6fa34605a0ceb0de52ba6d799fdb91e6d31", + "event": "b81a565d34130e15c2ff2c558b4a67d1a86c6140baef33889756c74dea54131e", "tx_index": 98, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1731759834, + "block_time": 1732471694, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6095,14 +6111,14 @@ "result": [ { "tx_index": 97, - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -6117,20 +6133,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -6145,7 +6161,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731759825, + "block_time": 1732471685, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6157,10 +6173,10 @@ "result": [ { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -6168,7 +6184,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6181,10 +6197,10 @@ }, { "tx_index": 81, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6192,7 +6208,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6205,10 +6221,10 @@ }, { "tx_index": 80, - "tx_hash": "7152c36262483c1a3158cc8ca6ca8015a48ef6d6dfe215c6baf96e2f78d72dd2", + "tx_hash": "46664a9cfa41329ff96717dd72018d4a25e4d514ab236215432ed0754049f268", "block_index": 204, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6216,7 +6232,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1731759720, + "block_time": 1732471580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6229,10 +6245,10 @@ }, { "tx_index": 79, - "tx_hash": "4e0b0d1d6653bb09e7cb5ba278cbbaf31cf78b8ef923f16f9db5c9b65c165da4", + "tx_hash": "a968e027b04e532fb39bb77dceac591ce2203aa31bd75f35a7e3fbf6c7086f49", "block_index": 203, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6240,7 +6256,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731759716, + "block_time": 1732471576, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6253,10 +6269,10 @@ }, { "tx_index": 78, - "tx_hash": "1d181ad9d5f443ff14883cabb1a233f9375191c539b45dde3f4f1462105f91b7", + "tx_hash": "b5702e77a70dde7ce8dfe60935cbe5b45ad0b2972c621ac8841e43d90ed99f9f", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6264,7 +6280,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6283,9 +6299,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6294,7 +6310,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6305,7 +6321,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6322,9 +6338,9 @@ }, { "tx_index": 29, - "tx_hash": "ee92ab0d5921711ab5d6d0562cae2a143cb791eaa2e05368dd3c5b75db9b77f7", + "tx_hash": "9beb2e21666f7f700a792d384b93e23b5d4559b46983887853fe9aac0e38f608", "block_index": 133, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6333,7 +6349,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "origin": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6344,7 +6360,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759402, + "block_time": 1732471256, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6361,9 +6377,9 @@ }, { "tx_index": 30, - "tx_hash": "e5e46de14dd1329e0f58e8a2ab319efe39edfc6d3ea175e9dfb8da7338855b4a", + "tx_hash": "0ba333965785b16989dafa3480ab098ed20accd47e40ab581dde8584a63e1d93", "block_index": 141, - "source": "mfbnuE9fskyyrrdTpM9Pziwid653g8eeCM", + "source": "mq9WAYa6HLxVAZFUhydg7AkREqXvGibH6R", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6371,10 +6387,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a4372c290b4cdd850bee2652d2eb16ac88824b5de5b02571a0bea6b1d6035a01", - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "last_status_tx_hash": "97868bfb6c9e53a34539c22ade4180acd811a2906d7a6fadf91cf23ea628054f", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "last_status_tx_source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -6383,7 +6399,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759431, + "block_time": 1732471289, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6400,18 +6416,18 @@ }, { "tx_index": 33, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6422,7 +6438,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6444,9 +6460,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6455,7 +6471,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6466,7 +6482,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6486,7 +6502,7 @@ "result": [ { "asset": "BURNER", - "address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -6495,7 +6511,7 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -6503,7 +6519,7 @@ }, { "asset": "BURNER", - "address": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "address": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -6512,7 +6528,7 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -6527,27 +6543,27 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6562,7 +6578,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6576,27 +6592,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d6e16ad03594a5baccfab207bca33c7d172e3be26bec0a9d5e6551d3035707b7", + "tx_hash": "3d13c065ac8258d73b06cfc139ac71922110343a6d3f8fdde6ffa0a0568ab9cc", "block_index": 138, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6611,7 +6627,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731759419, + "block_time": 1732471276, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6625,19 +6641,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6645,7 +6661,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6660,7 +6676,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6674,19 +6690,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6694,7 +6710,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6709,7 +6725,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6732,10 +6748,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "tx_index": 96, "block_index": 221, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "BURNER", "asset_parent": null, "asset_longname": null, @@ -6760,7 +6776,7 @@ "commission": 20000000, "paid_quantity": 100000000, "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -6778,22 +6794,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "fairminter_tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "fairminter_tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -6814,9 +6830,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", + "tx_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", "block_index": 179, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6833,7 +6849,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759522, + "block_time": 1732471386, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6861,9 +6877,9 @@ }, { "tx_index": 56, - "tx_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "tx_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "block_index": 182, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6880,7 +6896,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759596, + "block_time": 1732471470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6908,9 +6924,9 @@ }, { "tx_index": 62, - "tx_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "tx_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "block_index": 188, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6927,7 +6943,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759628, + "block_time": 1732471504, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6955,9 +6971,9 @@ }, { "tx_index": 55, - "tx_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", + "tx_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6974,7 +6990,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759712, + "block_time": 1732471562, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7002,9 +7018,9 @@ }, { "tx_index": 58, - "tx_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "tx_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "block_index": 205, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7021,7 +7037,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7054,9 +7070,9 @@ "/v2/orders/": { "result": { "tx_index": 104, - "tx_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "block_index": 231, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -7073,7 +7089,7 @@ "give_price": 1.0, "get_price": 1.0, "confirmed": true, - "block_time": 1731759869, + "block_time": 1732471724, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7084,7 +7100,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, @@ -7103,13 +7119,13 @@ "/v2/orders//matches": { "result": [ { - "id": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655_fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "id": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b_0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "tx0_index": 103, - "tx0_hash": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655", - "tx0_address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "tx0_hash": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b", + "tx0_address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "tx1_index": 104, - "tx1_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", - "tx1_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "tx1_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", + "tx1_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7123,11 +7139,11 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731759869, + "block_time": 1732471724, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, @@ -7150,15 +7166,15 @@ "result": [ { "tx_index": 57, - "tx_hash": "a4e7702b0e7e9908e7a2d0b9ea40713df733dbc8760b7b68c90dc18d36d626d8", + "tx_hash": "df9193811d12bb9878abc31b8da60d0df89a69f3cfd443d00642db334bf6ff4f", "block_index": 182, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "btc_amount": 2000, - "order_match_id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "order_match_id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "status": "valid", "confirmed": true, - "block_time": 1731759596, + "block_time": 1732471470, "btc_amount_normalized": "0.00002000" } ], @@ -7169,9 +7185,9 @@ "result": [ { "tx_index": 56, - "tx_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "tx_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "block_index": 182, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7189,7 +7205,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731759596, + "block_time": 1732471470, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7215,9 +7231,9 @@ }, { "tx_index": 58, - "tx_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "tx_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "block_index": 205, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7235,7 +7251,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1731759725, + "block_time": 1732471584, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7261,9 +7277,9 @@ }, { "tx_index": 53, - "tx_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", + "tx_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", "block_index": 179, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7281,7 +7297,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759522, + "block_time": 1732471386, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7307,9 +7323,9 @@ }, { "tx_index": 55, - "tx_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", + "tx_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", "block_index": 202, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7327,7 +7343,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759712, + "block_time": 1732471562, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7353,9 +7369,9 @@ }, { "tx_index": 62, - "tx_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", + "tx_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", "block_index": 188, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7373,7 +7389,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759628, + "block_time": 1732471504, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7404,13 +7420,13 @@ "/v2/orders///matches": { "result": [ { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7427,7 +7443,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759720, + "block_time": 1732471580, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7447,13 +7463,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 56, - "tx1_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7470,7 +7486,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759596, + "block_time": 1732471470, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7490,13 +7506,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae_90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", + "id": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e_17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", "tx0_index": 53, - "tx0_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 54, - "tx1_hash": "90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7513,7 +7529,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759522, + "block_time": 1732471386, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7533,13 +7549,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 64, - "tx0_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7556,7 +7572,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1731759845, + "block_time": 1732471704, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7582,13 +7598,13 @@ "/v2/order_matches": { "result": [ { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7602,7 +7618,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759720, + "block_time": 1732471580, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7622,13 +7638,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", + "id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", "tx0_index": 55, - "tx0_hash": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 56, - "tx1_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7642,7 +7658,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1731759596, + "block_time": 1732471470, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7662,13 +7678,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae_90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", + "id": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e_17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", "tx0_index": 53, - "tx0_hash": "fa7b7e137e10ff0a7208fbfd91e46f9ce690ac546b13f2a14dad9fb712b599ae", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "e5243e9d8fa3f71cd1fb0fae2fce8b685ca28bd89ef3d800bd3b39d3fe12105e", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 54, - "tx1_hash": "90c74757c45f5e5be68541f808cd80d109b13f1cf4d0ef41a78e73d7d24d2588", - "tx1_address": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "tx1_hash": "17001938d489bc05802d81bd43ff93429932ead162cd7e388ac22538c472d6c7", + "tx1_address": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7682,7 +7698,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759522, + "block_time": 1732471386, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7702,13 +7718,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "tx0_index": 64, - "tx0_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "tx0_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "tx1_index": 58, - "tx1_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "tx1_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7722,7 +7738,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1731759845, + "block_time": 1732471704, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7742,13 +7758,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655_fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "id": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b_0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "tx0_index": 103, - "tx0_hash": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655", - "tx0_address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "tx0_hash": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b", + "tx0_address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "tx1_index": 104, - "tx1_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", - "tx1_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "tx1_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", + "tx1_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7762,11 +7778,11 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1731759869, + "block_time": 1732471724, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, @@ -7807,66 +7823,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "d80fd169ececc1a269897d8b2c109e20e6eda4dcf6187254ebe98270ec1a06d5", + "tx_hash": "722cbca318a965851ea1c8f33db264f2d79550c4dc26a538b1c40b391d33cdd8", "block_index": 112, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 8, - "tx_hash": "9e2fd85327a452b32e7d3798e2eaf9b0b724a80d9c3a9cd89f6c28b792a265d4", + "tx_hash": "1d356c6fde6ecd35883e835f7bd8ab72d0949ea26353caa0a506c919106b7ba2", "block_index": 112, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 7, - "tx_hash": "356e9b90e4a87166cfb99fdae6b8d49c6b3c28d7555afbe71cf50951dda19ad2", + "tx_hash": "c9da6614203538da1f75917ebb1699756e5334df9b761f0f08377853a948fd89", "block_index": 112, - "source": "bcrt1qcafgsw0swjvlkpcryph7lakegzqqs56zpnjqmw", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 6, - "tx_hash": "5430898b9307908a2fde4be7bf8f36d7379489c34ee1e495a9ff5a5d76788ec7", + "tx_hash": "bc4750d9221375dc94726ab9c7f36670ab659e7595bd6cda2942082015118a7d", "block_index": 112, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 5, - "tx_hash": "ceb7ec24a9bbacfd78a5b855640c6a68842e095bf11359ffdcb43dcbc6346db2", + "tx_hash": "26de14d72e12005d79504389abd8eff300693a4941ea5460bd20a707861c6a74", "block_index": 112, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -7878,9 +7894,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7889,7 +7905,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7900,7 +7916,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7917,9 +7933,9 @@ }, { "tx_index": 29, - "tx_hash": "ee92ab0d5921711ab5d6d0562cae2a143cb791eaa2e05368dd3c5b75db9b77f7", + "tx_hash": "9beb2e21666f7f700a792d384b93e23b5d4559b46983887853fe9aac0e38f608", "block_index": 133, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7928,7 +7944,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "origin": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7939,7 +7955,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759402, + "block_time": 1732471256, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7956,9 +7972,9 @@ }, { "tx_index": 30, - "tx_hash": "e5e46de14dd1329e0f58e8a2ab319efe39edfc6d3ea175e9dfb8da7338855b4a", + "tx_hash": "0ba333965785b16989dafa3480ab098ed20accd47e40ab581dde8584a63e1d93", "block_index": 141, - "source": "mfbnuE9fskyyrrdTpM9Pziwid653g8eeCM", + "source": "mq9WAYa6HLxVAZFUhydg7AkREqXvGibH6R", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7966,10 +7982,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a4372c290b4cdd850bee2652d2eb16ac88824b5de5b02571a0bea6b1d6035a01", - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "last_status_tx_hash": "97868bfb6c9e53a34539c22ade4180acd811a2906d7a6fadf91cf23ea628054f", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "last_status_tx_source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "close_block_index": 141, "price": 1.0, "confirmed": true, @@ -7978,7 +7994,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759431, + "block_time": 1732471289, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7995,9 +8011,9 @@ }, { "tx_index": 68, - "tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8006,7 +8022,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8017,11 +8033,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759660, + "block_time": 1732471527, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8034,18 +8050,18 @@ }, { "tx_index": 33, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8056,7 +8072,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8078,9 +8094,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8089,7 +8105,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8100,7 +8116,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8121,19 +8137,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8141,7 +8157,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8156,7 +8172,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8170,19 +8186,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8190,7 +8206,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8205,7 +8221,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8224,20 +8240,20 @@ "result": [ { "tx_index": 42, - "tx_hash": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "tx_hash": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "block_index": 146, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731759450, + "block_time": 1732471310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8258,20 +8274,20 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "tx_hash": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "block_index": 146, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", "confirmed": true, - "block_time": 1731759450, + "block_time": 1732471310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8294,12 +8310,12 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "event": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "tx_index": 42, - "utxo": "03740218f3b2ea810c7a4de4417acf87c0c89d1d300c0ef6ac2328b39bd67c59:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "utxo": "7d63554fb4e3aab575939f3d814e6294a81261caf5cfc79939fa1bb3e9cc9ae9:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "confirmed": true, - "block_time": 1731759450, + "block_time": 1732471310, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8320,27 +8336,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 233, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "block_time": 1731759892 + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "block_time": 1732471742 }, "tx_hash": null, "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 912, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106 }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 911, @@ -8349,14 +8365,14 @@ "asset": "XCP", "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8367,9 +8383,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 910, @@ -8378,9 +8394,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": 0, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8390,24 +8406,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8417,9 +8433,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 908, @@ -8431,15 +8447,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 233, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "block_time": 1731759892 + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "block_time": 1732471742 }, "tx_hash": null, "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } }, "/v2/events/counts": { @@ -8474,16 +8490,16 @@ "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8493,9 +8509,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 907, @@ -8505,12 +8521,12 @@ "asset": "XCP", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8520,9 +8536,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 904, @@ -8532,24 +8548,24 @@ "asset": "MYASSETA", "block_index": 233, "calling_function": "utxo move", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", - "utxo_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "block_time": 1731759892, + "utxo": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", + "utxo_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 }, { "event_index": 862, @@ -8559,39 +8575,39 @@ "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "event": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1731759852, + "block_time": 1732471710, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "block_index": 227, - "block_time": 1731759852 + "block_time": 1732471710 }, { "event_index": 845, "event": "CREDIT", "params": { - "address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "event": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1731759845, + "block_time": 1732471704, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8601,9 +8617,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "block_index": 225, - "block_time": 1731759845 + "block_time": 1732471704 } ], "next_cursor": 819, @@ -8620,27 +8636,27 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8655,7 +8671,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8669,19 +8685,19 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "132594491317fb1e7506ad9b3527f2a09926ebbaf19e0f22c0c1ceeca3c13dff", + "tx_hash": "25becfab15793702ef29f3451e9bc99d13afe0a5e4ad41229360c8112c39b204", "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "dispenser_tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8689,7 +8705,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8704,11 +8720,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759660, + "block_time": 1732471527, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8718,27 +8734,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d6e16ad03594a5baccfab207bca33c7d172e3be26bec0a9d5e6551d3035707b7", + "tx_hash": "3d13c065ac8258d73b06cfc139ac71922110343a6d3f8fdde6ffa0a0568ab9cc", "block_index": 138, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "destination": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "destination": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 233, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "oracle_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "last_status_tx_hash": null, - "origin": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "origin": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8753,7 +8769,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1731759419, + "block_time": 1732471276, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8767,19 +8783,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e3ea61d8f507eaa62798a4b270b5a7575d8c4bc23cfee9608a79cdca3b2cfb46", + "tx_hash": "0216236bdeb45e20946ed76363d08c342b4faf79cc25edc8de905b37e2707c93", "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8787,7 +8803,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8802,7 +8818,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759398, + "block_time": 1732471251, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8816,19 +8832,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a47133bd316fc0af0d233a0573a49c49d799b772241e22d810108bab47ba5ef1", + "tx_hash": "12fab340949f99a8277662f1612b4b2713cd43e209de6c8c28caae7143a12478", "block_index": 131, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "14b8943dbb59abccfc420ba5f0f17e84ae16ff0aa296e3e56e36b7b6d14627e7", + "dispenser_tx_hash": "4e36d1a47e982615f9fc0421c338ffc9ef9a27e29aa7b7a5479b8d814766f0a5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8836,7 +8852,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8851,7 +8867,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1731759394, + "block_time": 1732471247, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8870,10 +8886,10 @@ "result": [ { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -8881,7 +8897,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8894,10 +8910,10 @@ }, { "tx_index": 106, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -8905,11 +8921,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8918,10 +8934,10 @@ }, { "tx_index": 81, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8929,7 +8945,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8942,10 +8958,10 @@ }, { "tx_index": 81, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8953,11 +8969,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8966,10 +8982,10 @@ }, { "tx_index": 81, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8977,11 +8993,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -8996,14 +9012,14 @@ "result": [ { "tx_index": 105, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "issuer": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "transfer": false, "callable": false, "call_date": 0, @@ -9018,20 +9034,20 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731759883, + "block_time": 1732471727, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 102, - "tx_hash": "127ab246daca375dbe5a73b1b0c249805dc1d43607fe50db00eb8e2697b7f16d", + "tx_hash": "c12cbcc15ac08a9dbd21a3338455e0d4a0e7e7e899dcd6cd9932be0d349dfb16", "msg_index": 0, "block_index": 229, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -9046,20 +9062,20 @@ "fair_minting": false, "asset_events": "change_description", "confirmed": true, - "block_time": 1731759861, + "block_time": 1732471718, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -9074,20 +9090,20 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731759857, + "block_time": 1732471714, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -9102,20 +9118,20 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731759852, + "block_time": 1732471710, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "transfer": false, "callable": false, "call_date": 0, @@ -9130,7 +9146,7 @@ "fair_minting": false, "asset_events": "close_fairminter", "confirmed": true, - "block_time": 1731759849, + "block_time": 1732471707, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9141,14 +9157,14 @@ "/v2/issuances/": { "result": { "tx_index": 105, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "issuer": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "transfer": false, "callable": false, "call_date": 0, @@ -9163,7 +9179,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1731759883, + "block_time": 1732471727, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -9172,16 +9188,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "block_index": 190, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731759636, + "block_time": 1732471513, "fee_paid_normalized": "0.00600000" } ], @@ -9192,16 +9208,16 @@ "result": [ { "tx_index": 65, - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "block_index": 190, - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1731759636, + "block_time": 1732471513, "fee_paid_normalized": "0.00600000" } ], @@ -9212,9 +9228,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "cdf07448dc24f093a5cdcd94d4ad848a03dcbef80993b0bdb2827eff3187cc44", + "tx_hash": "78ecf23865e70f4a5a49ac9bba675dab6750ffbcc06338d609b381a44d17ad5d", "block_index": 129, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9222,14 +9238,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731759386, + "block_time": 1732471238, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "8430ab16e38654e66a0dabd5f795ab64d8fad97f4f1acfdfa087b1d886ef3890", + "tx_hash": "4a8b2966e99df9a216be644fb270e01e52b54346404238870f42123cf0875ce3", "block_index": 128, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9237,7 +9253,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731759383, + "block_time": 1732471234, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9247,9 +9263,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "cdf07448dc24f093a5cdcd94d4ad848a03dcbef80993b0bdb2827eff3187cc44", + "tx_hash": "78ecf23865e70f4a5a49ac9bba675dab6750ffbcc06338d609b381a44d17ad5d", "block_index": 129, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9257,17 +9273,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1731759386, + "block_time": 1732471238, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "tx_index": 105, "block_index": 232, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -9292,7 +9308,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759883, + "block_time": 1732471727, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9301,10 +9317,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "tx_index": 101, "block_index": 228, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "PREMINT", "asset_parent": null, "asset_longname": null, @@ -9329,7 +9345,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759857, + "block_time": 1732471714, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -9338,10 +9354,10 @@ "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "tx_index": 100, "block_index": 226, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "STARTNOW", "asset_parent": null, "asset_longname": null, @@ -9366,7 +9382,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759849, + "block_time": 1732471707, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -9375,10 +9391,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "332d2005e844e1bb7ac90168c00bed3e5bb5abdcb9790da5c4a434351e670e4c", + "tx_hash": "5e84caa85743ad3220e5d74b0913d492353fe43ccd64f8afc1c692d54a2cd8ec", "tx_index": 99, "block_index": 224, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": null, "asset_parent": null, "asset_longname": null, @@ -9403,13 +9419,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759842 + "block_time": 1732471700 }, { - "tx_hash": "df7e51926863f935200f59177a56f6fa34605a0ceb0de52ba6d799fdb91e6d31", + "tx_hash": "b81a565d34130e15c2ff2c558b4a67d1a86c6140baef33889756c74dea54131e", "tx_index": 98, "block_index": 223, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "asset": "EXPANSIVE", "asset_parent": null, "asset_longname": null, @@ -9434,7 +9450,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1731759838, + "block_time": 1732471697, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9449,22 +9465,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "fairminter_tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "fairminter_tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -9473,22 +9489,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "aa8689ffeae543a7440d01dd7648ede22cc0360a156ac3db7b49c8352216335a", + "tx_hash": "e49542851f72ff6bce45165971be045878d5dcce53049d21356862407f94f637", "tx_index": 95, "block_index": 219, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "fairminter_tx_hash": "d079aa10f033480888690b6f982f1c32c1b5bfe2f9414447d93e5fc0e0408398", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "fairminter_tx_hash": "e174017ac538e43065503bcbeb09f512404e8e6ddc868481cdb1ffdf828c8f07", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", "confirmed": true, - "block_time": 1731759821, + "block_time": 1732471681, "asset_info": { "asset_longname": null, "description": "My super asset LOCKDESC", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -9497,22 +9513,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "ee4b833c7321101530a7931a9fe59d1920ba85bd41cf25c3ea719bf6c72f3c9a", + "tx_hash": "86f2efe3219d2c607359e5f4678ef13fb7a1385bce5e72c3e5e2e2093787eafc", "tx_index": 91, "block_index": 215, - "source": "bcrt1qqqs0annxtvtvpp7cmqt7mahmzxjfc0h689jguv", - "fairminter_tx_hash": "ec11d6dfbf9707efd14119d959ed5429c1e9d4e60852d6b8ddb031eda3148090", + "source": "bcrt1qk838gweltd7zurllg34r64jmky48yayd0lqxws", + "fairminter_tx_hash": "8e1236071b9fd13386359a8f2867a45a1b21a8f1fc5b43f53710077eb4d9e881", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759796, + "block_time": 1732471655, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qqqs0annxtvtvpp7cmqt7mahmzxjfc0h689jguv", + "issuer": "bcrt1qk838gweltd7zurllg34r64jmky48yayd0lqxws", "divisible": true, "locked": false }, @@ -9521,22 +9537,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "d8251537ada7cac543c912d4fba6a7a834092803321eabfa848bb0f089f787f1", + "tx_hash": "660976e4b7c607bffd972e3a48292ad06f2372cbf1be035e716bb697746dc064", "tx_index": 46, "block_index": 150, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "22e15bb976dafae6b5d6550963b709441d90a36b705dd7d122c0d6e74aca9ee1", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "990ca2dd84bda5e1b719c0b132959c88c3da3bbfb91432c6b8ae4279aaba8372", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759465, + "block_time": 1732471336, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -9545,22 +9561,22 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "63d771bb9e4591c00a7f9a0ae2285b22bc085479e10032da2feaec24b2113a89", + "tx_hash": "9baa83e2249df86e3e722a1b6966513e15c112290150bc2fdb0a0c47f6653660", "tx_index": 45, "block_index": 149, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", - "fairminter_tx_hash": "22e15bb976dafae6b5d6550963b709441d90a36b705dd7d122c0d6e74aca9ee1", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", + "fairminter_tx_hash": "990ca2dd84bda5e1b719c0b132959c88c3da3bbfb91432c6b8ae4279aaba8372", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1731759461, + "block_time": 1732471322, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -9574,22 +9590,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, "block_index": 221, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "fairminter_tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "fairminter_tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", "confirmed": true, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -9600,14 +9616,23 @@ }, "/v2/bitcoin/addresses/utxos": { "result": [ + { + "vout": 0, + "height": 199, + "value": 546, + "confirmations": 35, + "amount": 5.46e-06, + "txid": "000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27", + "address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l" + }, { "vout": 1, "height": 230, "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655", - "address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x" + "txid": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b", + "address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l" }, { "vout": 1, @@ -9615,17 +9640,8 @@ "value": 546, "confirmations": 36, "amount": 5.46e-06, - "txid": "b41a26f64b443be03944117f8b79f89ec69cb05e0c4a3e981aad5ce103d4298f", - "address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x" - }, - { - "vout": 0, - "height": 199, - "value": 546, - "confirmations": 35, - "amount": 5.46e-06, - "txid": "cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec", - "address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x" + "txid": "d85302093d4204e207e303bd18bd423920cda9f17c1452670a34b122d87d876d", + "address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l" } ], "next_cursor": null, @@ -9634,28 +9650,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "1ff8e92f971f7777eb9a4a98bc29f717f2d7c9ca26e4ae7d1d4d21bca8afe86c" + "tx_hash": "281d38ceb46c10e8ffbecbe3f7447be927d1f7ee7add35ca49499d35dadd874f" }, { - "tx_hash": "f80e2b4f7c70249f3bc07963253b64182f8155f3923bb25d6afc6d7a8cbc4b97" + "tx_hash": "83a6db2bcfb35cf906f6b74e856148f361b19c0e00caefad290907f5e7c24f5b" }, { - "tx_hash": "902ef8eafafcc38afc8da2b4c39616e9e8720b9eac1db3bf333d913ed7021e9f" + "tx_hash": "40c0d96b2baf06c24f67921db9ae6c91c484ab49c85faf0c4c8a280bd8f5f96a" }, { - "tx_hash": "40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3" + "tx_hash": "6bbbd982c42eaa0d753c9bfe9886e062682c09fc2d6bb3a9c3d1e6c7b0c49b8b" }, { - "tx_hash": "ceb7ec24a9bbacfd78a5b855640c6a68842e095bf11359ffdcb43dcbc6346db2" + "tx_hash": "19e763e7ae1a4a1d67f3f95e2cc197a217280944ee50250a99ae015ef97ab496" }, { - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9" + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba" }, { - "tx_hash": "0889a8ec097c98a20360274475e4768d51f3206bd9a0fc20ce65ebfa6f1a64fb" + "tx_hash": "6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf" }, { - "tx_hash": "28186d391058abb6c30a1c2401a2c59bc41d6697ccd95f2fc81b7cca47b325fd" + "tx_hash": "87348723aa5b961b5c92923ed8590b6a863c5e1102061f773f023464ee9061f2" } ], "next_cursor": null, @@ -9663,8 +9679,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 8, - "tx_hash": "c9fe515c9e6f4f91c7e6011c561860f2b9aaee910f1b2e9a41d17eee03b8d4ba" + "block_index": 6, + "tx_hash": "68d80b14daf7c485f761162379cabce096410c001c9ec578991415d74d4eb904" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9675,7 +9691,7 @@ "value": 546, "confirmations": 35, "amount": 5.46e-06, - "txid": "cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec" + "txid": "000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27" }, { "vout": 1, @@ -9683,7 +9699,7 @@ "value": 4949928908, "confirmations": 4, "amount": 49.49928908, - "txid": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655" + "txid": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b" }, { "vout": 1, @@ -9691,17 +9707,17 @@ "value": 546, "confirmations": 36, "amount": 5.46e-06, - "txid": "b41a26f64b443be03944117f8b79f89ec69cb05e0c4a3e981aad5ce103d4298f" + "txid": "d85302093d4204e207e303bd18bd423920cda9f17c1452670a34b122d87d876d" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02bb2c827af0f9c803218dca38edd23026f3a932718ae03e46b4872f996e9f6e63" + "result": "02771d130074731566972247f529b28bbb1af882c008d7d8b7dc4c7d46a1679c05" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010169cfa33c0e9ea43197afb694c08cf21a3ad42952874fa87c66d6128c7b46dbd90100000000ffffffff03e803000000000000160014c33693744d3e4864a4a2fc2f4ecc5782e0e22c2100000000000000000c6a0a0a13e87842bcd0d71598871409270100000016001434fffcadf3880bfcaa3dfe48aaac56a887cd2cd202473044022068bede892e108f51edf590145cf9956e17dcadcbd58a01d4aa62c2718beefed10220773df1914b6bb79d608ef0d310238613b9a1137d55db7340087d404dde49e92c01210242a92200990e8361ee3fbe80ec0742492f2c25bf7c781807faeb3d9fbeed2c7000000000" + "result": "0200000000010157a837a13ec1d51e9335795791ec5d32c9614e12d87589d4a01f5ee6f084559e0100000000ffffffff03e803000000000000160014487c7e696463e9771c5f5ff6b6fef04c141fad6900000000000000000c6a0ae7c0bb85059f5f1d0e1087140927010000001600149ec39310f6fb4d103d6ed0f18885b18e2ec1d0830247304402206c9bb3d5571c8ff482aa6a4a8a288cd2f7ecd746846f7f39203b8ebaa0005b2a022054d9dd8827db254d31480399b27bcb9b543aaceed332494222e8951091657b110121033b331e827405c83d8732d8a5b536df3d06a2430d2212c6a3edf36c626650579e00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58611 @@ -9774,27 +9790,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107 }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "quantity": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "status": "valid", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -9805,22 +9821,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "CREDIT", "params": { - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "XCP", "block_index": 233, "calling_function": "send", - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9830,22 +9846,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "address": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "XCP", "block_index": 233, - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9855,30 +9871,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731759896.8037238, + "block_time": 1732471746.555061, "btc_amount": 0, - "data": "0200000000000000010000000000002710803bb00e2d650a4fcfd7f4de6130e3750c94c05cb3", + "data": "020000000000000001000000000000271080eacd611b01eb84768f6f129dd086a1a176f08e12", "destination": "", "fee": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, - "utxos_info": "077c4d29677881ff21976ec8bf3cb16fb25ddcc22b48423c690fe0ee9a71c3bf:1 3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4:1 2 ", + "utxos_info": "a00b00d3e4ce91232e5198d2e63b5bff553720e35cf95b4eddf91e2932b3d664:1 e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "asset_info": { "asset_longname": null, @@ -9892,7 +9908,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 } ], "next_cursor": null, @@ -9901,19 +9917,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "CREDIT", "params": { - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "XCP", "block_index": 233, "calling_function": "send", - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9923,7 +9939,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 } ], "next_cursor": null, @@ -9932,27 +9948,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107 }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "destination": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "quantity": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "status": "valid", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -9963,22 +9979,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "CREDIT", "params": { - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "asset": "XCP", "block_index": 233, "calling_function": "send", - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9988,22 +10004,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "address": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "asset": "XCP", "block_index": 233, - "event": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "event": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10013,30 +10029,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 }, { - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1731759896.8037238, + "block_time": 1732471746.555061, "btc_amount": 0, - "data": "0200000000000000010000000000002710803bb00e2d650a4fcfd7f4de6130e3750c94c05cb3", + "data": "020000000000000001000000000000271080eacd611b01eb84768f6f129dd086a1a176f08e12", "destination": "", "fee": 10000, - "source": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", - "tx_hash": "3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", + "tx_hash": "e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa", "tx_index": 107, - "utxos_info": "077c4d29677881ff21976ec8bf3cb16fb25ddcc22b48423c690fe0ee9a71c3bf:1 3c6f3fe9f875af517875acf2bb5b43066119f41d034b849aa9d4127ec273bff4:1 2 ", + "utxos_info": "a00b00d3e4ce91232e5198d2e63b5bff553720e35cf95b4eddf91e2932b3d664:1 e9e4593e4892822a8db73351ff9e097cf3883118c764df467fe00136d8301daa:1 2 ", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "memo": null, "asset_info": { "asset_longname": null, @@ -10050,7 +10066,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1731759896.8037238 + "timestamp": 1732471746.555061 } ], "next_cursor": null, @@ -10072,15 +10088,15 @@ "event_index": 900, "event": "NEW_BLOCK", "params": { - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", "block_index": 233, - "block_time": 1731759892, + "block_time": 1732471742, "difficulty": 545259519, - "previous_block_hash": "3142fcaa7982b3587d319b255e58ddfa8bce01f3ca3ed52d4922ad19f5d2f8be" + "previous_block_hash": "1d21ca7974ffea8014221505cc5322b1b35eafe7837938e9abc7bd3953a7e236" }, "tx_hash": null, "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 892, @@ -10092,17 +10108,17 @@ "event_index": 901, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1a716e943b60afa54a0d58afec00afee71d6af3e0b07538dc82628f597e40e83", + "block_hash": "55966ec7ecadc6fbb607e82b9f59843b3b9b3164e72e1a5abbb655e8066e7fa5", "block_index": 233, - "block_time": 1731759892, + "block_time": 1732471742, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "fee": 0, - "source": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "source": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "utxos_info": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1 7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0 3 1", + "utxos_info": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1 91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0 3 1", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10112,9 +10128,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 893, @@ -10128,16 +10144,16 @@ "params": { "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "destination": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "out_index": 0, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 579, @@ -10150,15 +10166,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 233, - "ledger_hash": "7bf91c0850daf53bd2bf5db8bf703a055d4de3e9c84b62118b5feecf8e732c23", - "messages_hash": "eeab5a70f05876c1187e4a95f9e3410cc396d45097c604231d3c6174bbf847dd", + "ledger_hash": "f12ad50e0eb068cac053c8e15563dbf067d95436577e331e0aec2633e9f42ede", + "messages_hash": "76a3857acb22432b8afe88b27454f31bc9f11261d62a45efaf576c41b788e1f3", "transaction_count": 1, - "txlist_hash": "7379a31c87b851ae753a197b92308005eafe621fd7a755cbe8a9308e328087fc", - "block_time": 1731759892 + "txlist_hash": "2297793636b90175d40187342ba1cfa49969a2f59c239cb73eae3144a428e785", + "block_time": 1732471742 }, "tx_hash": null, "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 899, @@ -10171,12 +10187,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106 }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 898, @@ -10192,12 +10208,12 @@ "address": null, "asset": "XCP", "block_index": 233, - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 2000000000, "tx_index": 106, - "utxo": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", - "utxo_address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", - "block_time": 1731759892, + "utxo": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", + "utxo_address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10207,9 +10223,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 903, @@ -10221,16 +10237,16 @@ "event_index": 909, "event": "CREDIT", "params": { - "address": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "address": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "asset": "XCP", "block_index": 233, "calling_function": "dispense", - "event": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "event": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10240,9 +10256,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 907, @@ -10256,26 +10272,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "memo": null, "quantity": 1000, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "status": "valid", - "tx_hash": "dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc", + "tx_hash": "9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9", "tx_index": 77, - "block_time": 1731759697, + "block_time": 1732471559, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "dadb3b4cd46d498f3676fc9043dc7f89fa200844544d233ca1231488638f23bc", + "tx_hash": "9ce490822760fcbedcf1bbafb273da5b5c1765200f4f328fb3d685db6a18c4f9", "block_index": 201, - "block_time": 1731759697 + "block_time": 1732471559 } ], "next_cursor": 515, @@ -10289,15 +10305,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "status": "valid", - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "tx_index": 81, - "block_time": 1731759725, + "block_time": 1732471584, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10307,9 +10323,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7f4723edf286fd8aa48a1ef143c810381854cbf0257a7bc57cebabe963a48fe9", + "tx_hash": "bfb4dcdf15b98229a8a29e06a1a3eae37a111a075b796a378730818fd9025128", "block_index": 205, - "block_time": 1731759725 + "block_time": 1732471584 } ], "next_cursor": 697, @@ -10332,20 +10348,20 @@ "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qajpx6vsszwxfdhqz5h58unezn243jt6k7gxqk6", + "destination": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", + "source": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", "status": "valid", - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "tx_index": 65, - "block_time": 1731759636, + "block_time": 1732471513, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "500c7a72ba868c3cc666db01d0fae64009c7fc4434df4e4764899b50e90bb3c9", + "tx_hash": "6771504dbc01936454717fb928fab638b208198d0dc5b25dff3df7710f55e8ba", "block_index": 190, - "block_time": 1731759636 + "block_time": 1732471513 } ], "next_cursor": null, @@ -10362,15 +10378,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "status": "valid", - "tx_hash": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "tx_hash": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "tx_index": 42, - "block_time": 1731759450, + "block_time": 1732471310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -10384,9 +10400,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "fbb56959722b8067b7a868c323f7696c9920eca7136a47a6e9de8a5d203ffbb6", + "tx_hash": "1d9a594a048d15b05aaf3fe206ea1e27d72d3c472d0fd6c2e9a513e9928a3453", "block_index": 146, - "block_time": 1731759450 + "block_time": 1732471310 } ], "next_cursor": null, @@ -10407,11 +10423,11 @@ "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 232, - "block_time": 1731759883 + "block_time": 1732471727 }, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "block_index": 232, - "block_time": 1731759883 + "block_time": 1732471727 } ], "next_cursor": 860, @@ -10434,22 +10450,22 @@ "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "issuer": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": "valid", "transfer": false, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "tx_index": 105, - "block_time": 1731759883, + "block_time": 1732471727, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "block_index": 232, - "block_time": 1731759883 + "block_time": 1732471727 } ], "next_cursor": 875, @@ -10464,16 +10480,16 @@ "asset": "PREMINT", "block_index": 228, "quantity": 50, - "source": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "source": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c", + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd", "tx_index": 101, - "block_time": 1731759857, + "block_time": 1732471714, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": false }, @@ -10481,7 +10497,7 @@ }, "tx_hash": null, "block_index": 228, - "block_time": 1731759857 + "block_time": 1732471714 } ], "next_cursor": 817, @@ -10506,11 +10522,11 @@ "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": "open", - "tx_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "tx_index": 104, - "block_time": 1731759869, + "block_time": 1732471724, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10521,7 +10537,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, @@ -10534,9 +10550,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "block_index": 231, - "block_time": 1731759869 + "block_time": 1732471724 } ], "next_cursor": 881, @@ -10554,24 +10570,24 @@ "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655_fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "id": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b_0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "match_expire_index": 251, "status": "pending", - "tx0_address": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "tx0_address": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "tx0_block_index": 230, "tx0_expiration": 21, - "tx0_hash": "f2bf03660a290dd3f1b9b55dff46fca41bb7fe7c322e9255a32f061889935655", + "tx0_hash": "d015f0c5bda60c8ebff2576e024571e464d04941d6a63575da519740b35e9a8b", "tx0_index": 103, - "tx1_address": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "tx1_address": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "tx1_block_index": 231, "tx1_expiration": 21, - "tx1_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx1_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "tx1_index": 104, - "block_time": 1731759869, + "block_time": 1732471724, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, @@ -10586,9 +10602,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "block_index": 231, - "block_time": 1731759869 + "block_time": 1732471724 } ], "next_cursor": 676, @@ -10605,13 +10621,13 @@ "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "fad3cc7a63da31ad178a06f77844ceb2607f39b5805756fad3e24782e06b9411", + "tx_hash": "0437893513a4130a42a3bb99a39a5896ba32d382354b379e5f5e3d137933175e", "block_index": 231, - "block_time": 1731759869 + "block_time": 1732471724 } ], "next_cursor": 887, @@ -10624,11 +10640,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913" + "tx_hash": "80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac" }, - "tx_hash": "a4e7702b0e7e9908e7a2d0b9ea40713df733dbc8760b7b68c90dc18d36d626d8", + "tx_hash": "df9193811d12bb9878abc31b8da60d0df89a69f3cfd443d00642db334bf6ff4f", "block_index": 182, - "block_time": 1731759596 + "block_time": 1732471470 } ], "next_cursor": null, @@ -10640,13 +10656,13 @@ "event_index": 844, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "order_match_id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", + "id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "order_match_id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", "status": "expired" }, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "block_index": 225, - "block_time": 1731759845 + "block_time": 1732471704 } ], "next_cursor": 670, @@ -10660,18 +10676,18 @@ "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "order_match_id": "b17324413a9c967ce8062f5ad0ec364e37bef134409aa9e23407ffc64c01c0bd_96f9d1f871b8d28c4846c9ba28fd79ecfb924c89485a9daad13134d3bcc25913", - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "destination": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "order_match_id": "3fa2e10c67d9a2690600d35817bb0b9ce62cc526fcc3bdd8e887cc7a17b6ee96_80d9c32ee8fa2cda15f11e6548c14e787992dfaf7ba7daa9dd4a4310e39bd3ac", + "source": "bcrt1qafvm5eq8km9rw3crx5wgr4n6spma0ts7p64sxa", "status": "valid", - "tx_hash": "a4e7702b0e7e9908e7a2d0b9ea40713df733dbc8760b7b68c90dc18d36d626d8", + "tx_hash": "df9193811d12bb9878abc31b8da60d0df89a69f3cfd443d00642db334bf6ff4f", "tx_index": 57, - "block_time": 1731759596, + "block_time": 1732471470, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "a4e7702b0e7e9908e7a2d0b9ea40713df733dbc8760b7b68c90dc18d36d626d8", + "tx_hash": "df9193811d12bb9878abc31b8da60d0df89a69f3cfd443d00642db334bf6ff4f", "block_index": 182, - "block_time": 1731759596 + "block_time": 1732471470 } ], "next_cursor": null, @@ -10684,16 +10700,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "7abe5a12f68b8565bd7ef145549ae839263bffedabdf8b8ae1dcbc8944bcdadf", - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "offer_hash": "b4ff0f606f916352f2ec09f2f45b3b4cbe90822f520eeac28d5fe83cb4369b94", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "status": "valid", - "tx_hash": "df2e66655e964422f4b0223eca9aa16b91599e9fd65e295f93aa27130087051a", + "tx_hash": "e61f6e9411bb240a956761f3c635bc289eb4f317839a57f636824ce2202eb086", "tx_index": 63, - "block_time": 1731759628 + "block_time": 1732471504 }, - "tx_hash": "df2e66655e964422f4b0223eca9aa16b91599e9fd65e295f93aa27130087051a", + "tx_hash": "e61f6e9411bb240a956761f3c635bc289eb4f317839a57f636824ce2202eb086", "block_index": 188, - "block_time": 1731759628 + "block_time": 1732471504 } ], "next_cursor": null, @@ -10706,13 +10722,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf", - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "block_time": 1731759770 + "order_hash": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "block_time": 1732471617 }, - "tx_hash": "b75363013be0c3c3bee6863c8af4dc81b5db15c69b4daec18b3195eea23cd815", + "tx_hash": "3d55dcd93065b249f036b9e507ba6777bc16754049c2a286bf7ff7b07db11950", "block_index": 211, - "block_time": 1731759770 + "block_time": 1732471617 } ], "next_cursor": 690, @@ -10725,14 +10741,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "9f0e82997bc6646c40fb5a4f2ab59b15c95549e90dc2b0f2b4c5a243cb7f5dbf_40f51535317bfbd19fa0bc28a6d5ebab6731785ed1417cada05f4b4febf3faa3", - "tx0_address": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "tx1_address": "bcrt1q8wcqutt9pf8ul4l5mesnpcm4pj2vqh9nnxnwx3", - "block_time": 1731759845 + "order_match_id": "feb1f3b03a589503ae2fc18e6f021c95d9a6d3bffdc1a002253ea2f8bc4e8775_6323e037f33c6c20110d502b4ba5fe3a0f240a5466c923e1c9a87b3395eb9fcf", + "tx0_address": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "tx1_address": "bcrt1qatxkzxcpawz8drm0z2wapp4p59m0prsjgmmr5s", + "block_time": 1732471704 }, - "tx_hash": "27e0cbf1662d2afbd891f81a08473e27086a9a88ec1fe6b35c8a61056a3f3580", + "tx_hash": "3c7ca868f52225cb8ee000242b0e2504bdcf55c6db922b251c9889f754ab5b1b", "block_index": 225, - "block_time": 1731759845 + "block_time": 1732471704 } ], "next_cursor": 673, @@ -10751,17 +10767,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "origin": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "satoshirate": 1, - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "status": 0, - "tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "tx_index": 68, - "block_time": 1731759657, + "block_time": 1732471524, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", + "issuer": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", "divisible": true, "locked": false }, @@ -10770,9 +10786,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "6cb9122c80da83f04416bdd53e3e11e9eb368b147dfff0c0367c81f0531160ce", + "tx_hash": "fa085facc22092be8975e5cc83b8dffb8008c5d75f485a6589923d4ce43147a5", "block_index": 193, - "block_time": 1731759657 + "block_time": 1732471524 } ], "next_cursor": 254, @@ -10787,9 +10803,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": 0, - "tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", + "tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10799,9 +10815,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 581, @@ -10815,13 +10831,13 @@ "params": { "asset": "XCP", "block_index": 135, - "destination": "mfbnuE9fskyyrrdTpM9Pziwid653g8eeCM", + "destination": "mq9WAYa6HLxVAZFUhydg7AkREqXvGibH6R", "dispense_quantity": 10, - "dispenser_tx_hash": "e5e46de14dd1329e0f58e8a2ab319efe39edfc6d3ea175e9dfb8da7338855b4a", - "source": "bcrt1q4fe2fjh9wet8dasev8e70ledpru6az8wfqlwa3", - "tx_hash": "f711ee279041a080b13414535c79b936c22f56fd59e11e327f3ec8eefd765e8d", + "dispenser_tx_hash": "0ba333965785b16989dafa3480ab098ed20accd47e40ab581dde8584a63e1d93", + "source": "bcrt1q9wnr9xgdvleue2fd47gw0u4dczf8dxndr749hj", + "tx_hash": "b3b7c1979ff4bc03f1005d66ae7bf8537e271a55c935797c26869d7eea5c68ce", "tx_index": 31, - "block_time": 1731759408, + "block_time": 1732471263, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10831,9 +10847,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "f711ee279041a080b13414535c79b936c22f56fd59e11e327f3ec8eefd765e8d", + "tx_hash": "b3b7c1979ff4bc03f1005d66ae7bf8537e271a55c935797c26869d7eea5c68ce", "block_index": 135, - "block_time": 1731759408 + "block_time": 1732471263 } ], "next_cursor": null, @@ -10848,14 +10864,14 @@ "asset": "XCP", "block_index": 233, "btc_amount": 1000, - "destination": "bcrt1qxnllet0n3q9le23aley24tzk4zru6txjycud2j", + "destination": "bcrt1qnmpexy8kldx3q0tw6rcc3pd33chvr5yr6m47mf", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "91222d0d6899ac5ac12dac0ca5156866a8b0713bd1db33ab8d7f0a535905fd95", - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "dispenser_tx_hash": "a36895400f11edb7ac66372490ab4361c746ba305027cba3951bf056c7b7224c", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10866,9 +10882,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 582, @@ -10883,19 +10899,19 @@ "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "cdf07448dc24f093a5cdcd94d4ad848a03dcbef80993b0bdb2827eff3187cc44", + "tx_hash": "78ecf23865e70f4a5a49ac9bba675dab6750ffbcc06338d609b381a44d17ad5d", "tx_index": 25, "value": 66600.0, - "block_time": 1731759386, + "block_time": 1732471238, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "cdf07448dc24f093a5cdcd94d4ad848a03dcbef80993b0bdb2827eff3187cc44", + "tx_hash": "78ecf23865e70f4a5a49ac9bba675dab6750ffbcc06338d609b381a44d17ad5d", "block_index": 129, - "block_time": 1731759386 + "block_time": 1732471238 } ], "next_cursor": 195, @@ -10926,12 +10942,12 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "start_block": 0, "status": "open", - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "tx_index": 105, - "block_time": 1731759883, + "block_time": 1732471727, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10939,9 +10955,9 @@ "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "a8a763c4a74e2f397e56258834475725870f0b259b36821ed914ca95ae40ba27", + "tx_hash": "7fa4921793fbd27611f8f40c74c25e77db61acf82e310688de6197eb5b5ab87a", "block_index": 232, - "block_time": 1731759883 + "block_time": 1732471727 } ], "next_cursor": 859, @@ -10954,11 +10970,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c228a6aed6f82f925a6268e78e9d29e6ba0202634c5c6e43458f9ed91937f41c" + "tx_hash": "243ba1100199776ad16c34ba69ef12fdbb558b434c688c3725f4504e16f265dd" }, "tx_hash": null, "block_index": 228, - "block_time": 1731759857 + "block_time": 1732471714 } ], "next_cursor": 854, @@ -10974,17 +10990,17 @@ "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "90dee9fcb17ca37985c5608467f261c86f662307e0e927a7df4b9d046f62c79b", + "fairminter_tx_hash": "4abb2f28a5b94e205b4f7ccac7b296290002af836fc93dbf3853a54ae7ab27a0", "paid_quantity": 100000000, - "source": "bcrt1qcvmfxazd8eyxff9zlsh5anzhstswytppx0d7cu", + "source": "bcrt1qfp78u6tyv05hw8zltlmtdlhsfs2plttfpulrkk", "status": "valid", - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "tx_index": 97, - "block_time": 1731759830, + "block_time": 1732471689, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qymjc0dwux2pfhnwj9uw3d4yn480wz9gpxmfnjs", + "issuer": "bcrt1qzj7f9f3xh9hakux3x3mhyyuu4059rhwhw6ackg", "divisible": true, "locked": true }, @@ -10992,9 +11008,9 @@ "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "c76bc43ce938bee165bd1a1b3ccf32567a0dc800998df31be006cdce191ce1b1", + "tx_hash": "90c661db51190f10da10e98b791fbd57f9fa0b00ce36d4ffe16fbe399a10f8b2", "block_index": 221, - "block_time": 1731759830 + "block_time": 1732471689 } ], "next_cursor": 801, @@ -11008,28 +11024,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec:0", + "destination": "000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "source": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "status": "valid", - "tx_hash": "cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec", + "tx_hash": "000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27", "tx_index": 75, - "block_time": 1731759690, + "block_time": 1732471550, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cb0d1e4060a162d584a28d148df3fb991f6961b481388be69b7da8cae37117ec", + "tx_hash": "000bb22bd9a1315b1f988f7f2cc4efe8791f4b2112f5b3cae85d6cdf8e8a3f27", "block_index": 199, - "block_time": 1731759690 + "block_time": 1732471550 } ], "next_cursor": 598, @@ -11043,28 +11059,28 @@ "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "destination": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "63623ad7483b05d5e3203ea214b4421c205c8619fbe8e69098e59cd3301abe6d:0", + "source": "534e070cac732d7784ecebc0ec258023f63cc19feda743a23fd25192fe560eee:0", "status": "valid", - "tx_hash": "b41a26f64b443be03944117f8b79f89ec69cb05e0c4a3e981aad5ce103d4298f", + "tx_hash": "d85302093d4204e207e303bd18bd423920cda9f17c1452670a34b122d87d876d", "tx_index": 74, - "block_time": 1731759687, + "block_time": 1732471547, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmljd5ed68dnuelgml52u5gqnz26kuacx5xau3x", + "issuer": "bcrt1qhjle5g4fwtcl0ulzy3sqr6tlf4yzm6fd7wgv3l", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b41a26f64b443be03944117f8b79f89ec69cb05e0c4a3e981aad5ce103d4298f", + "tx_hash": "d85302093d4204e207e303bd18bd423920cda9f17c1452670a34b122d87d876d", "block_index": 198, - "block_time": 1731759687 + "block_time": 1732471547 } ], "next_cursor": 293, @@ -11078,14 +11094,14 @@ "params": { "asset": "XCP", "block_index": 233, - "destination": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f:0", + "destination": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604:0", "msg_index": 1, "quantity": 2000000000, - "source": "d9db467b8c12d6667ca84f875229d43a1af28cc094b6af9731a49e0e3ca3cf69:1", + "source": "9e5584f0e65e1fa0d48975d8124e61c9325dec91577935931ed5c13ea137a857:1", "status": "valid", - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "tx_index": 106, - "block_time": 1731759892, + "block_time": 1732471742, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -11095,9 +11111,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "7ed44941f9ad90d8cb15e8592687f39c26ff49fa210645864795b58bb063308f", + "tx_hash": "91b6f3961937f336c49aa351e94261e71a6358003f60e80a353975aecc6f6604", "block_index": 233, - "block_time": 1731759892 + "block_time": 1732471742 } ], "next_cursor": 905, @@ -11112,17 +11128,17 @@ "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1q6kmnrnxmmjmw3jzy4vtklewe3ndr54r2mwsqr9", + "source": "bcrt1qcy90226k3zya7we0jy6ctwa0xvc6vcnzlg902f", "status": "valid", - "tx_hash": "d80fd169ececc1a269897d8b2c109e20e6eda4dcf6187254ebe98270ec1a06d5", + "tx_hash": "722cbca318a965851ea1c8f33db264f2d79550c4dc26a538b1c40b391d33cdd8", "tx_index": 9, - "block_time": 1731759307, + "block_time": 1732471171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, - "tx_hash": "d80fd169ececc1a269897d8b2c109e20e6eda4dcf6187254ebe98270ec1a06d5", + "tx_hash": "722cbca318a965851ea1c8f33db264f2d79550c4dc26a538b1c40b391d33cdd8", "block_index": 112, - "block_time": 1731759307 + "block_time": 1732471171 } ], "next_cursor": 50, diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index b672016244..a014eb6f71 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -233,6 +233,8 @@ def gen_blueprint(db): for arg in route["args"]: required = "required" if arg["required"] else "optional" description = arg.get("description", "") + if current_group.lower() == "compose" and arg["name"] == "exact_fee": + description += " (e.g. 0)" example_arg = "" if "(e.g. " in description: desc_arr = description.split("(e.g. ") 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 258f39ebb2..5452e04b71 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py @@ -180,7 +180,7 @@ "dispenser": "$ADDRESS_1", "quantity": 4000, }, - "expected_error": ["source and destination must be different"], + "expected_error": "source and destination must be different", }, { "title": "Dispense 4: get 100 XCP", From 625c0f6ad9d19e4e66225a32c700538fd3dc933a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 24 Nov 2024 18:14:34 +0000 Subject: [PATCH 4/9] 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/release-notes-v10.7.2.md | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/apiary.apib b/apiary.apib index 95e6324b90..478e8a0b0e 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.7.2-alpha.1", + "version": "10.7.2", "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 46740cc2c3..a7c5796269 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -5,7 +5,7 @@ # Semantic Version -__version__ = "10.7.2-alpha.1" # for hatch +__version__ = "10.7.2" # 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 3b3f99c76a..ccfcbb6e5e 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.7.2-alpha.1", + "version": "10.7.2", "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 e01657257e..6f814ec896 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.7.2-alpha.1 \ No newline at end of file +counterparty-rs==10.7.2 \ No newline at end of file diff --git a/counterparty-rs/Cargo.lock b/counterparty-rs/Cargo.lock index 0a4f37829a..b36dc8ca99 100644 --- a/counterparty-rs/Cargo.lock +++ b/counterparty-rs/Cargo.lock @@ -394,7 +394,7 @@ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "counterparty-rs" -version = "10.7.2-alpha.1" +version = "10.7.2" dependencies = [ "bip32", "bitcoin", diff --git a/counterparty-rs/Cargo.toml b/counterparty-rs/Cargo.toml index 1666308a06..610ca22d84 100644 --- a/counterparty-rs/Cargo.toml +++ b/counterparty-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "counterparty-rs" -version = "10.7.2-alpha.1" +version = "10.7.2" 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 20f26772bd..d8045c3b86 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.7.2-alpha.1 +counterparty-core==10.7.2 diff --git a/docker-compose.yml b/docker-compose.yml index f14c8acdbb..83f4b520eb 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.7.2-alpha.1 + image: counterparty/counterparty:v10.7.2 stop_grace_period: 1m volumes: - data:/root/.bitcoin diff --git a/release-notes/release-notes-v10.7.2.md b/release-notes/release-notes-v10.7.2.md index a2b1d0d609..47dce8d2d7 100644 --- a/release-notes/release-notes-v10.7.2.md +++ b/release-notes/release-notes-v10.7.2.md @@ -1,4 +1,4 @@ -# Release Notes - Counterparty Core v10.7.2 (2024-11-??) +# Release Notes - Counterparty Core v10.7.2 (2024-11-24) From 45d26e709be8b1e8943f1fedc3792532b81c9f4e Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 24 Nov 2024 18:20:25 +0000 Subject: [PATCH 5/9] add checkpoint for block 871781 --- 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 c74f568ba6..eb4e5511bd 100644 --- a/counterparty-core/counterpartycore/lib/check.py +++ b/counterparty-core/counterpartycore/lib/check.py @@ -671,6 +671,10 @@ "ledger_hash": "cffb619abf5cbf297d3bf837369cae8e80eafb047bc26db9698d2ea6fd7cb9b9", "txlist_hash": "58786555420ed0e1aa160d572adf33bf622842069212fd3f3aaf2889ff5b968f", }, + 871781: { + "ledger_hash": "f214d9ed443e0034e1d3508f016086a841fb89036baae1aae857d273ef2a0b76", + "txlist_hash": "f378bfec19139f0210808ef8d6c548452cca9e631e5742786d2af7595534106c", + }, } CONSENSUS_HASH_VERSION_TESTNET = 7 From f59abe1c12339aa4ffb584f003c5ffaef3b4a87d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 24 Nov 2024 18:23:14 +0000 Subject: [PATCH 6/9] fix ruff --- .github/workflows/ruff-check.yml | 2 ++ .github/workflows/ruff-format.yml | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/ruff-check.yml b/.github/workflows/ruff-check.yml index 8c98bbf0a0..a7c276954f 100644 --- a/.github/workflows/ruff-check.yml +++ b/.github/workflows/ruff-check.yml @@ -6,3 +6,5 @@ jobs: steps: - uses: actions/checkout@v4 - uses: chartboost/ruff-action@v1 + with: + version: 0.7.4 diff --git a/.github/workflows/ruff-format.yml b/.github/workflows/ruff-format.yml index 4f765bb689..77d384dd60 100644 --- a/.github/workflows/ruff-format.yml +++ b/.github/workflows/ruff-format.yml @@ -8,3 +8,4 @@ jobs: - uses: chartboost/ruff-action@v1 with: args: "format --check" + version: 0.7.4 From 973a7045e010a4012756e1df204847e910c80cc2 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 24 Nov 2024 18:42:33 +0000 Subject: [PATCH 7/9] fix fixtures --- .../test/fixtures/api_v2_fixtures.json | 64 ++++++++++--------- 1 file changed, 33 insertions(+), 31 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index abac7dab76..50d02fec33 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -1949,6 +1949,35 @@ "block_index": 310513, "block_time": 310513000 }, + { + "event_index": 1326, + "event": "ATTACH_TO_UTXO", + "params": { + "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, + "block_time": 310508000, + "asset_info": { + "asset_longname": null, + "description": "Divisible asset", + "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000001", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "a568f169d4bb433072dd25793970d330fa51092012964a5bdc42d22835182726", + "block_index": 310508, + "block_time": 310508000 + }, { "event_index": 1324, "event": "DEBIT", @@ -2004,37 +2033,10 @@ "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": 1314, - "result_count": 173 + "next_cursor": 1318, + "result_count": 175 }, "http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/balances?verbose=true": { "result": [ @@ -15283,13 +15285,13 @@ "name": "utxo", "required": true, "type": "str", - "description": "The utxo from which the assets are moved" + "description": "The utxo from which the assets are moved (e.g. $UTXO_WITH_BALANCE)" }, { "name": "destination", "required": true, "type": "str", - "description": "The address to move the assets to" + "description": "The address to move the assets to (e.g. $ADDRESS_1)" }, { "name": "encoding", From 64d4ee85d2114e9b6d5d89b64d85c91ca5b34526 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 24 Nov 2024 10:50:30 -0800 Subject: [PATCH 8/9] Release Notes for v10.7.2 --- release-notes/release-notes-v10.7.2.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/release-notes/release-notes-v10.7.2.md b/release-notes/release-notes-v10.7.2.md index 47dce8d2d7..77216fc87d 100644 --- a/release-notes/release-notes-v10.7.2.md +++ b/release-notes/release-notes-v10.7.2.md @@ -2,8 +2,11 @@ + # Upgrading +This upgrade is not a protocol change and does not require an automatic reparse. + # ChangeLog @@ -11,7 +14,7 @@ ## Bugfixes -- Fix CORS headers for OPTIONS requests +- Fix CORS headers for `OPTIONS` requests - Fix rounding error on normalized quantity - Use `null` instead of `''` for `asset_longname` and `asset_parent` fields - Correctly catch `ValueError` in unpack endpoint From 0f3d94d169289b876080f797a8104cf3ea0c8b54 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 24 Nov 2024 10:51:17 -0800 Subject: [PATCH 9/9] Release Notes for v10.7.2 --- release-notes/release-notes-v10.7.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes/release-notes-v10.7.2.md b/release-notes/release-notes-v10.7.2.md index 77216fc87d..ff00e12d2b 100644 --- a/release-notes/release-notes-v10.7.2.md +++ b/release-notes/release-notes-v10.7.2.md @@ -1,6 +1,6 @@ # Release Notes - Counterparty Core v10.7.2 (2024-11-24) - +This is a minor release with a large number of bugfixes and quality-of-life improvements. # Upgrading