diff --git a/.github/workflows/bandit_scanner.yml b/.github/workflows/bandit_scanner.yml new file mode 100644 index 0000000000..d029047c01 --- /dev/null +++ b/.github/workflows/bandit_scanner.yml @@ -0,0 +1,25 @@ +name: Bandit Scanner + +on: + push: + branches: "**" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + Bandit: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Bandit Scan + uses: shundor/python-bandit-scan@9cc5aa4a006482b8a7f91134412df6772dbda22c + with: # optional arguments + exit_zero: true # optional, default is DEFAULT + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information. + excluded_paths: "*/test/*,*/counterparty-core/tools/*" # optional, default is DEFAULT + skips: "B101" # optional, default is DEFAULT diff --git a/.github/workflows/codeql_scanner.yml b/.github/workflows/codeql_scanner.yml new file mode 100644 index 0000000000..cf77e9b09e --- /dev/null +++ b/.github/workflows/codeql_scanner.yml @@ -0,0 +1,35 @@ +name: Codeql Scanner + +on: + push: + branches: "**" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + Codeql: + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} + permissions: + actions: read + contents: read + security-events: write + strategy: + fail-fast: false + matrix: + language: [ 'python' ] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" diff --git a/.github/workflows/functionals_test.yml b/.github/workflows/functionals_test.yml new file mode 100644 index 0000000000..a5771c8c93 --- /dev/null +++ b/.github/workflows/functionals_test.yml @@ -0,0 +1,17 @@ +name: Functionals Test + +on: + push: + branches: "**" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + Functionals: + uses: ./.github/workflows/pytest_action.yml + with: + name: Functionals + test-path: functionals + secrets: inherit diff --git a/.github/workflows/pytest.yml b/.github/workflows/integrations_test.yml similarity index 66% rename from .github/workflows/pytest.yml rename to .github/workflows/integrations_test.yml index cba4d25d65..95d8a3e46c 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/integrations_test.yml @@ -1,4 +1,4 @@ -name: Pytest +name: Integrations Test on: push: @@ -9,30 +9,14 @@ concurrency: cancel-in-progress: true jobs: - Test: + Integrations: strategy: fail-fast: false # define the matrix matrix: # Units tests - - name: ["Units And Functionals"] - python-version: ["3.10", "3.11", "3.12"] - os: ["ubuntu-22.04", "macos-14"] - test-path: ["units counterpartycore/test/functionals"] include: - - - name: Units And Functionals - test-path: units counterpartycore/test/functionals - python-version: 3.13 - os: ubuntu-22.04 - - - name: Units And Functionals - test-path: units counterpartycore/test/functionals - python-version: 3.13 - os: macos-14 - # Mainnet tests # bootstrap, run the server with --api-only and run @@ -41,6 +25,7 @@ jobs: test-path: integrations/load_test.py os: Linux-Large-1 only_on_develop: true + no_cov_report: true # bootstrap, reparse 1000 blocks, # rollback 3 checkpoints and catchup @@ -57,17 +42,18 @@ jobs: test-path: integrations/regtest/scenarios_test.py install_bitcoin: true - # run property tests on regtest - - name: Property Test - test-path: integrations/regtest/property_test.py - install_bitcoin: true - # Testnet4 tests # bootstrap, reparse 1000 blocks, # rollback 3 checkpoints and catchup - name: Testnet4 Bootstrap And Catchup - test-path: integrations/testnet4_test.py + test-path: integrations/testnet4_test.py + + - name: Testnet4 Start and Shutdown + test-path: integrations/shutdown_test.py + + - name: Testnet4 Rebuild + test-path: integrations/rebuild_test.py # Other tests @@ -79,13 +65,16 @@ jobs: - name: Compare Hashes test-path: integrations/comparehashes_test.py + - name: RSFetcher Test + test-path: integrations/rsfetcher_test.py + # run pytest_action.yml for the matrix uses: ./.github/workflows/pytest_action.yml with: - name: ${{ matrix.name }} (${{ matrix.os }} - Python ${{ matrix.python-version }}) + name: ${{ matrix.name }} test-path: ${{ matrix.test-path }} - os: ${{ matrix.os || 'ubuntu-22.04' }} - python-version: ${{ matrix.python-version || '3.11' }} install_bitcoin: ${{ matrix.install_bitcoin || false }} only_on_develop: ${{ matrix.only_on_develop || false }} + os: ${{ matrix.os || 'ubuntu-22.04' }} + no_cov_report: ${{ matrix.no_cov_report || false }} secrets: inherit diff --git a/.github/workflows/licenses_scanner.yml b/.github/workflows/licenses_scanner.yml new file mode 100644 index 0000000000..287f45e8d9 --- /dev/null +++ b/.github/workflows/licenses_scanner.yml @@ -0,0 +1,29 @@ +name: Licenses Scanner + +on: + push: + branches: "**" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + Licenses: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v3 + with: + python-version: "3.11" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install license_scanner sh + - name: Analysing dependencies with licence_scanner + run: | + python counterparty-core/tools/checklicences.py + - name: Upload SARIF + uses: github/codeql-action/upload-sarif/@v2 + with: + sarif_file: license_scanner.sarif \ No newline at end of file diff --git a/.github/workflows/property_test.yml b/.github/workflows/property_test.yml new file mode 100644 index 0000000000..372e6378b2 --- /dev/null +++ b/.github/workflows/property_test.yml @@ -0,0 +1,18 @@ +name: Property Test + +on: + push: + branches: "**" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + Property: + uses: ./.github/workflows/pytest_action.yml + with: + name: Property Test + test-path: integrations/regtest/property_test.py + install_bitcoin: true + secrets: inherit diff --git a/.github/workflows/pylint_scanner.yml b/.github/workflows/pylint_scanner.yml new file mode 100644 index 0000000000..6ecb0ae9dd --- /dev/null +++ b/.github/workflows/pylint_scanner.yml @@ -0,0 +1,31 @@ +name: Pylint Scanner + +on: + push: + branches: "**" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + Pylint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v3 + with: + python-version: "3.11" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install --upgrade pylint pylint-sarif-unofficial + cd counterparty-rs && pip install -e . && cd .. + cd counterparty-core && pip install -e . && cd .. + - name: Analysing the code with pylint + run: | + pylint2sarif $(git ls-files '*.py' | grep -v counterparty-rs/tests/ | grep -v counterparty-core/counterpartycore/test/ | grep -v counterparty-core/tools/) || true + - name: Upload SARIF + uses: github/codeql-action/upload-sarif/@v2 + with: + sarif_file: pylint.sarif diff --git a/.github/workflows/pytest_action.yml b/.github/workflows/pytest_action.yml index 4cf0408302..b0d230b0d7 100644 --- a/.github/workflows/pytest_action.yml +++ b/.github/workflows/pytest_action.yml @@ -18,12 +18,12 @@ on: install_bitcoin: type: boolean default: false - run_coveralls: - type: boolean - default: true only_on_develop: type: boolean default: false + no_cov_report: + type: boolean + default: false jobs: pytest: @@ -47,10 +47,7 @@ jobs: - name: Install dependencies run: | - # pip install --upgrade pytest hatchling==1.25.0 hatch==1.13.0 pytest-cov coveralls pip install --upgrade pytest hatchling hatch pytest-cov coveralls - # cd counterparty-rs && pip install -e . && cd .. - # cd counterparty-core && pip install -e . && cd .. - name: Install Bitcoin & Electrs if: inputs.install_bitcoin @@ -61,15 +58,18 @@ jobs: sudo cp bitcoin-28.0/bin/bitcoind /usr/local/bin/bitcoind sudo cp bitcoin-28.0/bin/bitcoin-wallet /usr/local/bin/bitcoin-wallet npm install dredd --global + rustup toolchain install 1.83-x86_64-unknown-linux-gnu git clone https://github.com/mempool/electrs && cd electrs cargo install --path=. - name: Run tests run: | cd counterparty-core - hatch run pytest counterpartycore/test/${{ inputs.test-path }} -s -vv -x \ - --cov=counterpartycore/lib --cov-report=term-missing --cov-report= - mv .coverage ../ + hatch run pytest counterpartycore/test/${{ inputs.test-path }} \ + ${{ !inputs.no_cov_report && '-s -vv -x --cov=counterpartycore/lib --cov-report=term-missing --cov-report=' || '' }} + if [ "${{ !inputs.no_cov_report }}" = "true" ]; then + mv .coverage ../ + fi - name: Upload coverage uses: codecov/codecov-action@v5 diff --git a/.github/workflows/ruff_scanner.yml b/.github/workflows/ruff_scanner.yml new file mode 100644 index 0000000000..add3decf08 --- /dev/null +++ b/.github/workflows/ruff_scanner.yml @@ -0,0 +1,22 @@ +name: Ruff Scanner + +on: + push: + branches: "**" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + Ruff: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: chartboost/ruff-action@v1 + with: + args: "format --check" + version: 0.9.7 + - uses: chartboost/ruff-action@v1 + with: + version: 0.9.7 \ No newline at end of file diff --git a/.github/workflows/rust_test.yml b/.github/workflows/rust_test.yml new file mode 100644 index 0000000000..60e0f0f5d0 --- /dev/null +++ b/.github/workflows/rust_test.yml @@ -0,0 +1,27 @@ +name: Rust Test + +on: + push: + branches: "**" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + Cargo: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install Rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + default: true + + - name: Run tests + run: | + cd counterparty-rs + cargo test \ No newline at end of file diff --git a/.github/workflows/scanners.yml b/.github/workflows/scanners.yml deleted file mode 100644 index a3074a8410..0000000000 --- a/.github/workflows/scanners.yml +++ /dev/null @@ -1,100 +0,0 @@ -name: Code Scanners - -on: - push: - branches: "**" - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - Ruff: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: chartboost/ruff-action@v1 - with: - args: "format --check" - version: 0.8.2 - - uses: chartboost/ruff-action@v1 - with: - version: 0.8.2 - - Codeql: - runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} - timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} - permissions: - actions: read - contents: read - security-events: write - strategy: - fail-fast: false - matrix: - language: [ 'python' ] - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - with: - languages: ${{ matrix.language }} - - name: Autobuild - uses: github/codeql-action/autobuild@v2 - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 - with: - category: "/language:${{matrix.language}}" - - Bandit: - permissions: - contents: read # for actions/checkout to fetch code - security-events: write # for github/codeql-action/upload-sarif to upload SARIF results - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Bandit Scan - uses: shundor/python-bandit-scan@9cc5aa4a006482b8a7f91134412df6772dbda22c - with: # optional arguments - exit_zero: true # optional, default is DEFAULT - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information. - excluded_paths: "*/test/*,*/counterparty-core/tools/*" # optional, default is DEFAULT - skips: "B101" # optional, default is DEFAULT - - Pylint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v3 - with: - python-version: "3.11" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install pylint pylint-sarif-unofficial - - name: Analysing the code with pylint - run: | - pylint2sarif $(git ls-files '*.py' | grep -v counterparty-rs/tests/ | grep -v counterparty-core/counterpartycore/test/ | grep -v counterparty-core/tools/) || true - - name: Upload SARIF - uses: github/codeql-action/upload-sarif/@v2 - with: - sarif_file: pylint.sarif - - Licenses: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v3 - with: - python-version: "3.11" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install license_scanner sh - - name: Analysing dependencies with licence_scanner - run: | - python counterparty-core/tools/checklicences.py - - name: Upload SARIF - uses: github/codeql-action/upload-sarif/@v2 - with: - sarif_file: license_scanner.sarif \ No newline at end of file diff --git a/.github/workflows/units_test.yml b/.github/workflows/units_test.yml new file mode 100644 index 0000000000..db894ca8f0 --- /dev/null +++ b/.github/workflows/units_test.yml @@ -0,0 +1,25 @@ +name: Units Test + +on: + push: + branches: "**" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + Units: + strategy: + fail-fast: false + matrix: + test-path: ["units"] + os: ["ubuntu-22.04", "macos-14"] + python-version: ["3.10", "3.11", "3.12", "3.13"] + uses: ./.github/workflows/pytest_action.yml + with: + name: Units (${{ matrix.os }} - Python ${{ matrix.python-version }}) + test-path: ${{ matrix.test-path }} + os: ${{ matrix.os || 'ubuntu-22.04' }} + python-version: ${{ matrix.python-version || '3.11' }} + secrets: inherit diff --git a/Dockerfile b/Dockerfile index 86a8a4ef02..ce1657392a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM ubuntu:22.04 RUN apt update # install dependencies -RUN apt install -y python3 python3-dev python3-pip libleveldb-dev curl gnupg libclang-dev +RUN apt install -y python3 python3-dev python3-pip libleveldb-dev curl gnupg libclang-dev pkg-config libssl-dev # install rust RUN curl https://sh.rustup.rs -sSf | sh -s -- -y diff --git a/README.md b/README.md index e376b0f683..9148116a48 100644 --- a/README.md +++ b/README.md @@ -13,35 +13,19 @@ Codecov - - Units - - - Functionals - - - Integrations - - - Property - + Functionals + Functionals + Functionals + Functionals Scanning - - CodeQL - - - Bandit - - - Ruff - - - Pylint - + Functionals + Functionals + Functionals + Functionals diff --git a/apiary.apib b/apiary.apib index c61d51cc48..481cffc021 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2025-02-14 08:24:37.784536. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2025-03-01 11:37:55.720017. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -45,6 +45,7 @@ All API responses contain the following 3 headers: * `X-COUNTERPARTY-HEIGHT` contains the last block parsed by Counterparty * `X-BITCOIN-HEIGHT` contains the last block known to Bitcoin Core * `X-COUNTERPARTY-READY` contains true if `X-COUNTERPARTY-HEIGHT` >= `X-BITCOIN-HEIGHT` - 1 +* `X-LEDGER-STATE` contains `Starting`, `Catching Up`, `Following` or `Stopping` ## Responses Format @@ -189,15 +190,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 1029, "event": "NEW_BLOCK", "params": { - "block_hash": "69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496", + "block_hash": "584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603", "block_index": 245, - "block_time": 1739521461, + "block_time": 1740829057, "difficulty": 545259519, - "previous_block_hash": "65e13e048df8b1a6ac5f132072086cb7c07ea111a2e854ed45394b509352a90e" + "previous_block_hash": "328079132fb07c130d9e9ca79fc0e011f0df928084d8a6e08e2d26d59bb62d79" }, "tx_hash": null, "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 1027, @@ -214,23 +215,23 @@ Here is a list of events classified by theme and for each an example response: "event_index": 1030, "event": "NEW_TRANSACTION", "params": { - "block_hash": "69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496", + "block_hash": "584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603", "block_index": 245, - "block_time": 1739521461, + "block_time": 1740829057, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "destination": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "fee": 0, - "source": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "source": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "transaction_type": "dispense", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "utxos_info": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1 8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0 3 1", + "utxos_info": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1 5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0 3 1", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 1020, @@ -249,16 +250,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "destination": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "out_index": 0, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 981, @@ -276,15 +277,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 245, - "ledger_hash": "b7e1742689aa60389b2445303b6e29cc854a50f88e9d7af3fed708f2d1304b76", - "messages_hash": "d482fb968cbb23e330f5094acf6e3780da357d5c03d4a45192877ddc5276d79d", + "ledger_hash": "ebef3aae800476295d0b74454f81e5e150b5337edbb860ba126329b74a2f0619", + "messages_hash": "a9e07cbe1d45046a30ccfaaa6ff19a8a14692a1f3b9babef48c7a5d7b51631a6", "transaction_count": 1, - "txlist_hash": "5ebd157889a49b7be1d3c82b3dba5ac90f7ebe1b748c28ab5880e0a8bd7b1974", - "block_time": 1739521461 + "txlist_hash": "dd4612f219ea5359cff45f287a761b3806f59b3c0a0a1f0859196bb7b8f80988", + "block_time": 1740829057 }, "tx_hash": null, "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 1028, @@ -302,12 +303,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121 }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 1025, @@ -330,12 +331,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 245, - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 2000000000, "tx_index": 121, - "utxo": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "utxo_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "block_time": 1739521461, + "utxo": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "utxo_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -346,9 +347,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 1032, @@ -365,16 +366,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -385,9 +386,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 1036, @@ -406,29 +407,29 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "memo": null, "msg_index": 0, "quantity": 1000, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "4c3f41b6e9e6595de5ae567d6b4f3019021ef5ece2f0bc855b15dfff821e0ef7", + "tx_hash": "469dbbf4907b7617d285482169d25cd856bb1c7e36cfd4aa2299e5c0ffd4ff83", "tx_index": 77, - "block_time": 1739521290, + "block_time": 1740828867, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00001000" }, - "tx_hash": "4c3f41b6e9e6595de5ae567d6b4f3019021ef5ece2f0bc855b15dfff821e0ef7", + "tx_hash": "469dbbf4907b7617d285482169d25cd856bb1c7e36cfd4aa2299e5c0ffd4ff83", "block_index": 201, - "block_time": 1739521290 + "block_time": 1740828867 } ], "next_cursor": 528, @@ -447,16 +448,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "destination": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "memo": "memo1", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "status": "valid", - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "tx_index": 81, - "block_time": 1739521305, + "block_time": 1740828881, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -467,9 +468,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "block_index": 205, - "block_time": 1739521305 + "block_time": 1740828881 } ], "next_cursor": 712, @@ -507,20 +508,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "destination": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "source": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "status": "valid", - "tx_hash": "044dc2f444bb200b4d68580cf959677a95d16b1bdb21e12005f65f0f00713808", + "tx_hash": "72123381d3d5f2f6456953edbe047571c6a9ec0b83df3f82d191c130c1312308", "tx_index": 65, - "block_time": 1739521250, + "block_time": 1740828820, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "044dc2f444bb200b4d68580cf959677a95d16b1bdb21e12005f65f0f00713808", + "tx_hash": "72123381d3d5f2f6456953edbe047571c6a9ec0b83df3f82d191c130c1312308", "block_index": 190, - "block_time": 1739521250 + "block_time": 1740828820 } ], "next_cursor": null, @@ -542,18 +543,18 @@ 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": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "c0499fc716e02168b13d0671c53a2703345dec81922ca1f554b62ac771d7c500", + "tx_hash": "99d36be41498610f317041e44269b50021d097e81ef4da4f2662e26d4a5b2046", "tx_index": 42, - "block_time": 1739521105, + "block_time": 1740828677, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "dividend_asset_info": { "asset_longname": null, @@ -566,9 +567,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": "c0499fc716e02168b13d0671c53a2703345dec81922ca1f554b62ac771d7c500", + "tx_hash": "99d36be41498610f317041e44269b50021d097e81ef4da4f2662e26d4a5b2046", "block_index": 146, - "block_time": 1739521105 + "block_time": 1740828677 } ], "next_cursor": null, @@ -597,22 +598,22 @@ Here is a list of events classified by theme and for each an example response: "description": "", "divisible": true, "fee_paid": 0, - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "issuer": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "locked": false, "quantity": 1200000000, "reset": true, - "source": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "source": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "status": "valid", "transfer": false, - "tx_hash": "ee2e560616c0210f8595e6bae438b454a42afb78429bc11025326229fddbacc6", + "tx_hash": "f4d12929bf09e18a3f5e5a434ce9f7147a5e36c1530c3f3ea69e67d9378627dc", "tx_index": 117, - "block_time": 1739521440, + "block_time": 1740829037, "quantity_normalized": "12.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "ee2e560616c0210f8595e6bae438b454a42afb78429bc11025326229fddbacc6", + "tx_hash": "f4d12929bf09e18a3f5e5a434ce9f7147a5e36c1530c3f3ea69e67d9378627dc", "block_index": 240, - "block_time": 1739521440 + "block_time": 1740829037 } ], "next_cursor": null, @@ -633,11 +634,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 243, - "block_time": 1739521452 + "block_time": 1740829048 }, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "block_index": 243, - "block_time": 1739521452 + "block_time": 1740829048 } ], "next_cursor": 992, @@ -665,22 +666,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": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "issuer": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "status": "valid", "transfer": false, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "tx_index": 120, - "block_time": 1739521452, + "block_time": 1740829048, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "block_index": 243, - "block_time": 1739521452 + "block_time": 1740829048 } ], "next_cursor": 993, @@ -700,25 +701,25 @@ Here is a list of events classified by theme and for each an example response: "asset": "RESET", "block_index": 240, "quantity": 12, - "source": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "source": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "status": "valid", "tag": "reset", - "tx_hash": "ee2e560616c0210f8595e6bae438b454a42afb78429bc11025326229fddbacc6", + "tx_hash": "f4d12929bf09e18a3f5e5a434ce9f7147a5e36c1530c3f3ea69e67d9378627dc", "tx_index": 117, - "block_time": 1739521440, + "block_time": 1740829037, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "issuer": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "divisible": true, "locked": false, - "owner": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v" + "owner": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch" }, "quantity_normalized": "0.00000012" }, - "tx_hash": "ee2e560616c0210f8595e6bae438b454a42afb78429bc11025326229fddbacc6", + "tx_hash": "f4d12929bf09e18a3f5e5a434ce9f7147a5e36c1530c3f3ea69e67d9378627dc", "block_index": 240, - "block_time": 1739521440 + "block_time": 1740829037 } ], "next_cursor": 885, @@ -750,11 +751,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": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "status": "open", - "tx_hash": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", + "tx_hash": "09a9ea40d09b684df4217ebf24d162a34cb7edfb0e1d3059128cc3b5c78ee602", "tx_index": 119, - "block_time": 1739521449, + "block_time": 1740829045, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -765,10 +766,10 @@ 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": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q", + "issuer": "bcrt1qjs0rju8h4cyel9gr9vefq8xgkq3qrh3r5gywm2", "divisible": true, "locked": false, - "owner": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q" + "owner": "bcrt1qjs0rju8h4cyel9gr9vefq8xgkq3qrh3r5gywm2" }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", @@ -779,9 +780,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": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", + "tx_hash": "09a9ea40d09b684df4217ebf24d162a34cb7edfb0e1d3059128cc3b5c78ee602", "block_index": 242, - "block_time": 1739521449 + "block_time": 1740829045 } ], "next_cursor": 1008, @@ -804,27 +805,27 @@ 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": "2e13cad1929c51e6916720e858e668826c1bde62b85838bb77b5b62de0202189_3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", + "id": "c174aa5a034d7a5f1fb5c83bfa68efaeda8770ac9c390f464ef29e2eb5dc3224_09a9ea40d09b684df4217ebf24d162a34cb7edfb0e1d3059128cc3b5c78ee602", "match_expire_index": 262, "status": "pending", - "tx0_address": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q", + "tx0_address": "bcrt1qjs0rju8h4cyel9gr9vefq8xgkq3qrh3r5gywm2", "tx0_block_index": 241, "tx0_expiration": 21, - "tx0_hash": "2e13cad1929c51e6916720e858e668826c1bde62b85838bb77b5b62de0202189", + "tx0_hash": "c174aa5a034d7a5f1fb5c83bfa68efaeda8770ac9c390f464ef29e2eb5dc3224", "tx0_index": 118, - "tx1_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "tx1_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "tx1_block_index": 242, "tx1_expiration": 21, - "tx1_hash": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", + "tx1_hash": "09a9ea40d09b684df4217ebf24d162a34cb7edfb0e1d3059128cc3b5c78ee602", "tx1_index": 119, - "block_time": 1739521449, + "block_time": 1740829045, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q", + "issuer": "bcrt1qjs0rju8h4cyel9gr9vefq8xgkq3qrh3r5gywm2", "divisible": true, "locked": false, - "owner": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q" + "owner": "bcrt1qjs0rju8h4cyel9gr9vefq8xgkq3qrh3r5gywm2" }, "backward_asset_info": { "divisible": true, @@ -837,9 +838,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": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", + "tx_hash": "09a9ea40d09b684df4217ebf24d162a34cb7edfb0e1d3059128cc3b5c78ee602", "block_index": 242, - "block_time": 1739521449 + "block_time": 1740829045 } ], "next_cursor": 691, @@ -861,13 +862,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": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", + "tx_hash": "09a9ea40d09b684df4217ebf24d162a34cb7edfb0e1d3059128cc3b5c78ee602", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", + "tx_hash": "09a9ea40d09b684df4217ebf24d162a34cb7edfb0e1d3059128cc3b5c78ee602", "block_index": 242, - "block_time": 1739521449 + "block_time": 1740829045 } ], "next_cursor": 1014, @@ -885,11 +886,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "40744fa443af3d8146e5f255bf38e1a0d849b7183397bf60d8d801f9a99b8427" + "tx_hash": "0da9f1752c4ca6ee37cda5df51af6264728d86ed00ce2615db55a58b86510462" }, - "tx_hash": "bd080a757eb15b17b393448a141bc55c9f0ba3abf17418394f3650bfbab3f36a", + "tx_hash": "06412ffcbd6edb35c1e8d3675fc49dd9ab65261b7b073c802b28bcdb94f87378", "block_index": 182, - "block_time": 1739521222 + "block_time": 1740828793 } ], "next_cursor": null, @@ -906,13 +907,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 859, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d_c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", - "order_match_id": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d_c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", + "id": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e_8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", + "order_match_id": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e_8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", "status": "expired" }, - "tx_hash": "b0326febaa3c51a3cc9e8bf9d0f040a208f28189b60aad03e514cc2ffeac21be", + "tx_hash": "c56bb59a7fa00b660b25fb879b69505f26d598089e43c0d142b93a1ff819071d", "block_index": 225, - "block_time": 1739521374 + "block_time": 1740828957 } ], "next_cursor": 685, @@ -931,18 +932,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "order_match_id": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27_40744fa443af3d8146e5f255bf38e1a0d849b7183397bf60d8d801f9a99b8427", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "order_match_id": "6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b4_0da9f1752c4ca6ee37cda5df51af6264728d86ed00ce2615db55a58b86510462", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "status": "valid", - "tx_hash": "bd080a757eb15b17b393448a141bc55c9f0ba3abf17418394f3650bfbab3f36a", + "tx_hash": "06412ffcbd6edb35c1e8d3675fc49dd9ab65261b7b073c802b28bcdb94f87378", "tx_index": 57, - "block_time": 1739521222, + "block_time": 1740828793, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "bd080a757eb15b17b393448a141bc55c9f0ba3abf17418394f3650bfbab3f36a", + "tx_hash": "06412ffcbd6edb35c1e8d3675fc49dd9ab65261b7b073c802b28bcdb94f87378", "block_index": 182, - "block_time": 1739521222 + "block_time": 1740828793 } ], "next_cursor": null, @@ -960,16 +961,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": "cf8f674f4c51eda6ce04f694f40f91f5ec6547b54760cc9cf4265f4605b0a972", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "offer_hash": "a7cd369191f065c10ebe7453c34b8e450714f388bebb16660c94bd96f42875d3", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "2bbde7fa042fa1c224b9a5a3f2be195f7c6a26e1fa1933c5196bfa073a99c3a9", + "tx_hash": "83bc5dd0f53f39e7505579a9c61725c4fb59c71b12596600530d9ac52b4b6ccc", "tx_index": 63, - "block_time": 1739521243 + "block_time": 1740828813 }, - "tx_hash": "2bbde7fa042fa1c224b9a5a3f2be195f7c6a26e1fa1933c5196bfa073a99c3a9", + "tx_hash": "83bc5dd0f53f39e7505579a9c61725c4fb59c71b12596600530d9ac52b4b6ccc", "block_index": 188, - "block_time": 1739521243 + "block_time": 1740828813 } ], "next_cursor": null, @@ -987,13 +988,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": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "block_time": 1739521327 + "order_hash": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "block_time": 1740828904 }, - "tx_hash": "b32b0b5633f1f464beeda431a4fdccc819cc37b0399cec197056ecdd7af36435", + "tx_hash": "3dcd739f3d64c30c0f72a1e633f6f67c1785c989d9ea4e2fd970c0197bb35ef7", "block_index": 211, - "block_time": 1739521327 + "block_time": 1740828904 } ], "next_cursor": 705, @@ -1011,14 +1012,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": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d_c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", - "tx0_address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "tx1_address": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", - "block_time": 1739521374 + "order_match_id": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e_8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", + "tx0_address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "tx1_address": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", + "block_time": 1740828957 }, - "tx_hash": "b0326febaa3c51a3cc9e8bf9d0f040a208f28189b60aad03e514cc2ffeac21be", + "tx_hash": "c56bb59a7fa00b660b25fb879b69505f26d598089e43c0d142b93a1ff819071d", "block_index": 225, - "block_time": 1739521374 + "block_time": 1740828957 } ], "next_cursor": 688, @@ -1044,13 +1045,13 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 5000, "oracle_address": null, - "origin": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", + "origin": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", "satoshirate": 1, - "source": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", + "source": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", "status": 0, - "tx_hash": "7106c5bc21452894b653fbef9ca6d21beeb1ccb4e588238542b22d9296eb9ca3", + "tx_hash": "bad25a9b2a401e6deb9bb92d2db817b52cf1bca6baaa182726858cec4ce578ee", "tx_index": 114, - "block_time": 1739521427, + "block_time": 1740829024, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1064,9 +1065,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00005000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "7106c5bc21452894b653fbef9ca6d21beeb1ccb4e588238542b22d9296eb9ca3", + "tx_hash": "bad25a9b2a401e6deb9bb92d2db817b52cf1bca6baaa182726858cec4ce578ee", "block_index": 236, - "block_time": 1739521427 + "block_time": 1740829024 } ], "next_cursor": 587, @@ -1086,9 +1087,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": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "status": 0, - "tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", + "tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1099,9 +1100,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 983, @@ -1120,13 +1121,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 135, - "destination": "n4H5cuvr4LPfSWHWqQWCjAW3wJy6JfTtPT", + "destination": "mkgCt5bWwpkA2HQdGiiT1rze51mhWogVr7", "dispense_quantity": 10, - "dispenser_tx_hash": "2f37d9fe96f6ca52c26c52ea3afc764a3acc16ee07fef1973b60edc607138107", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "tx_hash": "9e2299389c60faff2901696ce0b08ba9f3dcf2b1886aa494ecc21df03ebdf7a7", + "dispenser_tx_hash": "4eb706f51f3a49926966500d7077fcdb0bce5acbbc8fda7fe1f0a81916a56c4b", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "tx_hash": "906523a300f28ded76e1797ad5f3a607391dda02aa54478f2ef967e0dddf57b9", "tx_index": 31, - "block_time": 1739521064, + "block_time": 1740828639, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1137,9 +1138,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "9e2299389c60faff2901696ce0b08ba9f3dcf2b1886aa494ecc21df03ebdf7a7", + "tx_hash": "906523a300f28ded76e1797ad5f3a607391dda02aa54478f2ef967e0dddf57b9", "block_index": 135, - "block_time": 1739521064 + "block_time": 1740828639 } ], "next_cursor": null, @@ -1159,14 +1160,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "destination": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "dispenser_tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1178,9 +1179,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": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 984, @@ -1202,19 +1203,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": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "1ede279106bb92c422b245709047acd8a45ff8ed10039944c990c5c132e787d6", + "tx_hash": "849687ba372cccfc60c8dff203c79510d9fd69ef2911131a7d9b2ff2c42cc97d", "tx_index": 25, "value": 66600.0, - "block_time": 1739521044, + "block_time": 1740828614, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "1ede279106bb92c422b245709047acd8a45ff8ed10039944c990c5c132e787d6", + "tx_hash": "849687ba372cccfc60c8dff203c79510d9fd69ef2911131a7d9b2ff2c42cc97d", "block_index": 129, - "block_time": 1739521044 + "block_time": 1740828614 } ], "next_cursor": 205, @@ -1252,12 +1253,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": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "start_block": 0, "status": "open", - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "tx_index": 120, - "block_time": 1739521452, + "block_time": 1740829048, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1265,9 +1266,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": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "block_index": 243, - "block_time": 1739521452 + "block_time": 1740829048 } ], "next_cursor": 874, @@ -1285,11 +1286,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "15b5db86ba5aac3205cccd477863b6d3d4b11847a51a5ae4c7e76bcf31fd9f74" + "tx_hash": "f79a7fe3790050694cd12ea2d9a6d982e56b1143b1a5795c07eadf1d74b7b4db" }, "tx_hash": null, "block_index": 228, - "block_time": 1739521385 + "block_time": 1740828968 } ], "next_cursor": 869, @@ -1310,28 +1311,28 @@ 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": "73cc5b764a2dfa8288be33f743bd46f5a4f870b1ad45d6a343c74788ff2988d7", + "fairminter_tx_hash": "0ed86bb695761399b0309987199ec5de9c0ef5264d1fc71ac75c88b887160038", "paid_quantity": 100000000, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "status": "valid", - "tx_hash": "da5909f5daabaf97f1078d2093cd0c5ab30953de6cf5f2448042f064403d0151", + "tx_hash": "96b3adc55c1b6ad57cd78dd14626b34bab64cd19469f6bc607375e92c184f763", "tx_index": 97, - "block_time": 1739521360, + "block_time": 1740828943, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "issuer": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "divisible": true, "locked": true, - "owner": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v" + "owner": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch" }, "earn_quantity_normalized": "0.80000000", "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "da5909f5daabaf97f1078d2093cd0c5ab30953de6cf5f2448042f064403d0151", + "tx_hash": "96b3adc55c1b6ad57cd78dd14626b34bab64cd19469f6bc607375e92c184f763", "block_index": 221, - "block_time": 1739521360 + "block_time": 1740828943 } ], "next_cursor": 816, @@ -1352,31 +1353,31 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "DETACHA", "block_index": 235, - "destination": "333e75d27e97b88d1bc093627e1ba709419abfc12c96351cd8d257a980bf527e:0", - "destination_address": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "destination": "caaac41bbe80da514532a41b65401868ce5008dc5a03325c5b7f9a581d9619f3:0", + "destination_address": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "fee_paid": 0, "msg_index": 0, "quantity": 100000000, "send_type": "attach", - "source": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "source": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "status": "valid", - "tx_hash": "333e75d27e97b88d1bc093627e1ba709419abfc12c96351cd8d257a980bf527e", + "tx_hash": "caaac41bbe80da514532a41b65401868ce5008dc5a03325c5b7f9a581d9619f3", "tx_index": 112, - "block_time": 1739521421, + "block_time": 1740829017, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "issuer": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "divisible": true, "locked": false, - "owner": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v" + "owner": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch" }, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "333e75d27e97b88d1bc093627e1ba709419abfc12c96351cd8d257a980bf527e", + "tx_hash": "caaac41bbe80da514532a41b65401868ce5008dc5a03325c5b7f9a581d9619f3", "block_index": 235, - "block_time": 1739521421 + "block_time": 1740829017 } ], "next_cursor": 944, @@ -1395,31 +1396,31 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "DETACHB", "block_index": 234, - "destination": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "destination": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "fee_paid": 0, "msg_index": 1, "quantity": 100000000, "send_type": "detach", - "source": "548b2f5ec1ad8d6e0219d16657c4abb3586ba183fc5428dc043d6a73ecae38b3:0", - "source_address": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "source": "74155460d43b3b1d3ec00cf5780bb5420c04685c1c47a5a9d1cd47880e906907:0", + "source_address": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "status": "valid", - "tx_hash": "b950ccaae58e1d5958ea681bbc9270b00a142eb1e3e08eb3cc99528ab211aa2d", + "tx_hash": "145ccd57765fa92d2bab9632124e5db981b1c51d1d6bd4a1cae97e72d90f64a7", "tx_index": 111, - "block_time": 1739521418, + "block_time": 1740829014, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "issuer": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "divisible": true, "locked": false, - "owner": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v" + "owner": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch" }, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b950ccaae58e1d5958ea681bbc9270b00a142eb1e3e08eb3cc99528ab211aa2d", + "tx_hash": "145ccd57765fa92d2bab9632124e5db981b1c51d1d6bd4a1cae97e72d90f64a7", "block_index": 234, - "block_time": 1739521418 + "block_time": 1740829014 } ], "next_cursor": 954, @@ -1438,17 +1439,17 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "destination": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "destination_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "msg_index": 1, "quantity": 2000000000, "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "source": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "source_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1459,9 +1460,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 1034, @@ -1483,17 +1484,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "status": "valid", - "tx_hash": "b6a736a4fd59cb03b85c0bd46d2bc7fde79eb19d5640aaa712dc1f408d1874fc", + "tx_hash": "d2148757ac842c5f93a46eda14257170736dd4843312724e9de80159089bd3f4", "tx_index": 9, - "block_time": 1739520982, + "block_time": 1740828550, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, - "tx_hash": "b6a736a4fd59cb03b85c0bd46d2bc7fde79eb19d5640aaa712dc1f408d1874fc", + "tx_hash": "d2148757ac842c5f93a46eda14257170736dd4843312724e9de80159089bd3f4", "block_index": 112, - "block_time": 1739520982 + "block_time": 1740828550 } ], "next_cursor": 58, @@ -1515,9 +1516,10 @@ Returns server information and the list of documented routes in JSON format. "result": { "server_ready": true, "network": "mainnet", - "version": "10.10.0", + "version": "10.10.1", "backend_height": 850214, "counterparty_height": 850214, + "ledger_state": "following", "documentation": "https://counterpartycore.docs.apiary.io/", "blueprint": "http://localhost:4000/v2/blueprint" } @@ -1532,17 +1534,17 @@ Unconfirmed transactions are considered unordered and each one is parsed indepen ## Group Blocks -### Get Blocks [GET /v2/blocks{?cursor}{&limit}{&offset}{&verbose}] +### Get Blocks [GET /v2/blocks{?cursor,limit,offset,verbose}] Returns the list of the last ten blocks + Parameters - + cursor: `245` (str, optional) - The index of the most recent block to return - + Default: `None` + + cursor: `245` (int, optional) - The index of the most recent block to return + + Default: `null` + limit: `5` (int, optional) - The number of blocks to return + Default: `10` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -1553,56 +1555,56 @@ Returns the list of the last ten blocks "result": [ { "block_index": 245, - "block_hash": "69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496", - "block_time": 1739521461, - "ledger_hash": "b7e1742689aa60389b2445303b6e29cc854a50f88e9d7af3fed708f2d1304b76", - "txlist_hash": "5ebd157889a49b7be1d3c82b3dba5ac90f7ebe1b748c28ab5880e0a8bd7b1974", - "messages_hash": "d482fb968cbb23e330f5094acf6e3780da357d5c03d4a45192877ddc5276d79d", - "previous_block_hash": "65e13e048df8b1a6ac5f132072086cb7c07ea111a2e854ed45394b509352a90e", + "block_hash": "584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603", + "block_time": 1740829057, + "ledger_hash": "ebef3aae800476295d0b74454f81e5e150b5337edbb860ba126329b74a2f0619", + "txlist_hash": "dd4612f219ea5359cff45f287a761b3806f59b3c0a0a1f0859196bb7b8f80988", + "messages_hash": "a9e07cbe1d45046a30ccfaaa6ff19a8a14692a1f3b9babef48c7a5d7b51631a6", + "previous_block_hash": "328079132fb07c130d9e9ca79fc0e011f0df928084d8a6e08e2d26d59bb62d79", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 244, - "block_hash": "65e13e048df8b1a6ac5f132072086cb7c07ea111a2e854ed45394b509352a90e", - "block_time": 1739521455, - "ledger_hash": "23eacb90c6479d6a4405d275686f0c170f7f3d0d223e9954724028aed690bf00", - "txlist_hash": "010a9c65729423e5d8f4450ddcfc2c17cd8023d074c8272550e9a835366ea1d4", - "messages_hash": "eddbcaa525310313680c8f056409e3ffc7b378e0b5f64ab34e0316981a214aea", - "previous_block_hash": "4f2deae8d82dae58dd8981977a301115b5e934904837505432fbf9e81537a28d", + "block_hash": "328079132fb07c130d9e9ca79fc0e011f0df928084d8a6e08e2d26d59bb62d79", + "block_time": 1740829051, + "ledger_hash": "3c41527e3a59dab18f0a3d3c6ee5452d0206fa276f8a855d480c9dfb38c056c7", + "txlist_hash": "f358e68183bcc663b13423215f0769102059d890a10cc197f94f83233f7b0d3a", + "messages_hash": "8a97d2183590cc154698b500f608b70e482c31e9230be8f2b67bb3c2ae69a9d5", + "previous_block_hash": "6fff51e803e99e0f4b459178803a5bbe30f7ac7bbc5002da114a5dd3908cc1d2", "difficulty": 545259519, "transaction_count": 0 }, { "block_index": 243, - "block_hash": "4f2deae8d82dae58dd8981977a301115b5e934904837505432fbf9e81537a28d", - "block_time": 1739521452, - "ledger_hash": "096f7d3320200c53ca33a9119d97617942f745ff49a5ef445ad23a98968bb44f", - "txlist_hash": "dd064554a02ca157bfb3c6f60d8925b4909a4f2b93150d82f18893d870557c3e", - "messages_hash": "0679ab626a4a16de1bf3fa4733c19258727534de130654ad4b8d5c50c74a757c", - "previous_block_hash": "1bfc26f1a65f4ba0c901a546b810c9b13684446fe43739da34e4a8bd4b66b77c", + "block_hash": "6fff51e803e99e0f4b459178803a5bbe30f7ac7bbc5002da114a5dd3908cc1d2", + "block_time": 1740829048, + "ledger_hash": "a304b67733f1ce6539afb9f6b20061e4038a949d6fb0d7b935a4f3902bea04fa", + "txlist_hash": "99d4126d54a1ede6273d6ec4a41b06513ac9cfdb299dc3edeabae555ac098c2c", + "messages_hash": "b7e62f66331a802bd8066a64df778e7e778dc92879e387ae56b0a101f0806d5d", + "previous_block_hash": "18f2f869c7a16297a7af98039708a93d444f0397acf7123601a3e8b758b2f88b", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 242, - "block_hash": "1bfc26f1a65f4ba0c901a546b810c9b13684446fe43739da34e4a8bd4b66b77c", - "block_time": 1739521449, - "ledger_hash": "b2db2c67895f2d744fa585a0427bb164b7906ce594dff7936814059768201e1d", - "txlist_hash": "a55ed32e5b89ddc444e74ab681313484537cb884d5cc728758514c9b94e13c2c", - "messages_hash": "53474de58df9e19f6060bc3851d62c143db503cbb3b5f6445bfc045bae084861", - "previous_block_hash": "4412e94a7d8da62114cbaa8690aa1f078965e5b7221843fd7427cbf1ec4de9b9", + "block_hash": "18f2f869c7a16297a7af98039708a93d444f0397acf7123601a3e8b758b2f88b", + "block_time": 1740829045, + "ledger_hash": "1f1e6bf50ec870475d8e8774ce3575a25e9e2891fd20eb59ef3490e438482406", + "txlist_hash": "5ff38efb3ad715957de698dca984deb630377ec6c3c35f580ea993e9c3f81160", + "messages_hash": "872cb5b05ce2bb2b7ab8c5b3340fb0b1c736589efb553aaf645dc893ec1f7a59", + "previous_block_hash": "79f4e3c7b88806d4110bdde6fec64b0dbea6237fc9f01ba8a78267678194dc89", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 241, - "block_hash": "4412e94a7d8da62114cbaa8690aa1f078965e5b7221843fd7427cbf1ec4de9b9", - "block_time": 1739521445, - "ledger_hash": "f60cf87afb43316c9b8f04a2b05d254bd5ce3e8771b3773c09b4bdfd0b7eb3e8", - "txlist_hash": "620ba72f732759f4d09fb43d867ec78eaa3a71aa4bee7a5277374bf64445a9d5", - "messages_hash": "41da1e2815be154b70519ffb7db87181a9163aff8b6fda91c8843860eccc3f19", - "previous_block_hash": "49df48c088c296105c8c7b01da1e6c92a9b71b777432c73cf0875fb695b8c4ef", + "block_hash": "79f4e3c7b88806d4110bdde6fec64b0dbea6237fc9f01ba8a78267678194dc89", + "block_time": 1740829042, + "ledger_hash": "660434dd10f81388375f8a32f85ab08cd6b2d2170ab50dd9b3b44bb0c77631d6", + "txlist_hash": "f5465c81811fea7bc81044776a10ad07ed01eeeec4f7ca771906293e4b203366", + "messages_hash": "62ffe70882dd3dbdee87181c927d5b08699a685ec2ec8749ac768d6365e2efe8", + "previous_block_hash": "23c6cb0aad5240b09874e056b9df369fc393eab12c8f0bb78b9f7edb5e0fd1e8", "difficulty": 545259519, "transaction_count": 1 } @@ -1626,12 +1628,12 @@ Return the information of the last block { "result": { "block_index": 245, - "block_hash": "69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496", - "block_time": 1739521461, - "ledger_hash": "b7e1742689aa60389b2445303b6e29cc854a50f88e9d7af3fed708f2d1304b76", - "txlist_hash": "5ebd157889a49b7be1d3c82b3dba5ac90f7ebe1b748c28ab5880e0a8bd7b1974", - "messages_hash": "d482fb968cbb23e330f5094acf6e3780da357d5c03d4a45192877ddc5276d79d", - "previous_block_hash": "65e13e048df8b1a6ac5f132072086cb7c07ea111a2e854ed45394b509352a90e", + "block_hash": "584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603", + "block_time": 1740829057, + "ledger_hash": "ebef3aae800476295d0b74454f81e5e150b5337edbb860ba126329b74a2f0619", + "txlist_hash": "dd4612f219ea5359cff45f287a761b3806f59b3c0a0a1f0859196bb7b8f80988", + "messages_hash": "a9e07cbe1d45046a30ccfaaa6ff19a8a14692a1f3b9babef48c7a5d7b51631a6", + "previous_block_hash": "328079132fb07c130d9e9ca79fc0e011f0df928084d8a6e08e2d26d59bb62d79", "difficulty": 545259519, "transaction_count": 1 } @@ -1653,12 +1655,12 @@ Return the information of a block { "result": { "block_index": 245, - "block_hash": "69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496", - "block_time": 1739521461, - "ledger_hash": "b7e1742689aa60389b2445303b6e29cc854a50f88e9d7af3fed708f2d1304b76", - "txlist_hash": "5ebd157889a49b7be1d3c82b3dba5ac90f7ebe1b748c28ab5880e0a8bd7b1974", - "messages_hash": "d482fb968cbb23e330f5094acf6e3780da357d5c03d4a45192877ddc5276d79d", - "previous_block_hash": "65e13e048df8b1a6ac5f132072086cb7c07ea111a2e854ed45394b509352a90e", + "block_hash": "584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603", + "block_time": 1740829057, + "ledger_hash": "ebef3aae800476295d0b74454f81e5e150b5337edbb860ba126329b74a2f0619", + "txlist_hash": "dd4612f219ea5359cff45f287a761b3806f59b3c0a0a1f0859196bb7b8f80988", + "messages_hash": "a9e07cbe1d45046a30ccfaaa6ff19a8a14692a1f3b9babef48c7a5d7b51631a6", + "previous_block_hash": "328079132fb07c130d9e9ca79fc0e011f0df928084d8a6e08e2d26d59bb62d79", "difficulty": 545259519, "transaction_count": 1 } @@ -1670,7 +1672,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496` (str, required) - The index of the block to return + + block_hash: `584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603` (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` @@ -1680,19 +1682,19 @@ Return the information of a block { "result": { "block_index": 245, - "block_hash": "69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496", - "block_time": 1739521461, - "ledger_hash": "b7e1742689aa60389b2445303b6e29cc854a50f88e9d7af3fed708f2d1304b76", - "txlist_hash": "5ebd157889a49b7be1d3c82b3dba5ac90f7ebe1b748c28ab5880e0a8bd7b1974", - "messages_hash": "d482fb968cbb23e330f5094acf6e3780da357d5c03d4a45192877ddc5276d79d", - "previous_block_hash": "65e13e048df8b1a6ac5f132072086cb7c07ea111a2e854ed45394b509352a90e", + "block_hash": "584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603", + "block_time": 1740829057, + "ledger_hash": "ebef3aae800476295d0b74454f81e5e150b5337edbb860ba126329b74a2f0619", + "txlist_hash": "dd4612f219ea5359cff45f287a761b3806f59b3c0a0a1f0859196bb7b8f80988", + "messages_hash": "a9e07cbe1d45046a30ccfaaa6ff19a8a14692a1f3b9babef48c7a5d7b51631a6", + "previous_block_hash": "328079132fb07c130d9e9ca79fc0e011f0df928084d8a6e08e2d26d59bb62d79", "difficulty": 545259519, "transaction_count": 1 } } ``` -### Get Transactions By Block [GET /v2/blocks/{block_index}/transactions{?type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Transactions By Block [GET /v2/blocks/{block_index}/transactions{?type,show_unconfirmed,cursor,limit,offset,verbose}] Returns the transactions of a block @@ -1724,12 +1726,14 @@ Returns the transactions of a block + `detach` + `utxomove` + `unknown` - + cursor: `121` (str, optional) - The last transaction index to return - + Default: `None` + + show_unconfirmed (bool, optional) - Show unconfirmed transactions + + Default: `null` + + cursor: `121` (int, optional) - The last transaction index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -1740,17 +1744,17 @@ Returns the transactions of a block "result": [ { "tx_index": 121, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_hash": "69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496", - "block_time": 1739521461, - "source": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "destination": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "block_hash": "584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603", + "block_time": 1740829057, + "source": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "destination": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1 8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0 3 1", + "utxos_info": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1 5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0 3 1", "transaction_type": "dispense", "events": [ { @@ -1759,30 +1763,30 @@ Returns the transactions of a block "params": { "asset": "MYASSETA", "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "destination": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "destination_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "msg_index": 0, "quantity": 2000000000, "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "source": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "source_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1037, @@ -1790,17 +1794,17 @@ Returns the transactions of a block "params": { "asset": "XCP", "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "destination": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "destination_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "msg_index": 1, "quantity": 2000000000, "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "source": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "source_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1811,9 +1815,9 @@ Returns the transactions of a block }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1039, @@ -1822,9 +1826,9 @@ Returns the transactions of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "status": 0, - "tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", + "tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1835,9 +1839,9 @@ Returns the transactions of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1040, @@ -1846,14 +1850,14 @@ Returns the transactions of a block "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "destination": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "dispenser_tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1865,9 +1869,9 @@ Returns the transactions of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "unpacked_data": { @@ -1885,12 +1889,14 @@ Returns the transactions of a block } ``` -### Get Transaction Types Count By Block [GET /v2/blocks/{block_index}/transactions/counts{?verbose}] +### Get Transaction Types Count By Block [GET /v2/blocks/{block_index}/transactions/counts{?count_unconfirmed,verbose}] Returns the count of each transaction type + Parameters + block_index: `121` (int, required) - The index of the block to return + + count_unconfirmed (bool, optional) - Count unconfirmed transactions + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -1904,20 +1910,20 @@ Returns the count of each transaction type } ``` -### Get Events By Block [GET /v2/blocks/{block_index}/events{?event_name}{&cursor}{&limit}{&offset}{&verbose}] +### Get Events By Block [GET /v2/blocks/{block_index}/events{?event_name,cursor,limit,offset,verbose}] Returns the events of a block + Parameters + block_index: `245` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return - + Default: `None` - + cursor: `1042` (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + + cursor: `1042` (int, optional) - The last event index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -1931,11 +1937,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 245, - "ledger_hash": "b7e1742689aa60389b2445303b6e29cc854a50f88e9d7af3fed708f2d1304b76", - "messages_hash": "d482fb968cbb23e330f5094acf6e3780da357d5c03d4a45192877ddc5276d79d", + "ledger_hash": "ebef3aae800476295d0b74454f81e5e150b5337edbb860ba126329b74a2f0619", + "messages_hash": "a9e07cbe1d45046a30ccfaaa6ff19a8a14692a1f3b9babef48c7a5d7b51631a6", "transaction_count": 1, - "txlist_hash": "5ebd157889a49b7be1d3c82b3dba5ac90f7ebe1b748c28ab5880e0a8bd7b1974", - "block_time": 1739521461 + "txlist_hash": "dd4612f219ea5359cff45f287a761b3806f59b3c0a0a1f0859196bb7b8f80988", + "block_time": 1740829057 }, "tx_hash": null }, @@ -1944,10 +1950,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121 }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d" + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a" }, { "event_index": 1040, @@ -1956,14 +1962,14 @@ Returns the events of a block "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "destination": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "dispenser_tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1975,7 +1981,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d" + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a" }, { "event_index": 1039, @@ -1984,9 +1990,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "status": 0, - "tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", + "tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1997,22 +2003,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d" + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a" }, { "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2023,7 +2029,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d" + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a" } ], "next_cursor": 1037, @@ -2031,18 +2037,18 @@ Returns the events of a block } ``` -### Get Event Counts By Block [GET /v2/blocks/{block_index}/events/counts{?cursor}{&limit}{&offset}{&verbose}] +### Get Event Counts By Block [GET /v2/blocks/{block_index}/events/counts{?cursor,limit,offset,verbose}] Returns the event counts of a block + Parameters + block_index: `245` (int, required) - The index of the block to return - + cursor (str, optional) - The last event index to return - + Default: `None` + + cursor (str, optional) - The last event name to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2077,19 +2083,19 @@ Returns the event counts of a block } ``` -### Get Events By Block And Event [GET /v2/blocks/{block_index}/events/{event}{?cursor}{&limit}{&offset}{&verbose}] +### Get Events By Block And Event [GET /v2/blocks/{block_index}/events/{event}{?cursor,limit,offset,verbose}] Returns the events of a block filtered by event + Parameters + block_index: `245` (int, required) - The index of the block to return + event: `CREDIT` (str, required) - The event to filter by - + cursor (str, optional) - The last event index to return - + Default: `None` + + cursor (int, optional) - The last event index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2102,16 +2108,16 @@ Returns the events of a block filtered by event "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2122,7 +2128,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d" + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a" }, { "event_index": 1036, @@ -2132,12 +2138,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 245, "calling_function": "utxo move", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 2000000000, "tx_index": 121, - "utxo": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "utxo_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "utxo": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "utxo_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2148,7 +2154,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d" + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a" }, { "event_index": 1033, @@ -2158,23 +2164,23 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 245, "calling_function": "utxo move", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 2000000000, "tx_index": 121, - "utxo": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "utxo_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "utxo": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "utxo_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d" + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a" } ], "next_cursor": null, @@ -2182,14 +2188,14 @@ Returns the events of a block filtered by event } ``` -### Get Credits By Block [GET /v2/blocks/{block_index}/credits{?action}{&cursor}{&limit}{&offset}{&verbose}] +### Get Credits By Block [GET /v2/blocks/{block_index}/credits{?action,cursor,limit,offset,verbose}] Returns the credits of a block + Parameters + block_index: `245` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by - + Default: `None` + + Default: `null` + Members + `None` + `Closed: Max dispenses reached` @@ -2219,12 +2225,12 @@ Returns the credits of a block + `send` + `sweep` + `wins` - + cursor (str, optional) - The last credit index to return - + Default: `None` + + cursor (int, optional) - The last credit index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of credits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2235,15 +2241,15 @@ Returns the credits of a block "result": [ { "block_index": 245, - "address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2260,11 +2266,11 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "utxo": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "utxo_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "utxo": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "utxo_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2281,18 +2287,18 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "utxo": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "utxo_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "utxo": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "utxo_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "20.00000000" } @@ -2302,14 +2308,14 @@ Returns the credits of a block } ``` -### Get Debits By Block [GET /v2/blocks/{block_index}/debits{?action}{&cursor}{&limit}{&offset}{&verbose}] +### Get Debits By Block [GET /v2/blocks/{block_index}/debits{?action,cursor,limit,offset,verbose}] Returns the debits of a block + Parameters + block_index: `245` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by - + Default: `None` + + Default: `null` + Members + `None` + `bet` @@ -2328,12 +2334,12 @@ Returns the debits of a block + `send` + `sweep` + `sweep fee` - + cursor (str, optional) - The last index of the debits to return - + Default: `None` + + cursor (int, optional) - The last index of the debits to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of debits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2348,11 +2354,11 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "utxo": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "utxo_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "block_time": 1739521461, + "utxo": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "utxo_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2369,18 +2375,18 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "utxo": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "utxo_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "block_time": 1739521461, + "utxo": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "utxo_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "20.00000000" } @@ -2390,18 +2396,18 @@ Returns the debits of a block } ``` -### Get Expirations [GET /v2/blocks/{block_index}/expirations{?cursor}{&limit}{&offset}{&verbose}] +### Get Expirations [GET /v2/blocks/{block_index}/expirations{?cursor,limit,offset,verbose}] Returns the expirations of a block + Parameters + block_index: `211` (int, required) - The index of the block to return - + cursor (str, optional) - The last index of the expirations to return - + Default: `None` + + cursor (int, optional) - The last index of the expirations to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of expirations to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2412,9 +2418,9 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d", + "object_id": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e", "block_index": 211, - "block_time": 1739521327 + "block_time": 1740828904 } ], "next_cursor": null, @@ -2422,18 +2428,18 @@ Returns the expirations of a block } ``` -### Get Cancels [GET /v2/blocks/{block_index}/cancels{?cursor}{&limit}{&offset}{&verbose}] +### Get Cancels [GET /v2/blocks/{block_index}/cancels{?cursor,limit,offset,verbose}] Returns the cancels of a block + Parameters + block_index: `188` (int, required) - The index of the block to return - + cursor (str, optional) - The last index of the cancels to return - + Default: `None` + + cursor (int, optional) - The last index of the cancels to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of cancels to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2444,12 +2450,12 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "2bbde7fa042fa1c224b9a5a3f2be195f7c6a26e1fa1933c5196bfa073a99c3a9", + "tx_hash": "83bc5dd0f53f39e7505579a9c61725c4fb59c71b12596600530d9ac52b4b6ccc", "block_index": 188, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "offer_hash": "cf8f674f4c51eda6ce04f694f40f91f5ec6547b54760cc9cf4265f4605b0a972", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "offer_hash": "a7cd369191f065c10ebe7453c34b8e450714f388bebb16660c94bd96f42875d3", "status": "valid", - "block_time": 1739521243 + "block_time": 1740828813 } ], "next_cursor": null, @@ -2457,18 +2463,18 @@ Returns the cancels of a block } ``` -### Get Valid Destructions By Block [GET /v2/blocks/{block_index}/destructions{?cursor}{&limit}{&offset}{&verbose}] +### Get Valid Destructions By Block [GET /v2/blocks/{block_index}/destructions{?cursor,limit,offset,verbose}] Returns the destructions of a block + Parameters + block_index: `240` (int, required) - The index of the block to return - + cursor (str, optional) - The last index of the destructions to return - + Default: `None` + + cursor (int, optional) - The last index of the destructions to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of destructions to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2479,21 +2485,21 @@ Returns the destructions of a block "result": [ { "tx_index": 117, - "tx_hash": "ee2e560616c0210f8595e6bae438b454a42afb78429bc11025326229fddbacc6", + "tx_hash": "f4d12929bf09e18a3f5e5a434ce9f7147a5e36c1530c3f3ea69e67d9378627dc", "block_index": 240, - "source": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "source": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "asset": "RESET", "quantity": 12, "tag": "reset", "status": "valid", - "block_time": 1739521440, + "block_time": 1740829037, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "issuer": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "divisible": true, "locked": false, - "owner": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v" + "owner": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch" }, "quantity_normalized": "0.00000012" } @@ -2503,7 +2509,7 @@ Returns the destructions of a block } ``` -### Get Issuances By Block [GET /v2/blocks/{block_index}/issuances{?asset_events}{&cursor}{&limit}{&offset}{&verbose}] +### Get Issuances By Block [GET /v2/blocks/{block_index}/issuances{?asset_events,cursor,limit,offset,verbose}] Returns the issuances of a block @@ -2522,12 +2528,12 @@ Returns the issuances of a block + `open_fairminter` + `fairmint` + `lock_description` - + cursor (str, optional) - The last index of the issuances to return - + Default: `None` + + cursor (int, optional) - The last index of the issuances to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of issuances to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2538,14 +2544,14 @@ Returns the issuances of a block "result": [ { "tx_index": 120, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "msg_index": 0, "block_index": 243, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "issuer": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "issuer": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "transfer": false, "callable": false, "call_date": 0, @@ -2559,7 +2565,7 @@ Returns the issuances of a block "asset_events": "open_fairminter", "locked": false, "reset": false, - "block_time": 1739521452, + "block_time": 1740829048, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -2569,7 +2575,7 @@ Returns the issuances of a block } ``` -### Get Sends By Block [GET /v2/blocks/{block_index}/sends{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Sends By Block [GET /v2/blocks/{block_index}/sends{?send_type,cursor,limit,offset,verbose}] Returns the sends, include Enhanced and MPMA sends, of a block @@ -2583,12 +2589,12 @@ Returns the sends, include Enhanced and MPMA sends, of a block + `attach` + `move` + `detach` - + cursor (str, optional) - The last index of the debits to return - + Default: `None` + + cursor (int, optional) - The last index of the debits to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of debits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2599,10 +2605,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 121, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", + "source": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "destination": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2610,9 +2616,9 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "send_type": "move", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "source_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "destination_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2626,10 +2632,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 121, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", + "source": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "destination": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2637,16 +2643,16 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "send_type": "move", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "source_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "destination_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" @@ -2657,18 +2663,18 @@ Returns the sends, include Enhanced and MPMA sends, of a block } ``` -### Get Dispenses By Block [GET /v2/blocks/{block_index}/dispenses{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Block [GET /v2/blocks/{block_index}/dispenses{?cursor,limit,offset,verbose}] Returns the dispenses of a block + Parameters + block_index: `245` (int, required) - The index of the block to return - + cursor (str, optional) - The last index of the dispenses to return - + Default: `None` + + cursor (int, optional) - The last index of the dispenses to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2680,26 +2686,26 @@ Returns the dispenses of a block { "tx_index": 121, "dispense_index": 0, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "destination": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "destination": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", + "dispenser_tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 245, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "oracle_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "last_status_tx_hash": null, - "origin": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "origin": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2714,7 +2720,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2732,18 +2738,18 @@ Returns the dispenses of a block } ``` -### Get Sweeps By Block [GET /v2/blocks/{block_index}/sweeps{?cursor}{&limit}{&offset}{&verbose}] +### Get Sweeps By Block [GET /v2/blocks/{block_index}/sweeps{?cursor,limit,offset,verbose}] Returns the sweeps of a block + Parameters + block_index: `190` (int, required) - The index of the block to return - + cursor (str, optional) - The last index of the sweeps to return - + Default: `None` + + cursor (int, optional) - The last index of the sweeps to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of sweeps to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2754,15 +2760,15 @@ Returns the sweeps of a block "result": [ { "tx_index": 65, - "tx_hash": "044dc2f444bb200b4d68580cf959677a95d16b1bdb21e12005f65f0f00713808", + "tx_hash": "72123381d3d5f2f6456953edbe047571c6a9ec0b83df3f82d191c130c1312308", "block_index": 190, - "source": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "source": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", + "destination": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1739521250, + "block_time": 1740828820, "fee_paid_normalized": "0.00600000" } ], @@ -2771,7 +2777,7 @@ Returns the sweeps of a block } ``` -### Get Fairminters By Block [GET /v2/blocks/{block_index}/fairminters{?status}{&cursor}{&limit}{&offset}{&verbose}] +### Get Fairminters By Block [GET /v2/blocks/{block_index}/fairminters{?status,cursor,limit,offset,verbose}] Returns the fairminters by its block index @@ -2784,12 +2790,12 @@ Returns the fairminters by its block index + `open` + `closed` + `pending` - + cursor (str, optional) - The last index of the fairminter to return - + Default: `None` + + cursor (int, optional) - The last index of the fairminter to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of fairminter to return + Default: `100` + offset (int, optional) - The number of lines to skip before - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2799,10 +2805,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "tx_index": 120, "block_index": 243, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -2826,7 +2832,7 @@ Returns the fairminters by its block index "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1739521452, + "block_time": 1740829048, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2840,18 +2846,18 @@ Returns the fairminters by its block index } ``` -### Get Fairmints By Block [GET /v2/blocks/{block_index}/fairmints{?cursor}{&limit}{&offset}{&verbose}] +### Get Fairmints By Block [GET /v2/blocks/{block_index}/fairmints{?cursor,limit,offset,verbose}] Returns the fairmints by its block index + Parameters + block_index: `221` (int, required) - The block index of the fairmint to return - + cursor (str, optional) - The last index of the fairmint to return - + Default: `None` + + cursor (int, optional) - The last index of the fairmint to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of fairmint to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2861,24 +2867,24 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "da5909f5daabaf97f1078d2093cd0c5ab30953de6cf5f2448042f064403d0151", + "tx_hash": "96b3adc55c1b6ad57cd78dd14626b34bab64cd19469f6bc607375e92c184f763", "tx_index": 97, "block_index": 221, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "fairminter_tx_hash": "73cc5b764a2dfa8288be33f743bd46f5a4f870b1ad45d6a343c74788ff2988d7", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "fairminter_tx_hash": "0ed86bb695761399b0309987199ec5de9c0ef5264d1fc71ac75c88b887160038", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1739521360, + "block_time": 1740828943, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "issuer": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "divisible": true, "locked": true, - "owner": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v" + "owner": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch" }, "earn_quantity_normalized": "0.80000000", "commission_normalized": "0.20000000", @@ -2917,53 +2923,19 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "1ede279106bb92c422b245709047acd8a45ff8ed10039944c990c5c132e787d6", + "tx_hash": "849687ba372cccfc60c8dff203c79510d9fd69ef2911131a7d9b2ff2c42cc97d", "block_index": 129, - "block_hash": "1403e061918aa0f8b461ded8819689484e45f6efd53306bc53a1e4d040e30bb3", - "block_time": 1739521044, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "block_hash": "627c3d835fa27fe9c84e3d795ba3b3bf20db3269eecff3c480b483d38af6cfb1", + "block_time": 1740828614, + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 1ede279106bb92c422b245709047acd8a45ff8ed10039944c990c5c132e787d6:1 2 0", + "utxos_info": " 849687ba372cccfc60c8dff203c79510d9fd69ef2911131a7d9b2ff2c42cc97d:1 2 0", "transaction_type": "broadcast", - "events": [ - { - "event_index": 210, - "event": "BROADCAST", - "params": { - "block_index": 129, - "fee_fraction_int": 0, - "locked": false, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "status": "valid", - "text": "price-USD", - "timestamp": 4003903983, - "tx_hash": "1ede279106bb92c422b245709047acd8a45ff8ed10039944c990c5c132e787d6", - "tx_index": 25, - "value": 66600.0, - "block_time": 1739521044, - "fee_fraction_int_normalized": "0.00000000" - }, - "tx_hash": "1ede279106bb92c422b245709047acd8a45ff8ed10039944c990c5c132e787d6", - "block_index": 129, - "block_time": 1739521044 - } - ], - "unpacked_data": { - "message_type": "broadcast", - "message_type_id": 30, - "message_data": { - "timestamp": 4003903983, - "value": 66600.0, - "fee_fraction_int": 0, - "text": "price-USD", - "status": "valid", - "fee_fraction_int_normalized": "0.00000000" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00000000" } } @@ -2975,72 +2947,19 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "bd080a757eb15b17b393448a141bc55c9f0ba3abf17418394f3650bfbab3f36a", + "tx_hash": "06412ffcbd6edb35c1e8d3675fc49dd9ab65261b7b073c802b28bcdb94f87378", "block_index": 182, - "block_hash": "65a653354c70dddf40e7731126b2d4df8c29db96c7d5ac8251173a6dd0c2262a", - "block_time": 1739521222, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "block_hash": "0c32e7e0e6ce3412fc5f3e6872ba2fa5cc9d04215f0b2e8783a5d5c888e778b8", + "block_time": 1740828793, + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "destination": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "btc_amount": 2000, "fee": 10000, - "data": "0ba8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d2740744fa443af3d8146e5f255bf38e1a0d849b7183397bf60d8d801f9a99b8427", + "data": "0b6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b40da9f1752c4ca6ee37cda5df51af6264728d86ed00ce2615db55a58b86510462", "supported": true, - "utxos_info": " bd080a757eb15b17b393448a141bc55c9f0ba3abf17418394f3650bfbab3f36a:0 3 1", + "utxos_info": " 06412ffcbd6edb35c1e8d3675fc49dd9ab65261b7b073c802b28bcdb94f87378:0 3 1", "transaction_type": "btcpay", - "events": [ - { - "event_index": 506, - "event": "ORDER_MATCH_UPDATE", - "params": { - "id": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27_40744fa443af3d8146e5f255bf38e1a0d849b7183397bf60d8d801f9a99b8427", - "order_match_id": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27_40744fa443af3d8146e5f255bf38e1a0d849b7183397bf60d8d801f9a99b8427", - "status": "completed" - }, - "tx_hash": "bd080a757eb15b17b393448a141bc55c9f0ba3abf17418394f3650bfbab3f36a", - "block_index": 182, - "block_time": 1739521222 - }, - { - "event_index": 507, - "event": "ORDER_FILLED", - "params": { - "status": "filled", - "tx_hash": "40744fa443af3d8146e5f255bf38e1a0d849b7183397bf60d8d801f9a99b8427" - }, - "tx_hash": "bd080a757eb15b17b393448a141bc55c9f0ba3abf17418394f3650bfbab3f36a", - "block_index": 182, - "block_time": 1739521222 - }, - { - "event_index": 508, - "event": "BTC_PAY", - "params": { - "block_index": 182, - "btc_amount": 2000, - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "order_match_id": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27_40744fa443af3d8146e5f255bf38e1a0d849b7183397bf60d8d801f9a99b8427", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "status": "valid", - "tx_hash": "bd080a757eb15b17b393448a141bc55c9f0ba3abf17418394f3650bfbab3f36a", - "tx_index": 57, - "block_time": 1739521222, - "btc_amount_normalized": "0.00002000" - }, - "tx_hash": "bd080a757eb15b17b393448a141bc55c9f0ba3abf17418394f3650bfbab3f36a", - "block_index": 182, - "block_time": 1739521222 - } - ], - "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, - "message_data": { - "tx0_hash": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27", - "tx1_hash": "40744fa443af3d8146e5f255bf38e1a0d849b7183397bf60d8d801f9a99b8427", - "order_match_id": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27_40744fa443af3d8146e5f255bf38e1a0d849b7183397bf60d8d801f9a99b8427", - "status": "valid" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00002000" } } @@ -3052,55 +2971,19 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "2bbde7fa042fa1c224b9a5a3f2be195f7c6a26e1fa1933c5196bfa073a99c3a9", + "tx_hash": "83bc5dd0f53f39e7505579a9c61725c4fb59c71b12596600530d9ac52b4b6ccc", "block_index": 188, - "block_hash": "0efbddd8627ee7a7f4ee29e1aa71b7cf093c883beb1f403b605e74fbc519a534", - "block_time": 1739521243, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "block_hash": "19f328fca6d4e2b0289ac4b1d4a6a3fb3b106a807eb4e88673f8f5d81311939b", + "block_time": 1740828813, + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46cf8f674f4c51eda6ce04f694f40f91f5ec6547b54760cc9cf4265f4605b0a972", + "data": "46a7cd369191f065c10ebe7453c34b8e450714f388bebb16660c94bd96f42875d3", "supported": true, - "utxos_info": " 2bbde7fa042fa1c224b9a5a3f2be195f7c6a26e1fa1933c5196bfa073a99c3a9:1 2 0", + "utxos_info": " 83bc5dd0f53f39e7505579a9c61725c4fb59c71b12596600530d9ac52b4b6ccc:1 2 0", "transaction_type": "cancel", - "events": [ - { - "event_index": 551, - "event": "ORDER_UPDATE", - "params": { - "status": "cancelled", - "tx_hash": "cf8f674f4c51eda6ce04f694f40f91f5ec6547b54760cc9cf4265f4605b0a972" - }, - "tx_hash": "2bbde7fa042fa1c224b9a5a3f2be195f7c6a26e1fa1933c5196bfa073a99c3a9", - "block_index": 188, - "block_time": 1739521243 - }, - { - "event_index": 553, - "event": "CANCEL_ORDER", - "params": { - "block_index": 188, - "offer_hash": "cf8f674f4c51eda6ce04f694f40f91f5ec6547b54760cc9cf4265f4605b0a972", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "status": "valid", - "tx_hash": "2bbde7fa042fa1c224b9a5a3f2be195f7c6a26e1fa1933c5196bfa073a99c3a9", - "tx_index": 63, - "block_time": 1739521243 - }, - "tx_hash": "2bbde7fa042fa1c224b9a5a3f2be195f7c6a26e1fa1933c5196bfa073a99c3a9", - "block_index": 188, - "block_time": 1739521243 - } - ], - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "cf8f674f4c51eda6ce04f694f40f91f5ec6547b54760cc9cf4265f4605b0a972", - "status": "valid" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00000000" } } @@ -3112,97 +2995,19 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 117, - "tx_hash": "ee2e560616c0210f8595e6bae438b454a42afb78429bc11025326229fddbacc6", + "tx_hash": "f4d12929bf09e18a3f5e5a434ce9f7147a5e36c1530c3f3ea69e67d9378627dc", "block_index": 240, - "block_hash": "49df48c088c296105c8c7b01da1e6c92a9b71b777432c73cf0875fb695b8c4ef", - "block_time": 1739521440, - "source": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "block_hash": "23c6cb0aad5240b09874e056b9df369fc393eab12c8f0bb78b9f7edb5e0fd1e8", + "block_time": 1740829037, + "source": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "destination": null, "btc_amount": 0, "fee": 0, "data": "16000000000077ccb30000000047868c00010001c04e554c4c", "supported": true, - "utxos_info": " ee2e560616c0210f8595e6bae438b454a42afb78429bc11025326229fddbacc6:1 2 0", + "utxos_info": " f4d12929bf09e18a3f5e5a434ce9f7147a5e36c1530c3f3ea69e67d9378627dc:1 2 0", "transaction_type": "issuance", - "events": [ - { - "event_index": 1000, - "event": "ASSET_DESTRUCTION", - "params": { - "asset": "RESET", - "block_index": 240, - "quantity": 12, - "source": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "status": "valid", - "tag": "reset", - "tx_hash": "ee2e560616c0210f8595e6bae438b454a42afb78429bc11025326229fddbacc6", - "tx_index": 117, - "block_time": 1739521440, - "asset_info": { - "asset_longname": null, - "description": "", - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "divisible": true, - "locked": false, - "owner": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v" - }, - "quantity_normalized": "0.00000012" - }, - "tx_hash": "ee2e560616c0210f8595e6bae438b454a42afb78429bc11025326229fddbacc6", - "block_index": 240, - "block_time": 1739521440 - }, - { - "event_index": 1001, - "event": "RESET_ISSUANCE", - "params": { - "asset": "RESET", - "asset_events": "reset", - "asset_longname": null, - "block_index": 240, - "call_date": 0, - "call_price": 0.0, - "callable": false, - "description": "", - "divisible": true, - "fee_paid": 0, - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "locked": false, - "quantity": 1200000000, - "reset": true, - "source": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "status": "valid", - "transfer": false, - "tx_hash": "ee2e560616c0210f8595e6bae438b454a42afb78429bc11025326229fddbacc6", - "tx_index": 117, - "block_time": 1739521440, - "quantity_normalized": "12.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "ee2e560616c0210f8595e6bae438b454a42afb78429bc11025326229fddbacc6", - "block_index": 240, - "block_time": 1739521440 - } - ], - "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, - "message_data": { - "asset_id": 7851187, - "asset": "RESET", - "subasset_longname": null, - "quantity": 1200000000, - "divisible": true, - "lock": false, - "reset": true, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "status": "valid", - "quantity_normalized": "12.00000000" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00000000" } } @@ -3214,79 +3019,19 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 114, - "tx_hash": "7106c5bc21452894b653fbef9ca6d21beeb1ccb4e588238542b22d9296eb9ca3", + "tx_hash": "bad25a9b2a401e6deb9bb92d2db817b52cf1bca6baaa182726858cec4ce578ee", "block_index": 236, - "block_hash": "1f35e4be464bd73bf966f623361a3254e0d80631d55bf3657190e5ea9ab4034b", - "block_time": 1739521427, - "source": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", + "block_hash": "0a1056bcb05e86019eb380197700c83a16203049457972bf83573926e9525ea4", + "block_time": 1740829024, + "source": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", "destination": null, "btc_amount": 0, "fee": 0, "data": "0c000000000000000100000000000000010000000000001388000000000000000100", "supported": true, - "utxos_info": " 7106c5bc21452894b653fbef9ca6d21beeb1ccb4e588238542b22d9296eb9ca3:1 2 0", + "utxos_info": " bad25a9b2a401e6deb9bb92d2db817b52cf1bca6baaa182726858cec4ce578ee:1 2 0", "transaction_type": "dispenser", - "events": [ - { - "event_index": 976, - "event": "OPEN_DISPENSER", - "params": { - "asset": "XCP", - "block_index": 236, - "dispense_count": 0, - "escrow_quantity": 5000, - "give_quantity": 1, - "give_remaining": 5000, - "oracle_address": null, - "origin": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", - "satoshirate": 1, - "source": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", - "status": 0, - "tx_hash": "7106c5bc21452894b653fbef9ca6d21beeb1ccb4e588238542b22d9296eb9ca3", - "tx_index": 114, - "block_time": 1739521427, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00005000", - "escrow_quantity_normalized": "0.00005000", - "satoshirate_normalized": "0.00000001" - }, - "tx_hash": "7106c5bc21452894b653fbef9ca6d21beeb1ccb4e588238542b22d9296eb9ca3", - "block_index": 236, - "block_time": 1739521427 - } - ], - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 5000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00005000" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00000000" } } @@ -3298,143 +3043,19 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 121, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_hash": "69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496", - "block_time": 1739521461, - "source": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "destination": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "block_hash": "584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603", + "block_time": 1740829057, + "source": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "destination": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1 8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0 3 1", + "utxos_info": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1 5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0 3 1", "transaction_type": "dispense", - "events": [ - { - "event_index": 1034, - "event": "UTXO_MOVE", - "params": { - "asset": "MYASSETA", - "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "msg_index": 0, - "quantity": 2000000000, - "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "tx_index": 121, - "block_time": 1739521461, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "divisible": true, - "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - }, - { - "event_index": 1037, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "msg_index": 1, - "quantity": 2000000000, - "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "tx_index": 121, - "block_time": 1739521461, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - }, - { - "event_index": 1039, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "status": 0, - "tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - }, - { - "event_index": 1040, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 245, - "btc_amount": 1000, - "destination": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "tx_index": 121, - "block_time": 1739521461, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - } - ], - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00001000" } } @@ -3446,84 +3067,19 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "c0499fc716e02168b13d0671c53a2703345dec81922ca1f554b62ac771d7c500", + "tx_hash": "99d36be41498610f317041e44269b50021d097e81ef4da4f2662e26d4a5b2046", "block_index": 146, - "block_hash": "5e1e58178877d939920df73fe93f80bab29fcd4617b42a84cdfc801605623691", - "block_time": 1739521105, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "block_hash": "57cf5835a8dc4253ebcc7aad04f58314b4d239e38790c6faa362496894da59f0", + "block_time": 1740828677, + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " c0499fc716e02168b13d0671c53a2703345dec81922ca1f554b62ac771d7c500:1 2 0", + "utxos_info": " 99d36be41498610f317041e44269b50021d097e81ef4da4f2662e26d4a5b2046:1 2 0", "transaction_type": "dividend", - "events": [ - { - "event_index": 338, - "event": "ASSET_DIVIDEND", - "params": { - "asset": "MYASSETA", - "block_index": 146, - "dividend_asset": "XCP", - "fee_paid": 20000, - "quantity_per_unit": 100000000, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "status": "valid", - "tx_hash": "c0499fc716e02168b13d0671c53a2703345dec81922ca1f554b62ac771d7c500", - "tx_index": 42, - "block_time": 1739521105, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "divisible": true, - "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00020000" - }, - "tx_hash": "c0499fc716e02168b13d0671c53a2703345dec81922ca1f554b62ac771d7c500", - "block_index": 146, - "block_time": 1739521105 - } - ], - "unpacked_data": { - "message_type": "dividend", - "message_type_id": 50, - "message_data": { - "asset": "MYASSETA", - "quantity_per_unit": 100000000, - "dividend_asset": "XCP", - "status": "valid", - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "divisible": true, - "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" - }, - "dividend_asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "quantity_per_unit_normalized": "1.00000000" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00000000" } } @@ -3535,135 +3091,19 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 120, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "block_index": 243, - "block_hash": "4f2deae8d82dae58dd8981977a301115b5e934904837505432fbf9e81537a28d", - "block_time": 1739521452, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "block_hash": "6fff51e803e99e0f4b459178803a5bbe30f7ac7bbc5002da114a5dd3908cc1d2", + "block_time": 1740829048, + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae:1 2 0", + "utxos_info": " 22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472:1 2 0", "transaction_type": "fairminter", - "events": [ - { - "event_index": 1021, - "event": "NEW_FAIRMINTER", - "params": { - "asset": "OPENFAIR", - "asset_longname": null, - "asset_parent": null, - "block_index": 243, - "burn_payment": false, - "description": "", - "divisible": true, - "end_block": 0, - "hard_cap": 0, - "lock_description": false, - "lock_quantity": false, - "max_mint_per_tx": 10, - "minted_asset_commission_int": 0, - "pre_minted": false, - "premint_quantity": 0, - "price": 0, - "quantity_by_price": 1, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "start_block": 0, - "status": "open", - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", - "tx_index": 120, - "block_time": 1739521452, - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000010", - "premint_quantity_normalized": "0.00000000" - }, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", - "block_index": 243, - "block_time": 1739521452 - }, - { - "event_index": 1022, - "event": "ASSET_CREATION", - "params": { - "asset_id": "117132633401", - "asset_longname": null, - "asset_name": "OPENFAIR", - "block_index": 243, - "block_time": 1739521452 - }, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", - "block_index": 243, - "block_time": 1739521452 - }, - { - "event_index": 1023, - "event": "ASSET_ISSUANCE", - "params": { - "asset": "OPENFAIR", - "asset_events": "open_fairminter", - "asset_longname": null, - "block_index": 243, - "call_date": 0, - "call_price": 0, - "callable": false, - "description": "", - "divisible": true, - "fair_minting": true, - "fee_paid": 50000000.0, - "issuer": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "locked": false, - "quantity": 0, - "reset": false, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "status": "valid", - "transfer": false, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", - "tx_index": 120, - "block_time": 1739521452, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.50000000" - }, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", - "block_index": 243, - "block_time": 1739521452 - } - ], - "unpacked_data": { - "message_type": "fairminter", - "message_type_id": 90, - "message_data": { - "asset": "OPENFAIR", - "asset_parent": "", - "price": 0, - "quantity_by_price": 1, - "max_mint_per_tx": 10, - "hard_cap": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "minted_asset_commission": "0.00000000", - "burn_payment": false, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "description": "", - "price_normalized": "0.0000000000000000", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000010", - "premint_quantity_normalized": "0.00000000" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00000000" } } @@ -3675,182 +3115,19 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 119, - "tx_hash": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", + "tx_hash": "09a9ea40d09b684df4217ebf24d162a34cb7edfb0e1d3059128cc3b5c78ee602", "block_index": 242, - "block_hash": "1bfc26f1a65f4ba0c901a546b810c9b13684446fe43739da34e4a8bd4b66b77c", - "block_time": 1739521449, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "block_hash": "18f2f869c7a16297a7af98039708a93d444f0397acf7123601a3e8b758b2f88b", + "block_time": 1740829045, + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000000000000000003e8000003f1a69ea1d300000000000003e800150000000000000000", "supported": true, - "utxos_info": " 3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d:1 2 0", + "utxos_info": " 09a9ea40d09b684df4217ebf24d162a34cb7edfb0e1d3059128cc3b5c78ee602:1 2 0", "transaction_type": "order", - "events": [ - { - "event_index": 1013, - "event": "OPEN_ORDER", - "params": { - "block_index": 242, - "expiration": 21, - "expire_index": 263, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "fee_required": 0, - "fee_required_remaining": 0, - "get_asset": "UTXOASSET", - "get_quantity": 1000, - "get_remaining": 1000, - "give_asset": "BTC", - "give_quantity": 1000, - "give_remaining": 1000, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "status": "open", - "tx_hash": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", - "tx_index": 119, - "block_time": 1739521449, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q", - "divisible": true, - "locked": false, - "owner": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q" - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - "tx_hash": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", - "block_index": 242, - "block_time": 1739521449 - }, - { - "event_index": 1014, - "event": "ORDER_UPDATE", - "params": { - "fee_provided_remaining": 10000, - "fee_required_remaining": 0, - "get_remaining": 0, - "give_remaining": 0, - "status": "open", - "tx_hash": "2e13cad1929c51e6916720e858e668826c1bde62b85838bb77b5b62de0202189", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - "tx_hash": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", - "block_index": 242, - "block_time": 1739521449 - }, - { - "event_index": 1015, - "event": "ORDER_UPDATE", - "params": { - "fee_provided_remaining": 10000, - "fee_required_remaining": 0, - "get_remaining": 0, - "give_remaining": 0, - "status": "open", - "tx_hash": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - "tx_hash": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", - "block_index": 242, - "block_time": 1739521449 - }, - { - "event_index": 1016, - "event": "ORDER_MATCH", - "params": { - "backward_asset": "BTC", - "backward_quantity": 1000, - "block_index": 242, - "fee_paid": 0, - "forward_asset": "UTXOASSET", - "forward_quantity": 1000, - "id": "2e13cad1929c51e6916720e858e668826c1bde62b85838bb77b5b62de0202189_3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", - "match_expire_index": 262, - "status": "pending", - "tx0_address": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q", - "tx0_block_index": 241, - "tx0_expiration": 21, - "tx0_hash": "2e13cad1929c51e6916720e858e668826c1bde62b85838bb77b5b62de0202189", - "tx0_index": 118, - "tx1_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "tx1_block_index": 242, - "tx1_expiration": 21, - "tx1_hash": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", - "tx1_index": 119, - "block_time": 1739521449, - "forward_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q", - "divisible": true, - "locked": false, - "owner": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q" - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "3a40935ca02a9514aaadb95330635f711db9b4df35b938b78b537c1b0268618d", - "block_index": 242, - "block_time": 1739521449 - } - ], - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "BTC", - "give_quantity": 1000, - "get_asset": "UTXOASSET", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q", - "divisible": true, - "locked": false, - "owner": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q" - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00000000" } } @@ -3862,69 +3139,19 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "4c3f41b6e9e6595de5ae567d6b4f3019021ef5ece2f0bc855b15dfff821e0ef7", + "tx_hash": "469dbbf4907b7617d285482169d25cd856bb1c7e36cfd4aa2299e5c0ffd4ff83", "block_index": 201, - "block_hash": "07c8917aa73ea91ec044b03556a39665617decbf2a87118ae419a7af5842a801", - "block_time": 1739521290, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "block_hash": "3c619cde0d07d791e5605b16e433681c81069c965cb148eee323afe99d56d6ca", + "block_time": 1740828867, + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8803beb477813b4b1c3fa2fe5c867b22d9d1355d09b", + "data": "02000000178d82231300000000000003e880a952ded2ef91baf58bef9d353640b5fd09d209f5", "supported": true, - "utxos_info": " 4c3f41b6e9e6595de5ae567d6b4f3019021ef5ece2f0bc855b15dfff821e0ef7:1 2 0", + "utxos_info": " 469dbbf4907b7617d285482169d25cd856bb1c7e36cfd4aa2299e5c0ffd4ff83:1 2 0", "transaction_type": "enhanced_send", - "events": [ - { - "event_index": 653, - "event": "ENHANCED_SEND", - "params": { - "asset": "MPMASSET", - "block_index": 201, - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "memo": null, - "msg_index": 0, - "quantity": 1000, - "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "status": "valid", - "tx_hash": "4c3f41b6e9e6595de5ae567d6b4f3019021ef5ece2f0bc855b15dfff821e0ef7", - "tx_index": 77, - "block_time": 1739521290, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "divisible": true, - "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" - }, - "quantity_normalized": "0.00001000" - }, - "tx_hash": "4c3f41b6e9e6595de5ae567d6b4f3019021ef5ece2f0bc855b15dfff821e0ef7", - "block_index": 201, - "block_time": 1739521290 - } - ], - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "MPMASSET", - "quantity": 1000, - "address": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "memo": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "divisible": true, - "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" - }, - "quantity_normalized": "0.00001000" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00000000" } } @@ -3936,172 +3163,19 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "block_index": 205, - "block_hash": "7aff1851b6c91823514aa523a9646d78e33019dfd46443a6cd1e84292cf10915", - "block_time": 1739521305, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "block_hash": "28d368d6a272228e13526d6b0d99e2faca91acc604dcc900c7526445c9b6735b", + "block_time": 1740828881, + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807d4aa7580693bb3a8549ad4569d77ae8b01ec88180ea0a411b379738133363975c8c52ff9f852b2d8a80ca7722bfa16fb286901a3dffcd197248c877e9ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aa9f096cec4ffeac9ee9ccb34476a6cb71ecd013803b6d13f782ef058fe2af7a9b8194f324bee9f37a80ea233bbd6e7db93b5903951452f738cd512c13ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270:0 4 ", + "utxos_info": " 5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43:0 4 ", "transaction_type": "mpma", - "events": [ - { - "event_index": 704, - "event": "ORDER_UPDATE", - "params": { - "status": "expired", - "tx_hash": "c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5" - }, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", - "block_index": 205, - "block_time": 1739521305 - }, - { - "event_index": 705, - "event": "ORDER_EXPIRATION", - "params": { - "block_index": 205, - "order_hash": "c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", - "source": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", - "block_time": 1739521305 - }, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", - "block_index": 205, - "block_time": 1739521305 - }, - { - "event_index": 711, - "event": "MPMA_SEND", - "params": { - "asset": "MPMASSET", - "block_index": 205, - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", - "memo": "the memo", - "msg_index": 0, - "quantity": 10, - "send_type": "send", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "status": "valid", - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", - "tx_index": 81, - "block_time": 1739521305, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "divisible": true, - "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", - "block_index": 205, - "block_time": 1739521305 - }, - { - "event_index": 712, - "event": "MPMA_SEND", - "params": { - "asset": "MPMASSET", - "block_index": 205, - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", - "memo": "memo3", - "msg_index": 1, - "quantity": 10, - "send_type": "send", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "status": "valid", - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", - "tx_index": 81, - "block_time": 1739521305, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "divisible": true, - "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", - "block_index": 205, - "block_time": 1739521305 - }, - { - "event_index": 713, - "event": "MPMA_SEND", - "params": { - "asset": "XCP", - "block_index": 205, - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "memo": "memo1", - "msg_index": 2, - "quantity": 10, - "send_type": "send", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "status": "valid", - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", - "tx_index": 81, - "block_time": 1739521305, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", - "block_index": 205, - "block_time": 1739521305 - } - ], - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "divisible": true, - "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "quantity_normalized": "0.00000010" - } - ] - }, + "confirmed": true, "btc_amount_normalized": "0.00000000" } } @@ -4113,124 +3187,43 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "044dc2f444bb200b4d68580cf959677a95d16b1bdb21e12005f65f0f00713808", + "tx_hash": "72123381d3d5f2f6456953edbe047571c6a9ec0b83df3f82d191c130c1312308", "block_index": 190, - "block_hash": "0fc58b1498f615d6da5084a0d3e6faf29b7180c84e4b653abc3a0c5505b19cf0", - "block_time": 1739521250, - "source": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "block_hash": "5fc476b6c03e4374df3cdaf0ceb0a351e51399e84e88f8de955a15f8b5fe6c13", + "block_time": 1740828820, + "source": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ca7722bfa16fb286901a3dffcd197248c877e9ef017377656570206d7920617373657473", - "supported": true, - "utxos_info": " 044dc2f444bb200b4d68580cf959677a95d16b1bdb21e12005f65f0f00713808:1 2 0", - "transaction_type": "sweep", - "events": [ - { - "event_index": 571, - "event": "SWEEP", - "params": { - "block_index": 190, - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", - "fee_paid": 600000, - "flags": 1, - "memo": "sweep my assets", - "source": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", - "status": "valid", - "tx_hash": "044dc2f444bb200b4d68580cf959677a95d16b1bdb21e12005f65f0f00713808", - "tx_index": 65, - "block_time": 1739521250, - "fee_paid_normalized": "0.00600000" - }, - "tx_hash": "044dc2f444bb200b4d68580cf959677a95d16b1bdb21e12005f65f0f00713808", - "block_index": 190, - "block_time": 1739521250 - } - ], - "unpacked_data": { - "message_type": "sweep", - "message_type_id": 4, - "message_data": { - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", - "flags": 1, - "memo": "sweep my assets" - } - }, - "btc_amount_normalized": "0.00000000" - } -} -``` - -**Attach** - -``` -{ - "result": { - "tx_index": 112, - "tx_hash": "333e75d27e97b88d1bc093627e1ba709419abfc12c96351cd8d257a980bf527e", - "block_index": 235, - "block_hash": "5f718d6da4998e3a28e3c1380aa0e979cd57f47b2a1f3200e5a59eb35ea9fa02", - "block_time": 1739521421, - "source": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "destination": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "btc_amount": 10000, - "fee": 10000, - "data": "65444554414348417c3130303030303030307c", - "supported": true, - "utxos_info": " 333e75d27e97b88d1bc093627e1ba709419abfc12c96351cd8d257a980bf527e:0 3 1", - "transaction_type": "attach", - "events": [ - { - "event_index": 965, - "event": "ATTACH_TO_UTXO", - "params": { - "asset": "DETACHA", - "block_index": 235, - "destination": "333e75d27e97b88d1bc093627e1ba709419abfc12c96351cd8d257a980bf527e:0", - "destination_address": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "fee_paid": 0, - "msg_index": 0, - "quantity": 100000000, - "send_type": "attach", - "source": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "status": "valid", - "tx_hash": "333e75d27e97b88d1bc093627e1ba709419abfc12c96351cd8d257a980bf527e", - "tx_index": 112, - "block_time": 1739521421, - "asset_info": { - "asset_longname": null, - "description": "", - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "divisible": true, - "locked": false, - "owner": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v" - }, - "quantity_normalized": "1.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "333e75d27e97b88d1bc093627e1ba709419abfc12c96351cd8d257a980bf527e", - "block_index": 235, - "block_time": 1739521421 - } - ], - "unpacked_data": { - "message_type": "attach", - "message_type_id": 101, - "message_data": { - "asset": "DETACHA", - "quantity": 100000000, - "destination_vout": null, - "asset_info": { - "asset_longname": null, - "description": "", - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "divisible": true, - "locked": false, - "owner": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v" - }, - "quantity_normalized": "1.00000000" - } - }, + "data": "0480ea233bbd6e7db93b5903951452f738cd512c13ef017377656570206d7920617373657473", + "supported": true, + "utxos_info": " 72123381d3d5f2f6456953edbe047571c6a9ec0b83df3f82d191c130c1312308:1 2 0", + "transaction_type": "sweep", + "confirmed": true, + "btc_amount_normalized": "0.00000000" + } +} +``` + +**Attach** + +``` +{ + "result": { + "tx_index": 112, + "tx_hash": "caaac41bbe80da514532a41b65401868ce5008dc5a03325c5b7f9a581d9619f3", + "block_index": 235, + "block_hash": "63845c30e2f95a18243761e7deb283c1569e5e382a3b900632b57e16f4437ff9", + "block_time": 1740829017, + "source": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", + "destination": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", + "btc_amount": 10000, + "fee": 10000, + "data": "65444554414348417c3130303030303030307c", + "supported": true, + "utxos_info": " caaac41bbe80da514532a41b65401868ce5008dc5a03325c5b7f9a581d9619f3:0 3 1", + "transaction_type": "attach", + "confirmed": true, "btc_amount_normalized": "0.00010000" } } @@ -4242,97 +3235,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 111, - "tx_hash": "b950ccaae58e1d5958ea681bbc9270b00a142eb1e3e08eb3cc99528ab211aa2d", + "tx_hash": "145ccd57765fa92d2bab9632124e5db981b1c51d1d6bd4a1cae97e72d90f64a7", "block_index": 234, - "block_hash": "4ee37329a1f1e17f0804c1846bfae486eec150e29ea036046f89df7c3f2e6383", - "block_time": 1739521418, - "source": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", + "block_hash": "036a389deb8752560be686b18fcd3f2c9b74e331964ed30c277c0966d9b5cf3f", + "block_time": 1740829014, + "source": "bcrt1qukwfd6trxakygpqy5rdt0h69p8m56x70dgnsch", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "548b2f5ec1ad8d6e0219d16657c4abb3586ba183fc5428dc043d6a73ecae38b3:0 b950ccaae58e1d5958ea681bbc9270b00a142eb1e3e08eb3cc99528ab211aa2d:1 2 0", + "utxos_info": "74155460d43b3b1d3ec00cf5780bb5420c04685c1c47a5a9d1cd47880e906907:0 145ccd57765fa92d2bab9632124e5db981b1c51d1d6bd4a1cae97e72d90f64a7:1 2 0", "transaction_type": "detach", - "events": [ - { - "event_index": 954, - "event": "DETACH_FROM_UTXO", - "params": { - "asset": "DETACHA", - "block_index": 234, - "destination": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "fee_paid": 0, - "msg_index": 0, - "quantity": 100000000, - "send_type": "detach", - "source": "548b2f5ec1ad8d6e0219d16657c4abb3586ba183fc5428dc043d6a73ecae38b3:0", - "source_address": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "status": "valid", - "tx_hash": "b950ccaae58e1d5958ea681bbc9270b00a142eb1e3e08eb3cc99528ab211aa2d", - "tx_index": 111, - "block_time": 1739521418, - "asset_info": { - "asset_longname": null, - "description": "", - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "divisible": true, - "locked": false, - "owner": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v" - }, - "quantity_normalized": "1.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "b950ccaae58e1d5958ea681bbc9270b00a142eb1e3e08eb3cc99528ab211aa2d", - "block_index": 234, - "block_time": 1739521418 - }, - { - "event_index": 957, - "event": "DETACH_FROM_UTXO", - "params": { - "asset": "DETACHB", - "block_index": 234, - "destination": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "fee_paid": 0, - "msg_index": 1, - "quantity": 100000000, - "send_type": "detach", - "source": "548b2f5ec1ad8d6e0219d16657c4abb3586ba183fc5428dc043d6a73ecae38b3:0", - "source_address": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "status": "valid", - "tx_hash": "b950ccaae58e1d5958ea681bbc9270b00a142eb1e3e08eb3cc99528ab211aa2d", - "tx_index": 111, - "block_time": 1739521418, - "asset_info": { - "asset_longname": null, - "description": "", - "issuer": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v", - "divisible": true, - "locked": false, - "owner": "bcrt1qx43vtw9nv7s743a3nhwp3qyx4299lnuqmz3t7v" - }, - "quantity_normalized": "1.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "b950ccaae58e1d5958ea681bbc9270b00a142eb1e3e08eb3cc99528ab211aa2d", - "block_index": 234, - "block_time": 1739521418 - } - ], - "unpacked_data": { - "message_type": "detach", - "message_type_id": 102, - "message_data": { - "destination": null - } - }, + "confirmed": true, "btc_amount_normalized": "0.00000000" } } ``` -### Get Transactions [GET /v2/transactions{?type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Transactions [GET /v2/transactions{?type,show_unconfirmed,cursor,limit,offset,verbose}] Returns the list of the last ten transactions @@ -4363,12 +3284,14 @@ Returns the list of the last ten transactions + `detach` + `utxomove` + `unknown` - + cursor: `121` (str, optional) - The index of the most recent transactions to return - + Default: `None` + + show_unconfirmed (bool, optional) - Show unconfirmed transactions + + Default: `null` + + cursor: `121` (int, optional) - The index of the most recent transactions to return + + Default: `null` + limit: `2` (int, optional) - The number of transactions to return + Default: `10` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4379,17 +3302,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 121, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_hash": "69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496", - "block_time": 1739521461, - "source": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "destination": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "block_hash": "584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603", + "block_time": 1740829057, + "source": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "destination": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1 8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0 3 1", + "utxos_info": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1 5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0 3 1", "transaction_type": "dispense", "events": [ { @@ -4398,30 +3321,30 @@ Returns the list of the last ten transactions "params": { "asset": "MYASSETA", "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "destination": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "destination_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "msg_index": 0, "quantity": 2000000000, "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "source": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "source_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1037, @@ -4429,17 +3352,17 @@ Returns the list of the last ten transactions "params": { "asset": "XCP", "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "destination": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "destination_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "msg_index": 1, "quantity": 2000000000, "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "source": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "source_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4450,9 +3373,9 @@ Returns the list of the last ten transactions }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1039, @@ -4461,9 +3384,9 @@ Returns the list of the last ten transactions "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "status": 0, - "tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", + "tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4474,9 +3397,9 @@ Returns the list of the last ten transactions }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1040, @@ -4485,14 +3408,14 @@ Returns the list of the last ten transactions "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "destination": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "dispenser_tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4504,9 +3427,9 @@ Returns the list of the last ten transactions "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "unpacked_data": { @@ -4520,17 +3443,17 @@ Returns the list of the last ten transactions }, { "tx_index": 120, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "block_index": 243, - "block_hash": "4f2deae8d82dae58dd8981977a301115b5e934904837505432fbf9e81537a28d", - "block_time": 1739521452, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "block_hash": "6fff51e803e99e0f4b459178803a5bbe30f7ac7bbc5002da114a5dd3908cc1d2", + "block_time": 1740829048, + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae:1 2 0", + "utxos_info": " 22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472:1 2 0", "transaction_type": "fairminter", "events": [ { @@ -4556,12 +3479,12 @@ Returns the list of the last ten transactions "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "start_block": 0, "status": "open", - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "tx_index": 120, - "block_time": 1739521452, + "block_time": 1740829048, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4569,9 +3492,9 @@ Returns the list of the last ten transactions "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "block_index": 243, - "block_time": 1739521452 + "block_time": 1740829048 }, { "event_index": 1022, @@ -4581,11 +3504,11 @@ Returns the list of the last ten transactions "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 243, - "block_time": 1739521452 + "block_time": 1740829048 }, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "block_index": 243, - "block_time": 1739521452 + "block_time": 1740829048 }, { "event_index": 1023, @@ -4602,22 +3525,22 @@ Returns the list of the last ten transactions "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "issuer": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "status": "valid", "transfer": false, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "tx_index": 120, - "block_time": 1739521452, + "block_time": 1740829048, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "6a0a54d3fe10041bb1061441b69d9e0998780e32ac7f60bded629520b9efccae", + "tx_hash": "22957b497506e54ed5af74f3c274b2b14d2fbf2cd38da80682e21b2be1fd4472", "block_index": 243, - "block_time": 1739521452 + "block_time": 1740829048 } ], "unpacked_data": { @@ -4748,14 +3671,14 @@ Returns the count of each transaction type } ``` -### Info [GET /v2/transactions/info{?rawtransaction}{&block_index}{&verbose}] +### Info [GET /v2/transactions/info{?rawtransaction,block_index,verbose}] Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001017c53b6e16f8d5805aa94a91afee7383a4a644247c85da1dd9ca895dde5c50bf90000000000ffffffff04e80300000000000069512102b6445cb99c306ca0d02ff9d5b89ffc5d025e4dc7765d7bf2d9702a1bfe2e3db92102c43fd8dba3826199afb3e87d6db7ca342cc131f39e594174e3f0d8a495389d6321037bbfa5edfdf320d1b24debcf35205169bd3f66276fa491f6edeecdd9639ba98a53aee80300000000000069512102b6445cb99c306ca0d0aa69cc055bda03080531015c48dc637972b85b065007ff210394a4583a6f026b27908bfb4e0e2096b82c3eae76b574cbf423c7fa1b34572f5d21037bbfa5edfdf320d1b24debcf35205169bd3f66276fa491f6edeecdd9639ba98a53aee8030000000000006951210398445cb99c306ca0d02cf99638a4171a7a4df95eb5a7541711179836633d6810210314a45831a9c37aae388bfb4e0e2096b87e3eae76b574cbf42987fa1b34572f4021037bbfa5edfdf320d1b24debcf35205169bd3f66276fa491f6edeecdd9639ba98a53ae38bf052a010000001600147d4aa7580693bb3a8549ad4569d77ae8b01ec8810247304402204be9d6bb59d456f3786dce5b978152ebce0852bd8cedea52197f3664d95012be0220433575f2c237f5a0c2d26cf50b847c2bdf4bf6369c2b51a776e815d01f8511bf0121037bbfa5edfdf320d1b24debcf35205169bd3f66276fa491f6edeecdd9639ba98a00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101bc2e82b296c6fe5c51f643b371c5188e3412e4bbe081bd5680a6e19cad040cfe0000000000ffffffff020000000000000000306a2e12c5e036ad23eb30d3006e168aac719a9017b7636904f4cd5bbca823861417fbe8303d5fcfc6b222782a3079e418f0ca052a01000000160014aa9f096cec4ffeac9ee9ccb34476a6cb71ecd0130247304402204f1765dfb49e40add2f53266c1f020d59a24b5d69bf4334776e02f3e539ed53302200fb9dc487ff9d1d71192f850155434ce8a1ee5b15def966c454c24e51f6b8bbe0121029ac1c84e1314ca0e53d31388549291a757b84dfa7dd347e0bcca5f57e1f1fa0300000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4764,7 +3687,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "destination": null, "btc_amount": 0, "fee": 10000, @@ -4773,103 +3696,73 @@ Returns Counterparty information from a raw transaction in hex format. "segwit": true, "coinbase": false, "lock_time": 0, - "tx_id": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_id": "469dbbf4907b7617d285482169d25cd856bb1c7e36cfd4aa2299e5c0ffd4ff83", + "tx_hash": "469dbbf4907b7617d285482169d25cd856bb1c7e36cfd4aa2299e5c0ffd4ff83", "vtxinwit": [ [ - "304402204be9d6bb59d456f3786dce5b978152ebce0852bd8cedea52197f3664d95012be0220433575f2c237f5a0c2d26cf50b847c2bdf4bf6369c2b51a776e815d01f8511bf01", - "037bbfa5edfdf320d1b24debcf35205169bd3f66276fa491f6edeecdd9639ba98a" + "304402204f1765dfb49e40add2f53266c1f020d59a24b5d69bf4334776e02f3e539ed53302200fb9dc487ff9d1d71192f850155434ce8a1ee5b15def966c454c24e51f6b8bbe01", + "029ac1c84e1314ca0e53d31388549291a757b84dfa7dd347e0bcca5f57e1f1fa03" ] ], "parsed_vouts": [ [], 0, -4999990000, - "030003803beb477813b4b1c3fa2fe5c867b22d9d1355d09b80ea0a411b379738133363975c8c52ff9f852b2d8a80ca7722bfa16fb286901a3dffcd197248c877e9ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "02000000178d82231300000000000003e880a952ded2ef91baf58bef9d353640b5fd09d209f5", [ [ null, - 1000 - ], - [ - null, - 1000 - ], - [ - null, - 1000 + null ], [ - "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - 4999987000 + "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + 4999990000 ] ] ], "vin": [ { - "hash": "f90bc5e5dd95a89cdda15dc84742644a3a38e7fe1aa994aa05588d6fe1b6537c", + "hash": "fe0c04ad9ce1a68056bd81e0bbe412348e18c571b343f6515cfec696b2822ebc", "n": 0, "sequence": 4294967295, - "script_sig": "" + "script_sig": "", + "info": { + "value": 5000000000, + "script_pub_key": "0014aa9f096cec4ffeac9ee9ccb34476a6cb71ecd013", + "is_segwit": true + } } ], "vout": [ { - "value": 1000, - "script_pub_key": "512102b6445cb99c306ca0d02ff9d5b89ffc5d025e4dc7765d7bf2d9702a1bfe2e3db92102c43fd8dba3826199afb3e87d6db7ca342cc131f39e594174e3f0d8a495389d6321037bbfa5edfdf320d1b24debcf35205169bd3f66276fa491f6edeecdd9639ba98a53ae" - }, - { - "value": 1000, - "script_pub_key": "512102b6445cb99c306ca0d0aa69cc055bda03080531015c48dc637972b85b065007ff210394a4583a6f026b27908bfb4e0e2096b82c3eae76b574cbf423c7fa1b34572f5d21037bbfa5edfdf320d1b24debcf35205169bd3f66276fa491f6edeecdd9639ba98a53ae" - }, - { - "value": 1000, - "script_pub_key": "51210398445cb99c306ca0d02cf99638a4171a7a4df95eb5a7541711179836633d6810210314a45831a9c37aae388bfb4e0e2096b87e3eae76b574cbf42987fa1b34572f4021037bbfa5edfdf320d1b24debcf35205169bd3f66276fa491f6edeecdd9639ba98a53ae" + "value": 0, + "script_pub_key": "6a2e12c5e036ad23eb30d3006e168aac719a9017b7636904f4cd5bbca823861417fbe8303d5fcfc6b222782a3079e418" }, { - "value": 4999987000, - "script_pub_key": "00147d4aa7580693bb3a8549ad4569d77ae8b01ec881" + "value": 4999990000, + "script_pub_key": "0014aa9f096cec4ffeac9ee9ccb34476a6cb71ecd013" } ] }, - "data": "030003803beb477813b4b1c3fa2fe5c867b22d9d1355d09b80ea0a411b379738133363975c8c52ff9f852b2d8a80ca7722bfa16fb286901a3dffcd197248c877e9ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "02000000178d82231300000000000003e880a952ded2ef91baf58bef9d353640b5fd09d209f5", "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "divisible": true, - "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" - }, - "quantity_normalized": "0.00000010" + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "divisible": true, + "locked": false, + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, - { - "asset": "XCP", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "quantity": 10, - "memo": "the memo", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "quantity_normalized": "0.00000010" - } - ] + "quantity_normalized": "0.00001000" + } }, "btc_amount_normalized": "0.00000000" } @@ -4881,7 +3774,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c` (str, required) - Transaction hash + + tx_hash: `100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4890,7 +3783,7 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "source": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "destination": null, "btc_amount": 0, "fee": 10000, @@ -4899,57 +3792,62 @@ Returns Counterparty information from a transaction hash. "segwit": true, "coinbase": false, "lock_time": 0, - "tx_id": "17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c", - "tx_hash": "17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c", + "tx_id": "100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30", + "tx_hash": "100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30", "vtxinwit": [ [ - "3044022075c2eb6743ee9ee275cad31da08a7975be2ab66559758a1da29698630a348f8a02203dc89a8af42c5feaefc418c63f6c16afbeed31b0edba76ec70c159ce683e99ba01", - "033b66de2b67d81498000bd36942796103ab6e7daa6fbc923a3150eee1b7074c3b" + "30440220727c7090453c926e14129d600072d823ac69ce5dc09e7cd9e185e56514babaa702202ce71fac3f74d107aead323d166b7e7e630ef4ce163114eead0b7b32eb1b82a601", + "02926e0594c3b0957dc1982056b60830c3b582034cd9520836809be1e5c9d1ed1f" ] ], "parsed_vouts": [ [], 0, -4949940000, - "020000000000000001000000000000271080ea0a411b379738133363975c8c52ff9f852b2d8a", + "0200000000000000010000000000002710803b6d13f782ef058fe2af7a9b8194f324bee9f37a", [ [ null, null ], [ - "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", 4949940000 ] ] ], "vin": [ { - "hash": "243777a7b8bdb644fe7a75343161e770420e7fb8d69b661c22af7ae46720b722", + "hash": "f1ff33068c2a836c6cf3f6ea50eaf09f54ebbe141f101df4f8c8c23dec3d8e5a", "n": 1, "sequence": 4294967295, - "script_sig": "" + "script_sig": "", + "info": { + "value": 4949950000, + "script_pub_key": "0014ea233bbd6e7db93b5903951452f738cd512c13ef", + "is_segwit": true + } } ], "vout": [ { "value": 0, - "script_pub_key": "6a2eb83e877338c04588e138d4a4048f684d680df998672229380a8640b614727efcaf0059c7fed7e894ef106890a5d1" + "script_pub_key": "6a2eb226c35e418a470fe6c3172e2a1e11696728c1e8df456b6ddaeb491135dd6b07957d3328a7f2b51ac9696eb0605f" }, { "value": 4949940000, - "script_pub_key": "0014ca7722bfa16fb286901a3dffcd197248c877e9ef" + "script_pub_key": "0014ea233bbd6e7db93b5903951452f738cd512c13ef" } ] }, - "data": "020000000000000001000000000000271080ea0a411b379738133363975c8c52ff9f852b2d8a", + "data": "0200000000000000010000000000002710803b6d13f782ef058fe2af7a9b8194f324bee9f37a", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "address": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "memo": null, "asset_info": { "asset_longname": null, @@ -4967,14 +3865,14 @@ Returns Counterparty information from a transaction hash. } ``` -### Unpack [GET /v2/transactions/unpack{?datahex}{&block_index}{&verbose}] +### Unpack [GET /v2/transactions/unpack{?datahex,block_index,verbose}] Unpacks Counterparty data in hex format and returns the message type and data. + Parameters + datahex: `020000000001016a65c1624e53f4d33ce02e726a6606faed60cc014d5b1a578ba3e09b4b3f8f890100000000ffffffff020000000000000000176a150d55e8b6118808b7b663b365473f142274028b8af60245092701000000160014a3df8a5a83d4e2827b59b43f5ce6ce5d2e52093f0247304402204b7a2859cbce34e725a1132fec2dd4b075503dadff0a0c407ae7c22a7712fe4d0220563ceb2ceebdf649343bb24819fc808639cce7781305b4588ffbe4a20390d2780121020ace9adf60fe4ec05dab922ccdc5727cbf664cafc7cdb845de534855266314c800000000` (str, required) - Data in hex format + block_index (int, optional) - Block index of the transaction containing this data - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5007,143 +3905,19 @@ Returns a transaction by its index. { "result": { "tx_index": 121, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_hash": "69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496", - "block_time": 1739521461, - "source": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "destination": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "block_hash": "584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603", + "block_time": 1740829057, + "source": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "destination": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1 8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0 3 1", + "utxos_info": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1 5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0 3 1", "transaction_type": "dispense", - "events": [ - { - "event_index": 1034, - "event": "UTXO_MOVE", - "params": { - "asset": "MYASSETA", - "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "msg_index": 0, - "quantity": 2000000000, - "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "tx_index": 121, - "block_time": 1739521461, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "divisible": true, - "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - }, - { - "event_index": 1037, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "msg_index": 1, - "quantity": 2000000000, - "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "tx_index": 121, - "block_time": 1739521461, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - }, - { - "event_index": 1039, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "status": 0, - "tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - }, - { - "event_index": 1040, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 245, - "btc_amount": 1000, - "destination": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "tx_index": 121, - "block_time": 1739521461, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - } - ], - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00001000" } } @@ -5154,7 +3928,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d` (str, required) - The hash of the transaction + + tx_hash: `5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5164,162 +3938,38 @@ Returns a transaction by its hash. { "result": { "tx_index": 121, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_hash": "69b3ff84bc53070511db03b5915e5152e798c0cad9f95afb873ab87824350496", - "block_time": 1739521461, - "source": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "destination": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "block_hash": "584e94805a525a0cd089eac6b17da6fa81ecd9b89207ec7b6bd099f5945a2603", + "block_time": 1740829057, + "source": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "destination": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1 8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0 3 1", + "utxos_info": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1 5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0 3 1", "transaction_type": "dispense", - "events": [ - { - "event_index": 1034, - "event": "UTXO_MOVE", - "params": { - "asset": "MYASSETA", - "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "msg_index": 0, - "quantity": 2000000000, - "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "tx_index": 121, - "block_time": 1739521461, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "divisible": true, - "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - }, - { - "event_index": 1037, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "msg_index": 1, - "quantity": 2000000000, - "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "tx_index": 121, - "block_time": 1739521461, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "quantity_normalized": "20.00000000" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - }, - { - "event_index": 1039, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "status": 0, - "tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - }, - { - "event_index": 1040, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 245, - "btc_amount": 1000, - "destination": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "tx_index": 121, - "block_time": 1739521461, - "asset_info": { - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "issuer": null, - "divisible": true, - "locked": true, - "owner": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", - "block_index": 245, - "block_time": 1739521461 - } - ], - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, + "confirmed": true, "btc_amount_normalized": "0.00001000" } } ``` -### Get Events By Transaction Index [GET /v2/transactions/{tx_index}/events{?event_name}{&cursor}{&limit}{&offset}{&verbose}] +### Get Events By Transaction Index [GET /v2/transactions/{tx_index}/events{?event_name,cursor,limit,offset,verbose}] Returns the events of a transaction + Parameters + tx_index: `121` (int, required) - The index of the transaction to return + event_name (str, optional) - Comma separated list of events to return - + Default: `None` - + cursor (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + + cursor (int, optional) - The last event index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5333,12 +3983,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121 }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1040, @@ -5347,14 +3997,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "destination": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "dispenser_tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5366,9 +4016,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1039, @@ -5377,9 +4027,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "status": 0, - "tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", + "tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5390,24 +4040,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5418,9 +4068,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1037, @@ -5428,17 +4078,17 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "destination": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "destination_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "msg_index": 1, "quantity": 2000000000, "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "source": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "source_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5449,9 +4099,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 1036, @@ -5459,20 +4109,20 @@ Returns the events of a transaction } ``` -### Get Events By Transaction Hash [GET /v2/transactions/{tx_hash}/events{?event_name}{&cursor}{&limit}{&offset}{&verbose}] +### Get Events By Transaction Hash [GET /v2/transactions/{tx_hash}/events{?event_name,cursor,limit,offset,verbose}] Returns the events of a transaction + Parameters - + tx_hash: `8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d` (str, required) - The hash of the transaction to return + + tx_hash: `5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return - + Default: `None` - + cursor: `1042` (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + + cursor: `1042` (int, optional) - The last event index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5486,12 +4136,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121 }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1040, @@ -5500,14 +4150,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "destination": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "dispenser_tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5519,9 +4169,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1039, @@ -5530,9 +4180,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "status": 0, - "tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", + "tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5543,24 +4193,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5571,9 +4221,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1037, @@ -5581,17 +4231,17 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 245, - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "destination": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "destination_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "msg_index": 1, "quantity": 2000000000, "send_type": "move", - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "source": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "source_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "status": "valid", - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "tx_index": 121, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5602,9 +4252,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": 1036, @@ -5612,12 +4262,12 @@ Returns the events of a transaction } ``` -### Get Sends By Transaction Hash [GET /v2/transactions/{tx_hash}/sends{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Sends By Transaction Hash [GET /v2/transactions/{tx_hash}/sends{?send_type,cursor,limit,offset,verbose}] Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d` (str, required) - The hash of the transaction to return + + tx_hash: `5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a` (str, required) - The hash of the transaction to return + send_type (enum[str], optional) - The type of the send to return + Default: `all` + Members @@ -5626,12 +4276,12 @@ Returns the sends, include Enhanced and MPMA sends, of a block + `attach` + `move` + `detach` - + cursor (str, optional) - The last index of the debits to return - + Default: `None` + + cursor (int, optional) - The last index of the debits to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of debits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5642,10 +4292,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 121, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", + "source": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "destination": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -5653,9 +4303,9 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "send_type": "move", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "source_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "destination_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5669,10 +4319,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 121, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "source": "110af2bf29b1e5f78cdc48372215c311f8bd2fe5d23900ec36dece6f3d4b27fe:1", - "destination": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", + "source": "5957cd9a628079a6cba7b3b9c206dddddc3e7c701dcf4381227f372c89d9d70d:1", + "destination": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -5680,16 +4330,16 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "send_type": "move", - "source_address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", - "destination_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "source_address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", + "destination_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" @@ -5700,18 +4350,18 @@ Returns the sends, include Enhanced and MPMA sends, of a block } ``` -### Get Dispenses By Transaction Hash [GET /v2/transactions/{tx_hash}/dispenses{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Transaction Hash [GET /v2/transactions/{tx_hash}/dispenses{?cursor,limit,offset,verbose}] Returns the dispenses of a block + Parameters - + tx_hash: `8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d` (str, required) - The hash of the transaction to return - + cursor (str, optional) - The last index of the dispenses to return - + Default: `None` + + tx_hash: `5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a` (str, required) - The hash of the transaction to return + + cursor (int, optional) - The last index of the dispenses to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5723,26 +4373,26 @@ Returns the dispenses of a block { "tx_index": 121, "dispense_index": 0, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "destination": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "destination": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "905cec3b6c3b75eed5ceb30c1d816a51d2f256ff84bfccabdd6e83939b6108bb", + "dispenser_tx_hash": "9a06035be4331fa9a3dfa3847731ddd670ccb0ff02468a5dfb38b35dcb8f2be4", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 245, - "source": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "source": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "oracle_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "last_status_tx_hash": null, - "origin": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", + "origin": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5757,7 +4407,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5775,19 +4425,19 @@ Returns the dispenses of a block } ``` -### Get Events By Transaction Index And Event [GET /v2/transactions/{tx_index}/events/{event}{?cursor}{&limit}{&offset}{&verbose}] +### Get Events By Transaction Index And Event [GET /v2/transactions/{tx_index}/events/{event}{?cursor,limit,offset,verbose}] Returns the events of a transaction + Parameters + tx_index: `121` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `1042` (str, optional) - The last event index to return - + Default: `None` + + cursor: `1042` (int, optional) - The last event index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5800,16 +4450,16 @@ Returns the events of a transaction "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5820,9 +4470,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1036, @@ -5832,12 +4482,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 245, "calling_function": "utxo move", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 2000000000, "tx_index": 121, - "utxo": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "utxo_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "utxo": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "utxo_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5848,9 +4498,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1033, @@ -5860,25 +4510,25 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 245, "calling_function": "utxo move", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 2000000000, "tx_index": 121, - "utxo": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "utxo_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "utxo": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "utxo_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": null, @@ -5886,19 +4536,19 @@ Returns the events of a transaction } ``` -### Get Events By Transaction Hash And Event [GET /v2/transactions/{tx_hash}/events/{event}{?cursor}{&limit}{&offset}{&verbose}] +### Get Events By Transaction Hash And Event [GET /v2/transactions/{tx_hash}/events/{event}{?cursor,limit,offset,verbose}] Returns the events of a transaction + Parameters - + tx_hash: `8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d` (str, required) - The hash of the transaction to return + + tx_hash: `5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `1042` (str, optional) - The last event index to return - + Default: `None` + + cursor: `1042` (int, optional) - The last event index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5911,16 +4561,16 @@ Returns the events of a transaction "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qvuh7ruzwnl9za2lf4k8qhsq28msavxysrzjz2l", + "address": "bcrt1qu66rp85y7nzg3gtsu4e36x9nhvw9xglev3u075", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5931,9 +4581,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1036, @@ -5943,12 +4593,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 245, "calling_function": "utxo move", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 2000000000, "tx_index": 121, - "utxo": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "utxo_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "utxo": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "utxo_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5959,9 +4609,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 }, { "event_index": 1033, @@ -5971,25 +4621,25 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 245, "calling_function": "utxo move", - "event": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "event": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "quantity": 2000000000, "tx_index": 121, - "utxo": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d:0", - "utxo_address": "bcrt1qu4g3ywvyal5qjemuejyxj8yskz7caaq7c49umd", - "block_time": 1739521461, + "utxo": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a:0", + "utxo_address": "bcrt1qg8rg85jnknum7739emq6xgqgrueh58vgzrz87m", + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "20.00000000" }, - "tx_hash": "8de5dec674076af3967d63988cc2b5d2058d95c6043c107f13010d90f988af2d", + "tx_hash": "5c6fa65482e0057a1dfefc46afce6fa0044c2082ac1d1a4e878af7ca34c8611a", "block_index": 245, - "block_time": 1739521461 + "block_time": 1740829057 } ], "next_cursor": null, @@ -5999,12 +4649,12 @@ Returns the events of a transaction ## Group Addresses -### Get Balances By Addresses [GET /v2/addresses/balances{?addresses}{&type}{&cursor}{&limit}{&offset}{&sort}{&verbose}] +### Get Balances By Addresses [GET /v2/addresses/balances{?addresses,type,cursor,limit,offset,sort,verbose}] Returns the balances of several addresses + Parameters - + addresses: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h,bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w,bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f` (str, required) - Comma separated list of addresses + type (enum[str], optional) - The type of balances to return + Default: `all` + Members @@ -6012,13 +4662,13 @@ Returns the balances of several addresses + `utxo` + `address` + cursor (str, optional) - The last index of the balances to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of balances to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + sort: `quantity:desc` (str, optional) - The sort order of the balances to return (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6033,7 +4683,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -6043,10 +4693,10 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "total_normalized": "1000.00000000" }, @@ -6056,7 +4706,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "address": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -6066,10 +4716,10 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "total_normalized": "5.00000000" }, @@ -6079,7 +4729,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "address": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "utxo": null, "utxo_address": null, "quantity": 180, @@ -6089,10 +4739,10 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "total_normalized": "0.00000180" }, @@ -6102,7 +4752,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "address": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "utxo": null, "utxo_address": null, "quantity": 40, @@ -6112,10 +4762,10 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "total_normalized": "0.00000040" }, @@ -6125,7 +4775,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "address": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "utxo": null, "utxo_address": null, "quantity": 19, @@ -6135,10 +4785,10 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "total_normalized": "0.00000019" } @@ -6148,12 +4798,12 @@ Returns the balances of several addresses } ``` -### Get Transactions By Addresses [GET /v2/addresses/transactions{?addresses}{&type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Transactions By Addresses [GET /v2/addresses/transactions{?addresses,type,show_unconfirmed,cursor,limit,offset,verbose}] Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h,bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w,bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f` (str, required) - Comma separated list of addresses to return + type (enum[str], optional) - The type of the transaction to return + Default: `all` + Members @@ -6180,12 +4830,14 @@ Returns the transactions of a list of addresses + `detach` + `utxomove` + `unknown` - + cursor: `121` (str, optional) - The last transaction index to return - + Default: `None` + + show_unconfirmed (bool, optional) - Show unconfirmed transactions + + Default: `null` + + cursor: `121` (int, optional) - The last transaction index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6196,17 +4848,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 115, - "tx_hash": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "tx_hash": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "block_index": 237, - "block_hash": "734c1784c482c9725e83dab4b6042bc48d3974370b28ffb21ddb71d1ea373a1e", - "block_time": 1739521430, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "destination": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", + "block_hash": "378d4e799847d36d6ca52b331f0bdc28bcf5474b12596d8dc827161a517c7604", + "block_time": 1740829027, + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "destination": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", "btc_amount": 3000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": " d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8:0 3 1", + "utxos_info": " 1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc:0 3 1", "transaction_type": "dispense", "events": [ { @@ -6216,9 +4868,9 @@ Returns the transactions of a list of addresses "asset": "XCP", "dispense_count": 1, "give_remaining": 2000, - "source": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", + "source": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", "status": 0, - "tx_hash": "7106c5bc21452894b653fbef9ca6d21beeb1ccb4e588238542b22d9296eb9ca3", + "tx_hash": "bad25a9b2a401e6deb9bb92d2db817b52cf1bca6baaa182726858cec4ce578ee", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6229,9 +4881,9 @@ Returns the transactions of a list of addresses }, "give_remaining_normalized": "0.00002000" }, - "tx_hash": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "tx_hash": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "block_index": 237, - "block_time": 1739521430 + "block_time": 1740829027 }, { "event_index": 984, @@ -6240,14 +4892,14 @@ Returns the transactions of a list of addresses "asset": "XCP", "block_index": 237, "btc_amount": 3000, - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "dispense_index": 0, "dispense_quantity": 3000, - "dispenser_tx_hash": "7106c5bc21452894b653fbef9ca6d21beeb1ccb4e588238542b22d9296eb9ca3", - "source": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", - "tx_hash": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "dispenser_tx_hash": "bad25a9b2a401e6deb9bb92d2db817b52cf1bca6baaa182726858cec4ce578ee", + "source": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", + "tx_hash": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "tx_index": 115, - "block_time": 1739521430, + "block_time": 1740829027, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6259,9 +4911,9 @@ Returns the transactions of a list of addresses "dispense_quantity_normalized": "0.00003000", "btc_amount_normalized": "0.00003000" }, - "tx_hash": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "tx_hash": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "block_index": 237, - "block_time": 1739521430 + "block_time": 1740829027 } ], "unpacked_data": { @@ -6275,17 +4927,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 81, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "block_index": 205, - "block_hash": "7aff1851b6c91823514aa523a9646d78e33019dfd46443a6cd1e84292cf10915", - "block_time": 1739521305, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "block_hash": "28d368d6a272228e13526d6b0d99e2faca91acc604dcc900c7526445c9b6735b", + "block_time": 1740828881, + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807d4aa7580693bb3a8549ad4569d77ae8b01ec88180ea0a411b379738133363975c8c52ff9f852b2d8a80ca7722bfa16fb286901a3dffcd197248c877e9ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380aa9f096cec4ffeac9ee9ccb34476a6cb71ecd013803b6d13f782ef058fe2af7a9b8194f324bee9f37a80ea233bbd6e7db93b5903951452f738cd512c13ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270:0 4 ", + "utxos_info": " 5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43:0 4 ", "transaction_type": "mpma", "events": [ { @@ -6293,24 +4945,24 @@ Returns the transactions of a list of addresses "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5" + "tx_hash": "8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0" }, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "block_index": 205, - "block_time": 1739521305 + "block_time": 1740828881 }, { "event_index": 705, "event": "ORDER_EXPIRATION", "params": { "block_index": 205, - "order_hash": "c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", - "source": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", - "block_time": 1739521305 + "order_hash": "8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", + "source": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", + "block_time": 1740828881 }, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "block_index": 205, - "block_time": 1739521305 + "block_time": 1740828881 }, { "event_index": 711, @@ -6318,29 +4970,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "memo": "the memo", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "status": "valid", - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "tx_index": 81, - "block_time": 1739521305, + "block_time": 1740828881, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "block_index": 205, - "block_time": 1739521305 + "block_time": 1740828881 }, { "event_index": 712, @@ -6348,29 +5000,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "destination": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "memo": "memo3", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "status": "valid", - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "tx_index": 81, - "block_time": 1739521305, + "block_time": 1740828881, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "block_index": 205, - "block_time": 1739521305 + "block_time": 1740828881 }, { "event_index": 713, @@ -6378,16 +5030,16 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "destination": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "memo": "memo1", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "status": "valid", - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "tx_index": 81, - "block_time": 1739521305, + "block_time": 1740828881, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6398,9 +5050,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "block_index": 205, - "block_time": 1739521305 + "block_time": 1740828881 } ], "unpacked_data": { @@ -6409,23 +5061,23 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "destination": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -6445,30 +5097,30 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "block_index": 204, - "block_hash": "1ba5c42c217f10480dd8e72b2b2c06b6c5e97d365300d5ca4276e5a65317a4f6", - "block_time": 1739521301, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "block_hash": "0944e82caa998e17f399b2fc1f8d7a9757fb9bb9eeb6dbc1b6d3ca9829c6436f", + "block_time": 1740828878, + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003807d4aa7580693bb3a8549ad4569d77ae8b01ec88180ea0a411b379738133363975c8c52ff9f852b2d8a80ca7722bfa16fb286901a3dffcd197248c877e9efc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380aa9f096cec4ffeac9ee9ccb34476a6cb71ecd013803b6d13f782ef058fe2af7a9b8194f324bee9f37a80ea233bbd6e7db93b5903951452f738cd512c13efc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a:0 4 ", + "utxos_info": " a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7:0 4 ", "transaction_type": "mpma", "events": [ { "event_index": 685, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27_c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", - "order_match_id": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27_c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", + "id": "6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b4_8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", + "order_match_id": "6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b4_8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", "status": "expired" }, - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "block_index": 204, - "block_time": 1739521301 + "block_time": 1740828878 }, { "event_index": 687, @@ -6478,26 +5130,26 @@ Returns the transactions of a list of addresses "get_remaining": 3000, "give_remaining": 3000, "status": "open", - "tx_hash": "c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", + "tx_hash": "8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", "fee_required_remaining_normalized": "0.00000000" }, - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "block_index": 204, - "block_time": 1739521301 + "block_time": 1740828878 }, { "event_index": 688, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 204, - "order_match_id": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27_c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", - "tx0_address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "tx1_address": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", - "block_time": 1739521301 + "order_match_id": "6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b4_8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", + "tx0_address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "tx1_address": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", + "block_time": 1740828878 }, - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "block_index": 204, - "block_time": 1739521301 + "block_time": 1740828878 }, { "event_index": 689, @@ -6508,13 +5160,13 @@ Returns the transactions of a list of addresses "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d", + "tx_hash": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "block_index": 204, - "block_time": 1739521301 + "block_time": 1740828878 }, { "event_index": 690, @@ -6525,13 +5177,13 @@ Returns the transactions of a list of addresses "get_remaining": 2000, "give_remaining": 2000, "status": "open", - "tx_hash": "c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", + "tx_hash": "8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "block_index": 204, - "block_time": 1739521301 + "block_time": 1740828878 }, { "event_index": 691, @@ -6543,20 +5195,20 @@ Returns the transactions of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d_c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", + "id": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e_8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", "match_expire_index": 224, "status": "pending", - "tx0_address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "tx0_address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "tx0_block_index": 189, "tx0_expiration": 21, - "tx0_hash": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d", + "tx0_hash": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e", "tx0_index": 64, - "tx1_address": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "tx1_address": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "tx1_block_index": 204, "tx1_expiration": 21, - "tx1_hash": "c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", + "tx1_hash": "8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", "tx1_index": 58, - "block_time": 1739521301, + "block_time": 1740828878, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6576,9 +5228,9 @@ Returns the transactions of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "block_index": 204, - "block_time": 1739521301 + "block_time": 1740828878 }, { "event_index": 697, @@ -6586,29 +5238,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "memo": "746865206d656d6f", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "status": "valid", - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "tx_index": 80, - "block_time": 1739521301, + "block_time": 1740828878, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "block_index": 204, - "block_time": 1739521301 + "block_time": 1740828878 }, { "event_index": 698, @@ -6616,29 +5268,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "destination": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "memo": "746865206d656d6f", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "status": "valid", - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "tx_index": 80, - "block_time": 1739521301, + "block_time": 1740828878, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "block_index": 204, - "block_time": 1739521301 + "block_time": 1740828878 }, { "event_index": 699, @@ -6646,16 +5298,16 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 204, - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "destination": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "memo": "746865206d656d6f", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "status": "valid", - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "tx_index": 80, - "block_time": 1739521301, + "block_time": 1740828878, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6666,9 +5318,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "block_index": 204, - "block_time": 1739521301 + "block_time": 1740828878 } ], "unpacked_data": { @@ -6677,23 +5329,23 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "destination": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -6713,17 +5365,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "block_index": 203, - "block_hash": "0e350f08c4fb646581553292b9e208bd69134de097125842a35d449a6befee50", - "block_time": 1739521297, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "block_hash": "46db0ebe012283342637d19e82494dc9f51987a12869ec53766dc04aa395471d", + "block_time": 1740828874, + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803beb477813b4b1c3fa2fe5c867b22d9d1355d09b80ea0a411b379738133363975c8c52ff9f852b2d8a80ca7722bfa16fb286901a3dffcd197248c877e9ef40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a952ded2ef91baf58bef9d353640b5fd09d209f5803b6d13f782ef058fe2af7a9b8194f324bee9f37a80ea233bbd6e7db93b5903951452f738cd512c13ef40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5:0 4 ", + "utxos_info": " 6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b:0 4 ", "transaction_type": "mpma", "events": [ { @@ -6732,29 +5384,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "memo": "memo2", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "tx_index": 79, - "block_time": 1739521297, + "block_time": 1740828874, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "block_index": 203, - "block_time": 1739521297 + "block_time": 1740828874 }, { "event_index": 679, @@ -6762,29 +5414,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "destination": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "memo": "memo3", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "tx_index": 79, - "block_time": 1739521297, + "block_time": 1740828874, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "block_index": 203, - "block_time": 1739521297 + "block_time": 1740828874 }, { "event_index": 680, @@ -6792,16 +5444,16 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "memo": "memo1", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "tx_index": 79, - "block_time": 1739521297, + "block_time": 1740828874, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6812,9 +5464,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "block_index": 203, - "block_time": 1739521297 + "block_time": 1740828874 } ], "unpacked_data": { @@ -6823,23 +5475,23 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -6859,17 +5511,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_hash": "5cf6d19e884804b9d3e656db8fb469de86e3e8375f2bc927619b6c22f6b9255e", - "block_time": 1739521293, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "block_hash": "37df4ec0e84732f0f0abc9c61e60cfad2cf489cea410319ab9cf9232588e4960", + "block_time": 1740828870, + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803beb477813b4b1c3fa2fe5c867b22d9d1355d09b80ea0a411b379738133363975c8c52ff9f852b2d8a80ca7722bfa16fb286901a3dffcd197248c877e9ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a952ded2ef91baf58bef9d353640b5fd09d209f5803b6d13f782ef058fe2af7a9b8194f324bee9f37a80ea233bbd6e7db93b5903951452f738cd512c13ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606:0 4 ", + "utxos_info": " 6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0:0 4 ", "transaction_type": "mpma", "events": [ { @@ -6877,24 +5529,24 @@ Returns the transactions of a list of addresses "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27" + "tx_hash": "6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b4" }, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_time": 1739521293 + "block_time": 1740828870 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "block_time": 1739521293 + "order_hash": "6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b4", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "block_time": 1740828870 }, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_time": 1739521293 + "block_time": 1740828870 }, { "event_index": 666, @@ -6902,29 +5554,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "memo": "the memo", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "tx_index": 78, - "block_time": 1739521293, + "block_time": 1740828870, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_time": 1739521293 + "block_time": 1740828870 }, { "event_index": 667, @@ -6932,29 +5584,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "destination": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "memo": "the memo", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "tx_index": 78, - "block_time": 1739521293, + "block_time": 1740828870, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_time": 1739521293 + "block_time": 1740828870 }, { "event_index": 668, @@ -6962,16 +5614,16 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "memo": "the memo", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "tx_index": 78, - "block_time": 1739521293, + "block_time": 1740828870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6982,9 +5634,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_time": 1739521293 + "block_time": 1740828870 } ], "unpacked_data": { @@ -6993,23 +5645,23 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7033,20 +5685,20 @@ Returns the transactions of a list of addresses } ``` -### Get Events By Addresses [GET /v2/addresses/events{?addresses}{&event_name}{&cursor}{&limit}{&offset}{&verbose}] +### Get Events By Addresses [GET /v2/addresses/events{?addresses,event_name,cursor,limit,offset,verbose}] Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h,bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w,bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return - + Default: `None` - + cursor: `1042` (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + + cursor: `1042` (int, optional) - The last event index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7062,14 +5714,14 @@ Returns the events of a list of addresses "asset": "XCP", "block_index": 237, "btc_amount": 3000, - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "dispense_index": 0, "dispense_quantity": 3000, - "dispenser_tx_hash": "7106c5bc21452894b653fbef9ca6d21beeb1ccb4e588238542b22d9296eb9ca3", - "source": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", - "tx_hash": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "dispenser_tx_hash": "bad25a9b2a401e6deb9bb92d2db817b52cf1bca6baaa182726858cec4ce578ee", + "source": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", + "tx_hash": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "tx_index": 115, - "block_time": 1739521430, + "block_time": 1740829027, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7081,24 +5733,24 @@ Returns the events of a list of addresses "dispense_quantity_normalized": "0.00003000", "btc_amount_normalized": "0.00003000" }, - "tx_hash": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "tx_hash": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "block_index": 237, - "block_time": 1739521430 + "block_time": 1740829027 }, { "event_index": 982, "event": "CREDIT", "params": { - "address": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "address": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "block_index": 237, "calling_function": "dispense", - "event": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "event": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "quantity": 3000, "tx_index": 115, "utxo": null, "utxo_address": null, - "block_time": 1739521430, + "block_time": 1740829027, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7109,60 +5761,60 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00003000" }, - "tx_hash": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "tx_hash": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "block_index": 237, - "block_time": 1739521430 + "block_time": 1740829027 }, { "event_index": 980, "event": "NEW_TRANSACTION", "params": { - "block_hash": "734c1784c482c9725e83dab4b6042bc48d3974370b28ffb21ddb71d1ea373a1e", + "block_hash": "378d4e799847d36d6ca52b331f0bdc28bcf5474b12596d8dc827161a517c7604", "block_index": 237, - "block_time": 1739521430, + "block_time": 1740829027, "btc_amount": 3000, "data": "0d00", - "destination": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", + "destination": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", "fee": 0, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "transaction_type": "dispense", - "tx_hash": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "tx_hash": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "tx_index": 115, - "utxos_info": " d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8:0 3 1", + "utxos_info": " 1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc:0 3 1", "btc_amount_normalized": "0.00003000" }, - "tx_hash": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "tx_hash": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "block_index": 237, - "block_time": 1739521430 + "block_time": 1740829027 }, { "event_index": 861, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d_c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", - "tx0_address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "tx1_address": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", - "block_time": 1739521374 + "order_match_id": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e_8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", + "tx0_address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "tx1_address": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", + "block_time": 1740828957 }, - "tx_hash": "b0326febaa3c51a3cc9e8bf9d0f040a208f28189b60aad03e514cc2ffeac21be", + "tx_hash": "c56bb59a7fa00b660b25fb879b69505f26d598089e43c0d142b93a1ff819071d", "block_index": 225, - "block_time": 1739521374 + "block_time": 1740828957 }, { "event_index": 860, "event": "CREDIT", "params": { - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d_c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", + "event": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e_8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1739521374, + "block_time": 1740828957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7173,9 +5825,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b0326febaa3c51a3cc9e8bf9d0f040a208f28189b60aad03e514cc2ffeac21be", + "tx_hash": "c56bb59a7fa00b660b25fb879b69505f26d598089e43c0d142b93a1ff819071d", "block_index": 225, - "block_time": 1739521374 + "block_time": 1740828957 } ], "next_cursor": 758, @@ -7183,16 +5835,16 @@ Returns the events of a list of addresses } ``` -### Get Mempool Events By Addresses [GET /v2/addresses/mempool{?addresses}{&event_name}{&cursor}{&limit}{&verbose}] +### Get Mempool Events By Addresses [GET /v2/addresses/mempool{?addresses,event_name,cursor,limit,verbose}] Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9,bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz,bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return - + Default: `None` - + cursor (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + + cursor (int, optional) - The last event index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -7204,19 +5856,19 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c", + "tx_hash": "100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "memo": null, "msg_index": 0, "quantity": 10000, "send_type": "send", - "source": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "source": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "status": "valid", - "tx_hash": "17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c", + "tx_hash": "100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30", "tx_index": 122, "asset_info": { "asset_longname": null, @@ -7228,22 +5880,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1739521465.544013 + "timestamp": 1740829061.613101 }, { - "tx_hash": "17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c", + "tx_hash": "100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30", "event": "CREDIT", "params": { - "address": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "address": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "asset": "XCP", "block_index": 245, "calling_function": "send", - "event": "17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c", + "event": "100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30", "quantity": 10000, "tx_index": 122, "utxo": null, "utxo_address": null, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7254,22 +5906,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1739521465.544013 + "timestamp": 1740829061.613101 }, { - "tx_hash": "17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c", + "tx_hash": "100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "address": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "asset": "XCP", "block_index": 245, - "event": "17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c", + "event": "100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30", "quantity": 10000, "tx_index": 122, "utxo": null, "utxo_address": null, - "block_time": 1739521461, + "block_time": 1740829057, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7280,27 +5932,27 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1739521465.544013 + "timestamp": 1740829061.613101 }, { - "tx_hash": "17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c", + "tx_hash": "100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1739521465.544013, + "block_time": 1740829061.613101, "btc_amount": 0, - "data": "020000000000000001000000000000271080ea0a411b379738133363975c8c52ff9f852b2d8a", + "data": "0200000000000000010000000000002710803b6d13f782ef058fe2af7a9b8194f324bee9f37a", "destination": "", "fee": 10000, - "source": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "source": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "transaction_type": "enhanced_send", - "tx_hash": "17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c", + "tx_hash": "100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30", "tx_index": 122, - "utxos_info": " 17215f704f2cc90f85020dde16c7aab591b7bb2d53cbdb93320dd6fb54db817c:1 2 0", + "utxos_info": " 100daad50bee09efcddcc9a92521e78f7301b2e8a9a8602d9727ce16bb77ff30:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1739521465.544013 + "timestamp": 1740829061.613101 } ], "next_cursor": null, @@ -7308,26 +5960,26 @@ Returns the mempool events of a list of addresses } ``` -### Get Address Balances [GET /v2/addresses/{address}/balances{?type}{&cursor}{&limit}{&offset}{&sort}{&verbose}] +### Get Address Balances [GET /v2/addresses/{address}/balances{?type,cursor,limit,offset,sort,verbose}] Returns the balances of an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + type (enum[str], optional) - The type of balances to return + Default: `` + Members + `all` + `utxo` + `address` - + cursor (str, optional) - The last index of the balances to return - + Default: `None` + + cursor (int, optional) - The last index of the balances to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of balances to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + sort: `quantity:desc` (str, optional) - The sort order of the balances to return (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7337,7 +5989,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "A95428956980101314", "asset_longname": null, "quantity": 100000000000, @@ -7346,15 +5998,15 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "MPMASSET", "asset_longname": null, "quantity": 99999998960, @@ -7363,15 +6015,15 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "999.99998960" }, { - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "MYASSETA", "asset_longname": null, "quantity": 97999999980, @@ -7380,15 +6032,15 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "979.99999980" }, { - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -7405,7 +6057,7 @@ Returns the balances of an address "quantity_normalized": "825.99966196" }, { - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "TESTLOCKDESC", "asset_longname": null, "quantity": 9999990000, @@ -7414,10 +6066,10 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "99.99990000" } @@ -7427,12 +6079,12 @@ Returns the balances of an address } ``` -### Get Balances By Address And Asset [GET /v2/addresses/{address}/balances/{asset}{?type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Balances By Address And Asset [GET /v2/addresses/{address}/balances/{asset}{?type,cursor,limit,offset,verbose}] Returns the balances of an address and asset + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (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` @@ -7440,12 +6092,12 @@ Returns the balances of an address and asset + `all` + `utxo` + `address` - + cursor (str, optional) - The last index of the balances to return - + Default: `None` + + cursor (int, optional) - The last index of the balances to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of balances to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7455,7 +6107,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -7477,14 +6129,14 @@ Returns the balances of an address and asset } ``` -### Get Credits By Address [GET /v2/addresses/{address}/credits{?action}{&cursor}{&limit}{&offset}{&verbose}] +### Get Credits By Address [GET /v2/addresses/{address}/credits{?action,cursor,limit,offset,verbose}] Returns the credits of an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + action (enum[str], optional) - The action to filter by - + Default: `None` + + Default: `null` + Members + `None` + `Closed: Max dispenses reached` @@ -7514,12 +6166,12 @@ Returns the credits of an address + `send` + `sweep` + `wins` - + cursor (str, optional) - The last index of the credits to return - + Default: `None` + + cursor (int, optional) - The last index of the credits to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of credits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7530,15 +6182,15 @@ Returns the credits of an address "result": [ { "block_index": 225, - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d_c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", + "event": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e_8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1739521374, + "block_time": 1740828957, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7551,15 +6203,15 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "event": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1739521305, + "block_time": 1740828881, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7572,15 +6224,15 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "event": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1739521301, + "block_time": 1740828878, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7593,15 +6245,15 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27_c017760953580092bcceb24ea8cf32ae7d218777d49ae94533e32a3079a32fb5", + "event": "6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b4_8194c59152c7c4aa71fb100dac3e45fc8d527cc3434147c298a45b4c9d8216d0", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1739521301, + "block_time": 1740828878, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7614,15 +6266,15 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27", + "event": "6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b4", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1739521293, + "block_time": 1740828870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7639,14 +6291,14 @@ Returns the credits of an address } ``` -### Get Debits By Address [GET /v2/addresses/{address}/debits{?action}{&cursor}{&limit}{&offset}{&verbose}] +### Get Debits By Address [GET /v2/addresses/{address}/debits{?action,cursor,limit,offset,verbose}] Returns the debits of an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + action (enum[str], optional) - The action to filter by - + Default: `None` + + Default: `null` + Members + `None` + `bet` @@ -7665,12 +6317,12 @@ Returns the debits of an address + `send` + `sweep` + `sweep fee` - + cursor (str, optional) - The last index of the debits to return - + Default: `None` + + cursor (int, optional) - The last index of the debits to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of debits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7681,15 +6333,15 @@ Returns the debits of an address "result": [ { "block_index": 203, - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "event": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1739521297, + "block_time": 1740828874, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7702,36 +6354,36 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "event": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1739521297, + "block_time": 1740828874, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000020" }, { "block_index": 202, - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "event": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1739521293, + "block_time": 1740828870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7744,43 +6396,43 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "event": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1739521293, + "block_time": 1740828870, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000020" }, { "block_index": 201, - "address": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "address": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "4c3f41b6e9e6595de5ae567d6b4f3019021ef5ece2f0bc855b15dfff821e0ef7", + "event": "469dbbf4907b7617d285482169d25cd856bb1c7e36cfd4aa2299e5c0ffd4ff83", "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1739521290, + "block_time": 1740828867, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00001000" } @@ -7790,12 +6442,12 @@ Returns the debits of an address } ``` -### Get Bet By Feed [GET /v2/addresses/{address}/bets{?status}{&cursor}{&limit}{&offset}{&verbose}] +### Get Bet By Feed [GET /v2/addresses/{address}/bets{?status,cursor,limit,offset,verbose}] Returns the bets of a feed + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address of the feed + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -7804,12 +6456,12 @@ Returns the bets of a feed + `expired` + `filled` + `open` - + cursor (str, optional) - The last index of the bets to return - + Default: `None` + + cursor (int, optional) - The last index of the bets to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of bets to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7823,18 +6475,18 @@ Returns the bets of a feed } ``` -### Get Broadcasts By Source [GET /v2/addresses/{address}/broadcasts{?cursor}{&limit}{&offset}{&verbose}] +### Get Broadcasts By Source [GET /v2/addresses/{address}/broadcasts{?cursor,limit,offset,verbose}] Returns the broadcasts of a source + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return - + cursor (str, optional) - The last index of the broadcasts to return - + Default: `None` + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + + cursor (int, optional) - The last index of the broadcasts to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of broadcasts to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7845,16 +6497,16 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "9393d989b1937565a94a31c7702e871f36a992ad8c54b813aabd77c60c12cbd2", + "tx_hash": "881454b51ff8bcf15983fb2786b636a9c35debadf85e6121256a1adc046ac4e9", "block_index": 128, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, "text": "Hello, world!", "locked": false, "status": "valid", - "block_time": 1739521040, + "block_time": 1740828611, "fee_fraction_int_normalized": "0.00000000" } ], @@ -7863,18 +6515,18 @@ Returns the broadcasts of a source } ``` -### Get Burns By Address [GET /v2/addresses/{address}/burns{?cursor}{&limit}{&offset}{&verbose}] +### Get Burns By Address [GET /v2/addresses/{address}/burns{?cursor,limit,offset,verbose}] Returns the burns of an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return - + cursor (str, optional) - The last index of the burns to return - + Default: `None` + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + + cursor (int, optional) - The last index of the burns to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of burns to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7884,14 +6536,14 @@ Returns the burns of an address { "result": [ { - "tx_index": 9, - "tx_hash": "b6a736a4fd59cb03b85c0bd46d2bc7fde79eb19d5640aaa712dc1f408d1874fc", + "tx_index": 8, + "tx_hash": "1d48efaf08cdee8f09a17a4a44be2014758623ce489f9ece3c45f1a4bc407ebc", "block_index": 112, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1739520982, + "block_time": 1740828550, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -7901,12 +6553,12 @@ Returns the burns of an address } ``` -### Get Sends By Address [GET /v2/addresses/{address}/sends{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Sends By Address [GET /v2/addresses/{address}/sends{?send_type,cursor,limit,offset,verbose}] Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` + Members @@ -7915,12 +6567,12 @@ Returns the sends, include Enhanced and MPMA sends, of an address + `attach` + `move` + `detach` - + cursor (str, optional) - The last index of the sends to return - + Default: `None` + + cursor (int, optional) - The last index of the sends to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of sends to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7931,10 +6583,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 81, - "tx_hash": "aaa1433c3a8e391d3686c0bcd2f6f61d036065fe1acb058ccc1c0a2d10a55270", + "tx_hash": "5f1c485239417f60656530d4cfe0633c34df78c46137f28d2dd37ef16e7bad43", "block_index": 205, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "destination": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "quantity": 10, "status": "valid", @@ -7944,7 +6596,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "send_type": "send", "source_address": null, "destination_address": null, - "block_time": 1739521305, + "block_time": 1740828881, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7958,10 +6610,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 80, - "tx_hash": "a3fc9c134999bfe3c09c3dd2868a0eb0bfff2172aef595a867a817ba0e39230a", + "tx_hash": "a49331ea922a1c452fbba0996e0e1f8bda1c6c5f35b8f1b24600949daacf66f7", "block_index": 204, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "destination": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "destination": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "quantity": 10, "status": "valid", @@ -7971,7 +6623,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "send_type": "send", "source_address": null, "destination_address": null, - "block_time": 1739521301, + "block_time": 1740828878, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7985,10 +6637,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "block_index": 203, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "quantity": 10, "status": "valid", @@ -7998,7 +6650,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "send_type": "send", "source_address": null, "destination_address": null, - "block_time": 1739521297, + "block_time": 1740828874, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8012,10 +6664,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "block_index": 203, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8025,24 +6677,24 @@ Returns the sends, include Enhanced and MPMA sends, of an address "send_type": "send", "source_address": null, "destination_address": null, - "block_time": 1739521297, + "block_time": 1740828874, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 79, - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "block_index": 203, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -8052,14 +6704,14 @@ Returns the sends, include Enhanced and MPMA sends, of an address "send_type": "send", "source_address": null, "destination_address": null, - "block_time": 1739521297, + "block_time": 1740828874, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" @@ -8070,12 +6722,12 @@ Returns the sends, include Enhanced and MPMA sends, of an address } ``` -### Get Receive By Address [GET /v2/addresses/{address}/receives{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Receive By Address [GET /v2/addresses/{address}/receives{?send_type,cursor,limit,offset,verbose}] Returns the receives of an address + Parameters - + address: `bcrt1qk78jnqrqxekavzklwwyv9xs38z3r20dfmx6r95` (str, required) - The address to return + + address: `bcrt1qazzpl24ze56tqv2tx5kh6nv4yultk9ptqdtf69` (str, required) - The address to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` + Members @@ -8084,12 +6736,12 @@ Returns the receives of an address + `attach` + `move` + `detach` - + cursor (str, optional) - The last index of the sends to return - + Default: `None` + + cursor (int, optional) - The last index of the sends to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of sends to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8100,10 +6752,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "665c3170c0ad3bafe581665c35dbfbe66e9d13b353a97f96fde8eecf6d1d1968", + "tx_hash": "3c8ae3d62bc9388543145d509b0e55091e1a4e7014e475b1610de999e739eece", "block_index": 142, - "source": "e1d1e6d8549e0c99239469747ab73245a8423d8c0e8540895a5006c2e0d2ac35:0", - "destination": "bcrt1qk78jnqrqxekavzklwwyv9xs38z3r20dfmx6r95", + "source": "b082558cb37363fc1a4e1a70e154918d1033f33fc9da404cfd1d03ffda66d16f:0", + "destination": "bcrt1qazzpl24ze56tqv2tx5kh6nv4yultk9ptqdtf69", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -8111,16 +6763,16 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "send_type": "detach", - "source_address": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "source_address": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "destination_address": null, - "block_time": 1739521089, + "block_time": 1740828664, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" @@ -8131,12 +6783,12 @@ Returns the receives of an address } ``` -### Get Sends By Address And Asset [GET /v2/addresses/{address}/sends/{asset}{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Sends By Address And Asset [GET /v2/addresses/{address}/sends/{asset}{?send_type,cursor,limit,offset,verbose}] Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + asset: `EXPANSIVE` (str, required) - The asset to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` @@ -8146,12 +6798,12 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset + `attach` + `move` + `detach` - + cursor (str, optional) - The last index of the sends to return - + Default: `None` + + cursor (int, optional) - The last index of the sends to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of sends to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8165,12 +6817,12 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset } ``` -### Get Receive By Address And Asset [GET /v2/addresses/{address}/receives/{asset}{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Receive By Address And Asset [GET /v2/addresses/{address}/receives/{asset}{?send_type,cursor,limit,offset,verbose}] Returns the receives of an address and asset + Parameters - + address: `bcrt1qk78jnqrqxekavzklwwyv9xs38z3r20dfmx6r95` (str, required) - The address to return + + address: `bcrt1qazzpl24ze56tqv2tx5kh6nv4yultk9ptqdtf69` (str, required) - The address to return + asset: `EXPANSIVE` (str, required) - The asset to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` @@ -8180,12 +6832,12 @@ Returns the receives of an address and asset + `attach` + `move` + `detach` - + cursor (str, optional) - The last index of the sends to return - + Default: `None` + + cursor (int, optional) - The last index of the sends to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of sends to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8199,18 +6851,18 @@ Returns the receives of an address and asset } ``` -### Get Valid Destructions By Address [GET /v2/addresses/{address}/destructions{?cursor}{&limit}{&offset}{&verbose}] +### Get Valid Destructions By Address [GET /v2/addresses/{address}/destructions{?cursor,limit,offset,verbose}] Returns the destructions of a block + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return - + cursor (str, optional) - The last index of the destructions to return - + Default: `None` + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + + cursor (int, optional) - The last index of the destructions to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of destructions to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8221,21 +6873,21 @@ Returns the destructions of a block "result": [ { "tx_index": 14, - "tx_hash": "c272cdeb8b0426bc5a64d26ada4f4e0b82f36478b47d884a590d83740df40573", + "tx_hash": "5b9cb58fe95bf0280d7650efb2172bfe48e011ee6be0410b1acfa92f88fcce2a", "block_index": 121, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "FAIRMINTB", "quantity": 300000000, "tag": "soft cap not reached", "status": "valid", - "block_time": 1739521017, + "block_time": 1740828585, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "3.00000000" } @@ -8245,12 +6897,12 @@ Returns the destructions of a block } ``` -### Get Dispensers By Address [GET /v2/addresses/{address}/dispensers{?status}{&exclude_with_oracle}{&cursor}{&limit}{&offset}{&sort}{&verbose}] +### Get Dispensers By Address [GET /v2/addresses/{address}/dispensers{?status,exclude_with_oracle,cursor,limit,offset,sort,verbose}] Returns the dispensers of an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -8260,15 +6912,15 @@ Returns the dispensers of an address + `closing` + `open_empty_address` + exclude_with_oracle (bool, optional) - Whether to exclude dispensers with an oracle - + Default: `False` - + cursor (str, optional) - The last index of the dispensers to return - + Default: `None` + + Default: `null` + + cursor (int, optional) - The last index of the dispensers to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispensers to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + sort: `give_quantity:desc` (str, optional) - The sort order of the dispensers to return (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8279,9 +6931,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "dfebef751c8ed8b3b89030337aae90d021dc8d8179e235601ec71485064c38a4", + "tx_hash": "9a9784e331f5f27fe77e5a5357743093d30dbeb61a7a20e623bd3c8296e5346f", "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8290,7 +6942,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8300,7 +6952,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1739521054, + "block_time": 1740828626, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8318,9 +6970,9 @@ Returns the dispensers of an address }, { "tx_index": 68, - "tx_hash": "894b0a648fd72351807bbfa3c960c7f5587e5a2a3268bb12b84bbf4324afcbd8", + "tx_hash": "40de9b3e34d056c849a59903ec40f95641a597dc59cba950cd98ce7da0958b4d", "block_index": 194, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8329,7 +6981,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8339,14 +6991,14 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1739521263, + "block_time": 1740828833, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00006000", @@ -8366,7 +7018,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (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` @@ -8377,9 +7029,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "dfebef751c8ed8b3b89030337aae90d021dc8d8179e235601ec71485064c38a4", + "tx_hash": "9a9784e331f5f27fe77e5a5357743093d30dbeb61a7a20e623bd3c8296e5346f", "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8388,7 +7040,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8398,7 +7050,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1739521054, + "block_time": 1740828626, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8417,18 +7069,18 @@ Returns the dispenser of an address and an asset } ``` -### Get Dispenses By Source [GET /v2/addresses/{address}/dispenses/sends{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Source [GET /v2/addresses/{address}/dispenses/sends{?cursor,limit,offset,verbose}] Returns the dispenses of a source + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return - + cursor (str, optional) - The last index of the dispenses to return - + Default: `None` + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + + cursor (int, optional) - The last index of the dispenses to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8440,18 +7092,18 @@ Returns the dispenses of a source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "d60f37b3e395b912b1714e4f07598ed52a8099dc07be3f12bb03b83f9f24bd15", + "tx_hash": "c9240303596009153f6483efa036b2d77decec303722ebf35d83f26a2806ce90", "block_index": 194, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "894b0a648fd72351807bbfa3c960c7f5587e5a2a3268bb12b84bbf4324afcbd8", + "dispenser_tx_hash": "40de9b3e34d056c849a59903ec40f95641a597dc59cba950cd98ce7da0958b4d", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8459,7 +7111,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8474,14 +7126,14 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521263, + "block_time": 1740828833, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -8489,18 +7141,18 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "783231830b39263950a1a6babd22fbc70899756f5528a7f389c3b1f9b3119753", + "tx_hash": "95bfa7eb5f9534e861f892407a86d4bf908475741585e432859484f6c3950082", "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "dfebef751c8ed8b3b89030337aae90d021dc8d8179e235601ec71485064c38a4", + "dispenser_tx_hash": "9a9784e331f5f27fe77e5a5357743093d30dbeb61a7a20e623bd3c8296e5346f", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8508,7 +7160,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8523,7 +7175,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521054, + "block_time": 1740828626, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8538,18 +7190,18 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5556459d929f81c24afc7845a78456cc779ffdd7b2ecd0d243d292bbc09dd0d1", + "tx_hash": "b4b852807bb00000609505d0f3e43340cfc6e633a382e8cf0e2b39ffeb890f5d", "block_index": 131, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "dfebef751c8ed8b3b89030337aae90d021dc8d8179e235601ec71485064c38a4", + "dispenser_tx_hash": "9a9784e331f5f27fe77e5a5357743093d30dbeb61a7a20e623bd3c8296e5346f", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8557,7 +7209,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8572,7 +7224,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521050, + "block_time": 1740828622, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8590,18 +7242,18 @@ Returns the dispenses of a source } ``` -### Get Dispenses By Destination [GET /v2/addresses/{address}/dispenses/receives{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Destination [GET /v2/addresses/{address}/dispenses/receives{?cursor,limit,offset,verbose}] Returns the dispenses of a destination + Parameters - + address: `bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw` (str, required) - The address to return - + cursor (str, optional) - The last index of the dispenses to return - + Default: `None` + + address: `bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f` (str, required) - The address to return + + cursor (int, optional) - The last index of the dispenses to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8613,18 +7265,18 @@ Returns the dispenses of a destination { "tx_index": 115, "dispense_index": 0, - "tx_hash": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "tx_hash": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "block_index": 237, - "source": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "dispense_quantity": 3000, - "dispenser_tx_hash": "7106c5bc21452894b653fbef9ca6d21beeb1ccb4e588238542b22d9296eb9ca3", + "dispenser_tx_hash": "bad25a9b2a401e6deb9bb92d2db817b52cf1bca6baaa182726858cec4ce578ee", "btc_amount": 3000, "dispenser": { "tx_index": 114, "block_index": 237, - "source": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", + "source": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", "give_quantity": 1, "escrow_quantity": 5000, "satoshirate": 1, @@ -8632,7 +7284,7 @@ Returns the dispenses of a destination "give_remaining": 2000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", + "origin": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8647,7 +7299,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521430, + "block_time": 1740829027, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8662,18 +7314,18 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "d60f37b3e395b912b1714e4f07598ed52a8099dc07be3f12bb03b83f9f24bd15", + "tx_hash": "c9240303596009153f6483efa036b2d77decec303722ebf35d83f26a2806ce90", "block_index": 194, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "894b0a648fd72351807bbfa3c960c7f5587e5a2a3268bb12b84bbf4324afcbd8", + "dispenser_tx_hash": "40de9b3e34d056c849a59903ec40f95641a597dc59cba950cd98ce7da0958b4d", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8681,7 +7333,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8696,14 +7348,14 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521263, + "block_time": 1740828833, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -8711,18 +7363,18 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "783231830b39263950a1a6babd22fbc70899756f5528a7f389c3b1f9b3119753", + "tx_hash": "95bfa7eb5f9534e861f892407a86d4bf908475741585e432859484f6c3950082", "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "dfebef751c8ed8b3b89030337aae90d021dc8d8179e235601ec71485064c38a4", + "dispenser_tx_hash": "9a9784e331f5f27fe77e5a5357743093d30dbeb61a7a20e623bd3c8296e5346f", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8730,7 +7382,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8745,7 +7397,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521054, + "block_time": 1740828626, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8760,18 +7412,18 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5556459d929f81c24afc7845a78456cc779ffdd7b2ecd0d243d292bbc09dd0d1", + "tx_hash": "b4b852807bb00000609505d0f3e43340cfc6e633a382e8cf0e2b39ffeb890f5d", "block_index": 131, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "dfebef751c8ed8b3b89030337aae90d021dc8d8179e235601ec71485064c38a4", + "dispenser_tx_hash": "9a9784e331f5f27fe77e5a5357743093d30dbeb61a7a20e623bd3c8296e5346f", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8779,7 +7431,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8794,7 +7446,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521050, + "block_time": 1740828622, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8812,19 +7464,19 @@ Returns the dispenses of a destination } ``` -### Get Dispenses By Source And Asset [GET /v2/addresses/{address}/dispenses/sends/{asset}{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Source And Asset [GET /v2/addresses/{address}/dispenses/sends/{asset}{?cursor,limit,offset,verbose}] Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (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` + + cursor (int, optional) - The last index of the dispenses to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8836,18 +7488,18 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "783231830b39263950a1a6babd22fbc70899756f5528a7f389c3b1f9b3119753", + "tx_hash": "95bfa7eb5f9534e861f892407a86d4bf908475741585e432859484f6c3950082", "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "dfebef751c8ed8b3b89030337aae90d021dc8d8179e235601ec71485064c38a4", + "dispenser_tx_hash": "9a9784e331f5f27fe77e5a5357743093d30dbeb61a7a20e623bd3c8296e5346f", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8855,7 +7507,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8870,7 +7522,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521054, + "block_time": 1740828626, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8885,18 +7537,18 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5556459d929f81c24afc7845a78456cc779ffdd7b2ecd0d243d292bbc09dd0d1", + "tx_hash": "b4b852807bb00000609505d0f3e43340cfc6e633a382e8cf0e2b39ffeb890f5d", "block_index": 131, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "dfebef751c8ed8b3b89030337aae90d021dc8d8179e235601ec71485064c38a4", + "dispenser_tx_hash": "9a9784e331f5f27fe77e5a5357743093d30dbeb61a7a20e623bd3c8296e5346f", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8904,7 +7556,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8919,7 +7571,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521050, + "block_time": 1740828622, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8937,19 +7589,19 @@ Returns the dispenses of an address and an asset } ``` -### Get Dispenses By Destination And Asset [GET /v2/addresses/{address}/dispenses/receives/{asset}{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Destination And Asset [GET /v2/addresses/{address}/dispenses/receives/{asset}{?cursor,limit,offset,verbose}] Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw` (str, required) - The address to return + + address: `bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f` (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` + + cursor (int, optional) - The last index of the dispenses to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8961,18 +7613,18 @@ Returns the dispenses of an address and an asset { "tx_index": 115, "dispense_index": 0, - "tx_hash": "d092f7b552dc9f8cf089b066c6010a1709219f4a4247fec03b78f43650b5d4b8", + "tx_hash": "1e471f7c3acc9ef71b91f603b9ba8c07e3bf4106de1c54372f6bf147ce9eb8fc", "block_index": 237, - "source": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "dispense_quantity": 3000, - "dispenser_tx_hash": "7106c5bc21452894b653fbef9ca6d21beeb1ccb4e588238542b22d9296eb9ca3", + "dispenser_tx_hash": "bad25a9b2a401e6deb9bb92d2db817b52cf1bca6baaa182726858cec4ce578ee", "btc_amount": 3000, "dispenser": { "tx_index": 114, "block_index": 237, - "source": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", + "source": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", "give_quantity": 1, "escrow_quantity": 5000, "satoshirate": 1, @@ -8980,7 +7632,7 @@ Returns the dispenses of an address and an asset "give_remaining": 2000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qv6vlty9e9quy24p7r08dda4hk9r5r7sa7f5g93", + "origin": "bcrt1qraxmhl5se0nasyycw0pmjsqg0p0ns262dkgvm3", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8995,7 +7647,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521430, + "block_time": 1740829027, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9010,18 +7662,18 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "783231830b39263950a1a6babd22fbc70899756f5528a7f389c3b1f9b3119753", + "tx_hash": "95bfa7eb5f9534e861f892407a86d4bf908475741585e432859484f6c3950082", "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "dfebef751c8ed8b3b89030337aae90d021dc8d8179e235601ec71485064c38a4", + "dispenser_tx_hash": "9a9784e331f5f27fe77e5a5357743093d30dbeb61a7a20e623bd3c8296e5346f", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9029,7 +7681,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9044,7 +7696,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521054, + "block_time": 1740828626, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9059,18 +7711,18 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5556459d929f81c24afc7845a78456cc779ffdd7b2ecd0d243d292bbc09dd0d1", + "tx_hash": "b4b852807bb00000609505d0f3e43340cfc6e633a382e8cf0e2b39ffeb890f5d", "block_index": 131, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "dfebef751c8ed8b3b89030337aae90d021dc8d8179e235601ec71485064c38a4", + "dispenser_tx_hash": "9a9784e331f5f27fe77e5a5357743093d30dbeb61a7a20e623bd3c8296e5346f", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9078,7 +7730,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9093,7 +7745,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1739521050, + "block_time": 1740828622, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9111,18 +7763,18 @@ Returns the dispenses of an address and an asset } ``` -### Get Sweeps By Address [GET /v2/addresses/{address}/sweeps{?cursor}{&limit}{&offset}{&verbose}] +### Get Sweeps By Address [GET /v2/addresses/{address}/sweeps{?cursor,limit,offset,verbose}] Returns the sweeps of an address + Parameters - + address: `bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9` (str, required) - The address to return - + cursor (str, optional) - The last index of the sweeps to return - + Default: `None` + + address: `bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz` (str, required) - The address to return + + cursor (int, optional) - The last index of the sweeps to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of sweeps to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9133,15 +7785,15 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "044dc2f444bb200b4d68580cf959677a95d16b1bdb21e12005f65f0f00713808", + "tx_hash": "72123381d3d5f2f6456953edbe047571c6a9ec0b83df3f82d191c130c1312308", "block_index": 190, - "source": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "source": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", + "destination": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1739521250, + "block_time": 1740828820, "fee_paid_normalized": "0.00600000" } ], @@ -9150,12 +7802,12 @@ Returns the sweeps of an address } ``` -### Get Issuances By Address [GET /v2/addresses/{address}/issuances{?asset_events}{&cursor}{&limit}{&offset}{&verbose}] +### Get Issuances By Address [GET /v2/addresses/{address}/issuances{?asset_events,cursor,limit,offset,verbose}] Returns the issuances of an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -9169,12 +7821,12 @@ Returns the issuances of an address + `open_fairminter` + `fairmint` + `lock_description` - + cursor (str, optional) - The last index of the issuances to return - + Default: `None` + + cursor (int, optional) - The last index of the issuances to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of issuances to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9185,14 +7837,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "8caeb989dc503bb40d981f4a6ffade4ceeb46466fcda90573159e3eeb500158d", + "tx_hash": "e3ff095fa68dbdfde34128c3a34a0c21d4582842a430feaa5f8b7a2e4044852d", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "transfer": false, "callable": false, "call_date": 0, @@ -9206,20 +7858,20 @@ Returns the issuances of an address "asset_events": "creation", "locked": false, "reset": false, - "block_time": 1739521286, + "block_time": 1740828864, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "f19c0c8983337dabf1d6d9a9213fad37fc7cde96d84ac3e0d925f47e5014c72c", + "tx_hash": "79f5c661d25f5d57347f7ecc7415a259e0ded26a6067efcc19661a098757923f", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "transfer": false, "callable": false, "call_date": 0, @@ -9233,20 +7885,20 @@ Returns the issuances of an address "asset_events": "creation", "locked": false, "reset": false, - "block_time": 1739521143, + "block_time": 1740828714, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "27029e1167ad7424f0c18c8c733d4edbd17f4eb6e0496b9875d28ff8d0f2d71e", + "tx_hash": "715e4412b12aabe75f76a565d4e6e570f4f131376c7cd9268aaba57f615e988e", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "transfer": false, "callable": false, "call_date": 0, @@ -9260,20 +7912,20 @@ Returns the issuances of an address "asset_events": "lock_description", "locked": false, "reset": false, - "block_time": 1739521139, + "block_time": 1740828711, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "e3bd5494685d51b1776c117da4e0ffe6f7c8f12b502ab0abae681896892a383b", + "tx_hash": "aba930530e4fc135af4d196069aa40e161bd1114ecbbcc49400745e8647418c9", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "transfer": false, "callable": false, "call_date": 0, @@ -9287,20 +7939,20 @@ Returns the issuances of an address "asset_events": "creation", "locked": false, "reset": false, - "block_time": 1739521136, + "block_time": 1740828706, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "62aae74bede7b5eae73f8fd24a10448757bc5bb3e44f9082b358c5debcf34edc", + "tx_hash": "6758305e7805e9694147aaaf4efb6b69d6b6a6faa4e2623e034cd82406d4b1c9", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "transfer": false, "callable": false, "call_date": 0, @@ -9314,7 +7966,7 @@ Returns the issuances of an address "asset_events": "creation", "locked": false, "reset": false, - "block_time": 1739521132, + "block_time": 1740828703, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -9324,20 +7976,20 @@ Returns the issuances of an address } ``` -### Get Valid Assets By Issuer Or Owner [GET /v2/addresses/{address}/assets{?named}{&cursor}{&limit}{&offset}{&verbose}] +### Get Valid Assets By Issuer Or Owner [GET /v2/addresses/{address}/assets{?named,cursor,limit,offset,verbose}] Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The issuer or owner to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (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 - + Default: `None` + + Default: `null` + + cursor (int, optional) - The last index of the assets to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of assets to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9350,8 +8002,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 100000000000, @@ -9359,16 +8011,16 @@ Returns the valid assets issued or owned by an address "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1739521286, - "last_issuance_block_time": 1739521286, + "first_issuance_block_time": 1740828864, + "last_issuance_block_time": 1740828864, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 10000000000, @@ -9376,16 +8028,16 @@ Returns the valid assets issued or owned by an address "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1739521132, - "last_issuance_block_time": 1739521139, + "first_issuance_block_time": 1740828703, + "last_issuance_block_time": 1740828711, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 180, @@ -9393,16 +8045,16 @@ Returns the valid assets issued or owned by an address "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1739521114, - "last_issuance_block_time": 1739521122, + "first_issuance_block_time": 1740828684, + "last_issuance_block_time": 1740828691, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 100000000000, @@ -9410,16 +8062,16 @@ Returns the valid assets issued or owned by an address "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1739521077, - "last_issuance_block_time": 1739521077, + "first_issuance_block_time": 1740828654, + "last_issuance_block_time": 1740828654, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 40, @@ -9427,8 +8079,8 @@ Returns the valid assets issued or owned by an address "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1739521034, - "last_issuance_block_time": 1739521037, + "first_issuance_block_time": 1740828604, + "last_issuance_block_time": 1740828608, "supply_normalized": "0.00000040" } ], @@ -9437,20 +8089,20 @@ Returns the valid assets issued or owned by an address } ``` -### Get Valid Assets By Issuer [GET /v2/addresses/{address}/assets/issued{?named}{&cursor}{&limit}{&offset}{&verbose}] +### Get Valid Assets By Issuer [GET /v2/addresses/{address}/assets/issued{?named,cursor,limit,offset,verbose}] Returns the valid assets issued by an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The issuer to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (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 - + Default: `None` + + Default: `null` + + cursor (int, optional) - The last index of the assets to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of assets to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9463,8 +8115,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 100000000000, @@ -9472,16 +8124,16 @@ Returns the valid assets issued by an address "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1739521286, - "last_issuance_block_time": 1739521286, + "first_issuance_block_time": 1740828864, + "last_issuance_block_time": 1740828864, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 10000000000, @@ -9489,16 +8141,16 @@ Returns the valid assets issued by an address "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1739521132, - "last_issuance_block_time": 1739521139, + "first_issuance_block_time": 1740828703, + "last_issuance_block_time": 1740828711, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 180, @@ -9506,16 +8158,16 @@ Returns the valid assets issued by an address "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1739521114, - "last_issuance_block_time": 1739521122, + "first_issuance_block_time": 1740828684, + "last_issuance_block_time": 1740828691, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 100000000000, @@ -9523,16 +8175,16 @@ Returns the valid assets issued by an address "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1739521077, - "last_issuance_block_time": 1739521077, + "first_issuance_block_time": 1740828654, + "last_issuance_block_time": 1740828654, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 40, @@ -9540,8 +8192,8 @@ Returns the valid assets issued by an address "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1739521034, - "last_issuance_block_time": 1739521037, + "first_issuance_block_time": 1740828604, + "last_issuance_block_time": 1740828608, "supply_normalized": "0.00000040" } ], @@ -9550,20 +8202,20 @@ Returns the valid assets issued by an address } ``` -### Get Valid Assets By Owner [GET /v2/addresses/{address}/assets/owned{?named}{&cursor}{&limit}{&offset}{&verbose}] +### Get Valid Assets By Owner [GET /v2/addresses/{address}/assets/owned{?named,cursor,limit,offset,verbose}] Returns the valid assets owned by an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The owner to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (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 - + Default: `None` + + Default: `null` + + cursor (int, optional) - The last index of the assets to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of assets to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9576,8 +8228,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 100000000000, @@ -9585,16 +8237,16 @@ Returns the valid assets owned by an address "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1739521286, - "last_issuance_block_time": 1739521286, + "first_issuance_block_time": 1740828864, + "last_issuance_block_time": 1740828864, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 10000000000, @@ -9602,16 +8254,16 @@ Returns the valid assets owned by an address "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1739521132, - "last_issuance_block_time": 1739521139, + "first_issuance_block_time": 1740828703, + "last_issuance_block_time": 1740828711, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 180, @@ -9619,16 +8271,16 @@ Returns the valid assets owned by an address "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1739521114, - "last_issuance_block_time": 1739521122, + "first_issuance_block_time": 1740828684, + "last_issuance_block_time": 1740828691, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 100000000000, @@ -9636,16 +8288,16 @@ Returns the valid assets owned by an address "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1739521077, - "last_issuance_block_time": 1739521077, + "first_issuance_block_time": 1740828654, + "last_issuance_block_time": 1740828654, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, "supply": 40, @@ -9653,8 +8305,8 @@ Returns the valid assets owned by an address "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1739521034, - "last_issuance_block_time": 1739521037, + "first_issuance_block_time": 1740828604, + "last_issuance_block_time": 1740828608, "supply_normalized": "0.00000040" } ], @@ -9663,12 +8315,12 @@ Returns the valid assets owned by an address } ``` -### Get Transactions By Address [GET /v2/addresses/{address}/transactions{?type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Transactions By Address [GET /v2/addresses/{address}/transactions{?type,show_unconfirmed,cursor,limit,offset,verbose}] Returns the transactions of an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + type (enum[str], optional) - The type of the transaction to return + Default: `all` + Members @@ -9695,12 +8347,14 @@ Returns the transactions of an address + `detach` + `utxomove` + `unknown` - + cursor: `121` (str, optional) - The last transaction index to return - + Default: `None` + + show_unconfirmed (bool, optional) - Show unconfirmed transactions + + Default: `null` + + cursor: `121` (int, optional) - The last transaction index to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9711,17 +8365,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "block_index": 203, - "block_hash": "0e350f08c4fb646581553292b9e208bd69134de097125842a35d449a6befee50", - "block_time": 1739521297, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "block_hash": "46db0ebe012283342637d19e82494dc9f51987a12869ec53766dc04aa395471d", + "block_time": 1740828874, + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803beb477813b4b1c3fa2fe5c867b22d9d1355d09b80ea0a411b379738133363975c8c52ff9f852b2d8a80ca7722bfa16fb286901a3dffcd197248c877e9ef40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a952ded2ef91baf58bef9d353640b5fd09d209f5803b6d13f782ef058fe2af7a9b8194f324bee9f37a80ea233bbd6e7db93b5903951452f738cd512c13ef40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5:0 4 ", + "utxos_info": " 6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b:0 4 ", "transaction_type": "mpma", "events": [ { @@ -9730,29 +8384,29 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "memo": "memo2", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "tx_index": 79, - "block_time": 1739521297, + "block_time": 1740828874, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "block_index": 203, - "block_time": 1739521297 + "block_time": 1740828874 }, { "event_index": 679, @@ -9760,29 +8414,29 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "destination": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "memo": "memo3", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "tx_index": 79, - "block_time": 1739521297, + "block_time": 1740828874, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "block_index": 203, - "block_time": 1739521297 + "block_time": 1740828874 }, { "event_index": 680, @@ -9790,16 +8444,16 @@ Returns the transactions of an address "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "memo": "memo1", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "tx_index": 79, - "block_time": 1739521297, + "block_time": 1740828874, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9810,9 +8464,9 @@ Returns the transactions of an address }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0d04aa0cae9b551698b5c0f7d9552ed2c8d7953ff4829c0271b7f241699e77b5", + "tx_hash": "6e3a167adabd480b5cbe55d89aaacc4c096b28ef278ef8d56d2bd8dda0d6e89b", "block_index": 203, - "block_time": 1739521297 + "block_time": 1740828874 } ], "unpacked_data": { @@ -9821,23 +8475,23 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -9857,17 +8511,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_hash": "5cf6d19e884804b9d3e656db8fb469de86e3e8375f2bc927619b6c22f6b9255e", - "block_time": 1739521293, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "block_hash": "37df4ec0e84732f0f0abc9c61e60cfad2cf489cea410319ab9cf9232588e4960", + "block_time": 1740828870, + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803beb477813b4b1c3fa2fe5c867b22d9d1355d09b80ea0a411b379738133363975c8c52ff9f852b2d8a80ca7722bfa16fb286901a3dffcd197248c877e9ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a952ded2ef91baf58bef9d353640b5fd09d209f5803b6d13f782ef058fe2af7a9b8194f324bee9f37a80ea233bbd6e7db93b5903951452f738cd512c13ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606:0 4 ", + "utxos_info": " 6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0:0 4 ", "transaction_type": "mpma", "events": [ { @@ -9875,24 +8529,24 @@ Returns the transactions of an address "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27" + "tx_hash": "6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b4" }, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_time": 1739521293 + "block_time": 1740828870 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", - "block_time": 1739521293 + "order_hash": "6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b4", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", + "block_time": 1740828870 }, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_time": 1739521293 + "block_time": 1740828870 }, { "event_index": 666, @@ -9900,29 +8554,29 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "memo": "the memo", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "tx_index": 78, - "block_time": 1739521293, + "block_time": 1740828870, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_time": 1739521293 + "block_time": 1740828870 }, { "event_index": 667, @@ -9930,29 +8584,29 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qefmj90apd7egdyq68hlu6xtjfry806007e9lux", + "destination": "bcrt1qag3nh0tw0kunkkgrj5299aece4gjcyl0jfwlht", "memo": "the memo", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "tx_index": 78, - "block_time": 1739521293, + "block_time": 1740828870, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_time": 1739521293 + "block_time": 1740828870 }, { "event_index": 668, @@ -9960,16 +8614,16 @@ Returns the transactions of an address "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "memo": "the memo", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "tx_index": 78, - "block_time": 1739521293, + "block_time": 1740828870, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9980,9 +8634,9 @@ Returns the transactions of an address }, "quantity_normalized": "0.00000010" }, - "tx_hash": "417323f01415fa48748d63df56e3892de8e138fdb6850e2e8c1b80e10060c606", + "tx_hash": "6b687221d6372b5068ca549d0a497564ecd684f70b88319d5075e5839cc486b0", "block_index": 202, - "block_time": 1739521293 + "block_time": 1740828870 } ], "unpacked_data": { @@ -9991,23 +8645,23 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qag9yzxehjuupxvmrjawgc5hln7zjktv2sed0f9", + "destination": "bcrt1q8dk38auzauzclc4002dcr98nyjlwnum6yht7uz", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -10027,17 +8681,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "4c3f41b6e9e6595de5ae567d6b4f3019021ef5ece2f0bc855b15dfff821e0ef7", + "tx_hash": "469dbbf4907b7617d285482169d25cd856bb1c7e36cfd4aa2299e5c0ffd4ff83", "block_index": 201, - "block_hash": "07c8917aa73ea91ec044b03556a39665617decbf2a87118ae419a7af5842a801", - "block_time": 1739521290, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "block_hash": "3c619cde0d07d791e5605b16e433681c81069c965cb148eee323afe99d56d6ca", + "block_time": 1740828867, + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8803beb477813b4b1c3fa2fe5c867b22d9d1355d09b", + "data": "02000000178d82231300000000000003e880a952ded2ef91baf58bef9d353640b5fd09d209f5", "supported": true, - "utxos_info": " 4c3f41b6e9e6595de5ae567d6b4f3019021ef5ece2f0bc855b15dfff821e0ef7:1 2 0", + "utxos_info": " 469dbbf4907b7617d285482169d25cd856bb1c7e36cfd4aa2299e5c0ffd4ff83:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -10046,29 +8700,29 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "destination": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "memo": null, "msg_index": 0, "quantity": 1000, "send_type": "send", - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", - "tx_hash": "4c3f41b6e9e6595de5ae567d6b4f3019021ef5ece2f0bc855b15dfff821e0ef7", + "tx_hash": "469dbbf4907b7617d285482169d25cd856bb1c7e36cfd4aa2299e5c0ffd4ff83", "tx_index": 77, - "block_time": 1739521290, + "block_time": 1740828867, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00001000" }, - "tx_hash": "4c3f41b6e9e6595de5ae567d6b4f3019021ef5ece2f0bc855b15dfff821e0ef7", + "tx_hash": "469dbbf4907b7617d285482169d25cd856bb1c7e36cfd4aa2299e5c0ffd4ff83", "block_index": 201, - "block_time": 1739521290 + "block_time": 1740828867 } ], "unpacked_data": { @@ -10077,15 +8731,15 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", + "address": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "quantity_normalized": "0.00001000" } @@ -10094,17 +8748,17 @@ Returns the transactions of an address }, { "tx_index": 76, - "tx_hash": "8caeb989dc503bb40d981f4a6ffade4ceeb46466fcda90573159e3eeb500158d", + "tx_hash": "e3ff095fa68dbdfde34128c3a34a0c21d4582842a430feaa5f8b7a2e4044852d", "block_index": 200, - "block_hash": "53d338958412826ad448c455e7ddd915f18bbeb55aee134d86a91c9683dc7deb", - "block_time": 1739521286, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "block_hash": "217613ba57d05e772512d6923283bbc8d059179d5eb0eb7f5d7fcb2218eedccc", + "block_time": 1740828864, + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 8caeb989dc503bb40d981f4a6ffade4ceeb46466fcda90573159e3eeb500158d:1 2 0", + "utxos_info": " e3ff095fa68dbdfde34128c3a34a0c21d4582842a430feaa5f8b7a2e4044852d:1 2 0", "transaction_type": "issuance", "events": [ { @@ -10115,11 +8769,11 @@ Returns the transactions of an address "asset_longname": null, "asset_name": "MPMASSET", "block_index": 200, - "block_time": 1739521286 + "block_time": 1740828864 }, - "tx_hash": "8caeb989dc503bb40d981f4a6ffade4ceeb46466fcda90573159e3eeb500158d", + "tx_hash": "e3ff095fa68dbdfde34128c3a34a0c21d4582842a430feaa5f8b7a2e4044852d", "block_index": 200, - "block_time": 1739521286 + "block_time": 1740828864 }, { "event_index": 645, @@ -10136,22 +8790,22 @@ Returns the transactions of an address "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": "valid", "transfer": false, - "tx_hash": "8caeb989dc503bb40d981f4a6ffade4ceeb46466fcda90573159e3eeb500158d", + "tx_hash": "e3ff095fa68dbdfde34128c3a34a0c21d4582842a430feaa5f8b7a2e4044852d", "tx_index": 76, - "block_time": 1739521286, + "block_time": 1740828864, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "8caeb989dc503bb40d981f4a6ffade4ceeb46466fcda90573159e3eeb500158d", + "tx_hash": "e3ff095fa68dbdfde34128c3a34a0c21d4582842a430feaa5f8b7a2e4044852d", "block_index": 200, - "block_time": 1739521286 + "block_time": 1740828864 } ], "unpacked_data": { @@ -10177,17 +8831,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "894b0a648fd72351807bbfa3c960c7f5587e5a2a3268bb12b84bbf4324afcbd8", + "tx_hash": "40de9b3e34d056c849a59903ec40f95641a597dc59cba950cd98ce7da0958b4d", "block_index": 193, - "block_hash": "00bb26543356351907f5ae2e907fe6d468cb638c8a86f472c76be53ac4274715", - "block_time": 1739521260, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "block_hash": "25d352aefbb8708251a653dca3f5e7ae5ad4939169597611c5624107df7d47c2", + "block_time": 1740828830, + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 894b0a648fd72351807bbfa3c960c7f5587e5a2a3268bb12b84bbf4324afcbd8:1 2 0", + "utxos_info": " 40de9b3e34d056c849a59903ec40f95641a597dc59cba950cd98ce7da0958b4d:1 2 0", "transaction_type": "dispenser", "events": [ { @@ -10201,29 +8855,29 @@ Returns the transactions of an address "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "origin": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "satoshirate": 1, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "status": 0, - "tx_hash": "894b0a648fd72351807bbfa3c960c7f5587e5a2a3268bb12b84bbf4324afcbd8", + "tx_hash": "40de9b3e34d056c849a59903ec40f95641a597dc59cba950cd98ce7da0958b4d", "tx_index": 68, - "block_time": 1739521260, + "block_time": 1740828830, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00010000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "894b0a648fd72351807bbfa3c960c7f5587e5a2a3268bb12b84bbf4324afcbd8", + "tx_hash": "40de9b3e34d056c849a59903ec40f95641a597dc59cba950cd98ce7da0958b4d", "block_index": 193, - "block_time": 1739521260 + "block_time": 1740828830 } ], "unpacked_data": { @@ -10241,10 +8895,10 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "give_quantity_normalized": "0.00000001", "escrow_quantity_normalized": "0.00010000" @@ -10258,27 +8912,84 @@ Returns the transactions of an address } ``` -### Get Transaction Types Count By Address [GET /v2/addresses/{address}/transactions/counts{?verbose}] +### Get Transaction Types Count By Address [GET /v2/addresses/{address}/transactions/counts{?count_unconfirmed,verbose}] Returns the count of each transaction type + Parameters - + address (str, required) - + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + + count_unconfirmed (bool, optional) - Count unconfirmed transactions + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` -### Get Dividends Distributed By Address [GET /v2/addresses/{address}/dividends{?cursor}{&limit}{&offset}{&verbose}] ++ Response 200 (application/json) + + ``` + { + "result": [ + { + "transaction_type": "issuance", + "count": 6 + }, + { + "transaction_type": "fairminter", + "count": 6 + }, + { + "transaction_type": "dispenser", + "count": 6 + }, + { + "transaction_type": "order", + "count": 4 + }, + { + "transaction_type": "mpma", + "count": 3 + }, + { + "transaction_type": "attach", + "count": 2 + }, + { + "transaction_type": "enhanced_send", + "count": 1 + }, + { + "transaction_type": "dividend", + "count": 1 + }, + { + "transaction_type": "cancel", + "count": 1 + }, + { + "transaction_type": "burn", + "count": 1 + }, + { + "transaction_type": "broadcast", + "count": 1 + } + ], + "next_cursor": null, + "result_count": 11 + } + ``` + +### Get Dividends Distributed By Address [GET /v2/addresses/{address}/dividends{?cursor,limit,offset,verbose}] Returns the dividends distributed by an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return - + cursor (str, optional) - The last index of the assets to return - + Default: `None` + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + + cursor (int, optional) - The last index of the assets to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of assets to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -10289,22 +9000,22 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "c0499fc716e02168b13d0671c53a2703345dec81922ca1f554b62ac771d7c500", + "tx_hash": "99d36be41498610f317041e44269b50021d097e81ef4da4f2662e26d4a5b2046", "block_index": 146, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1739521105, + "block_time": 1740828677, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "dividend_asset_info": { "asset_longname": null, @@ -10323,12 +9034,12 @@ Returns the dividends distributed by an address } ``` -### Get Orders By Address [GET /v2/addresses/{address}/orders{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}] +### Get Orders By Address [GET /v2/addresses/{address}/orders{?status,cursor,limit,offset,sort,verbose}] Returns the orders of an address + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -10337,14 +9048,14 @@ Returns the orders of an address + `expired` + `filled` + `cancelled` - + cursor (str, optional) - The last index of the orders to return - + Default: `None` + + cursor (int, optional) - The last index of the orders to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of orders to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + sort: `expiration:desc` (str, optional) - The sort order of the orders to return (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -10355,9 +9066,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "8dc4eeecf23621df71dd29b1c01a8f257cfdf42ad3b9bb5568fadd0d95215e48", + "tx_hash": "187c30630aaa500f9c504f13946c0a19b669b695a69f2e4c437b08dc69a73e1a", "block_index": 179, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10373,7 +9084,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1739521157, + "block_time": 1740828727, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10402,9 +9113,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "a8e2a7e812d9bb85c0f3b2250f3d7afd66792901345fdf5ad99451d6ba6b5d27", + "tx_hash": "6db18ed5ccfe798fe90df575a303f04e5a7f7971596ecb643f9a9229b80644b4", "block_index": 202, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10420,7 +9131,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1739521293, + "block_time": 1740828870, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10449,9 +9160,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "cf8f674f4c51eda6ce04f694f40f91f5ec6547b54760cc9cf4265f4605b0a972", + "tx_hash": "a7cd369191f065c10ebe7453c34b8e450714f388bebb16660c94bd96f42875d3", "block_index": 188, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10467,7 +9178,7 @@ Returns the orders of an address "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1739521243, + "block_time": 1740828813, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10496,9 +9207,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "f2f969d5cce6ecbdb6374f9111e243be10f79397e765beefc459d6ea1c759a4d", + "tx_hash": "532f1c4e954b8db13f95a5fce9e503fb8d4076f472d897a96c51903f6657333e", "block_index": 211, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -10514,7 +9225,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1739521327, + "block_time": 1740828904, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10547,12 +9258,12 @@ Returns the orders of an address } ``` -### Get Fairminters By Address [GET /v2/addresses/{address}/fairminters{?status}{&cursor}{&limit}{&offset}{&verbose}] +### Get Fairminters By Address [GET /v2/addresses/{address}/fairminters{?status,cursor,limit,offset,verbose}] Returns the fairminter by its source + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The source of the fairminter to return + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -10560,12 +9271,12 @@ Returns the fairminter by its source + `open` + `closed` + `pending` - + cursor (str, optional) - - + Default: `None` + + cursor (int, optional) - + + Default: `null` + limit (int, optional) - + Default: `100` + offset (int, optional) - - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -10575,10 +9286,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "ee9ff7bd6492c811471736e68af58e6e97847a539c2ad3deafb59721643ac7d2", + "tx_hash": "1e6a99508c46d046f844185ddf82f559d1f25c90a2773f8a4548fa44e0111d60", "tx_index": 44, "block_index": 150, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "FREEFAIRMINT", "asset_parent": null, "asset_longname": null, @@ -10602,7 +9313,7 @@ Returns the fairminter by its source "earned_quantity": 180, "paid_quantity": 0, "commission": 0, - "block_time": 1739521122, + "block_time": 1740828691, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -10614,10 +9325,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "e32a58ae9e55219eb3447bf548dfbfccda8dd993914a3c4c4fbe8648a474ae0c", + "tx_hash": "0d3798dd429043894a1943cde731766034b1b473fb5f78206619e3f50ffb2c76", "tx_index": 43, "block_index": 147, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -10641,7 +9352,7 @@ Returns the fairminter by its source "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1739521110, + "block_time": 1740828681, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10650,10 +9361,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "9cbbdb50b44cca2353d9fcbf720979ac333e4048c63a8868bf94e6bfd1025214", + "tx_hash": "c4bf6f88f21c4e09ff36bd3931fe062060135247c0e672325f9222015f1548eb", "tx_index": 22, "block_index": 126, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "FAIRMINTD", "asset_parent": null, "asset_longname": null, @@ -10677,7 +9388,7 @@ Returns the fairminter by its source "earned_quantity": 40, "paid_quantity": 34, "commission": 0, - "block_time": 1739521034, + "block_time": 1740828604, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10689,10 +9400,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ea1d150be2882920ce209b030c3e5bf8a694fad170a904907168928665f83153", + "tx_hash": "4c19136003c06ec29d2125735b389aa5c04224c7b4308bb7f88c437cf04f580f", "tx_index": 18, "block_index": 122, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "FAIRMINTC", "asset_parent": null, "asset_longname": null, @@ -10716,7 +9427,7 @@ Returns the fairminter by its source "earned_quantity": 19, "paid_quantity": 5, "commission": 0, - "block_time": 1739521020, + "block_time": 1740828589, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10728,10 +9439,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "c272cdeb8b0426bc5a64d26ada4f4e0b82f36478b47d884a590d83740df40573", + "tx_hash": "5b9cb58fe95bf0280d7650efb2172bfe48e011ee6be0410b1acfa92f88fcce2a", "tx_index": 14, "block_index": 121, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "FAIRMINTB", "asset_parent": null, "asset_longname": null, @@ -10755,7 +9466,7 @@ Returns the fairminter by its source "earned_quantity": 300000000, "paid_quantity": 300000000, "commission": 0, - "block_time": 1739521017, + "block_time": 1740828585, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -10767,10 +9478,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "3679ad0490ee7d3462a61dc8571228c1a9d937da28174e3288ba73f8c720b704", + "tx_hash": "96f422babb3391a4d8783531bc451c28d9bda89cae2b3b8a77c143aa4b39577b", "tx_index": 10, "block_index": 116, - "source": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "source": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "asset": "FAIRMINTA", "asset_parent": null, "asset_longname": null, @@ -10794,7 +9505,7 @@ Returns the fairminter by its source "earned_quantity": 10000000000, "paid_quantity": 10000000000, "commission": 0, - "block_time": 1739520999, + "block_time": 1740828567, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -10811,18 +9522,18 @@ Returns the fairminter by its source } ``` -### Get Fairmints By Address [GET /v2/addresses/{address}/fairmints{?cursor}{&limit}{&offset}{&verbose}] +### Get Fairmints By Address [GET /v2/addresses/{address}/fairmints{?cursor,limit,offset,verbose}] Returns the mints by address + Parameters - + address: `bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw` (str, required) - The address of the mints to return - + cursor (str, optional) - - + Default: `None` + + address: `bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f` (str, required) - The address of the mints to return + + cursor (int, optional) - + + Default: `null` + limit (int, optional) - + Default: `100` + offset (int, optional) - - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -10832,192 +9543,192 @@ Returns the mints by address { "result": [ { - "tx_hash": "f2cecd566ff24401b5a86fac87bd47ff6ac36bb9dd8164bddb4d42968679780c", + "tx_hash": "6e1cf623ead0ccf36abeac915c35434bd03fe995df86465ec5f21ded9c8b5fd1", "tx_index": 46, "block_index": 150, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "fairminter_tx_hash": "ee9ff7bd6492c811471736e68af58e6e97847a539c2ad3deafb59721643ac7d2", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "fairminter_tx_hash": "1e6a99508c46d046f844185ddf82f559d1f25c90a2773f8a4548fa44e0111d60", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1739521122, + "block_time": 1740828691, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "866a9681996a487e692e8f87be9c70ef8e2efdf8b1daec30593555aa7c0d6ac9", + "tx_hash": "a244df97cb175a41548e57b4587aa5fc202906f9d2dc82a6cf5a8e7ad4ea0a46", "tx_index": 45, "block_index": 149, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "fairminter_tx_hash": "ee9ff7bd6492c811471736e68af58e6e97847a539c2ad3deafb59721643ac7d2", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "fairminter_tx_hash": "1e6a99508c46d046f844185ddf82f559d1f25c90a2773f8a4548fa44e0111d60", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1739521118, + "block_time": 1740828687, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "earn_quantity_normalized": "0.00000100", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "baa7dd94e4a6437e044c17774dd4ff5aa7eefc925dadda33d78508984d037652", + "tx_hash": "6f8886d0aca6022822c235ab1525e347eb7c117a378f2e7bcf980220afa7fa03", "tx_index": 23, "block_index": 127, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "fairminter_tx_hash": "9cbbdb50b44cca2353d9fcbf720979ac333e4048c63a8868bf94e6bfd1025214", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "fairminter_tx_hash": "c4bf6f88f21c4e09ff36bd3931fe062060135247c0e672325f9222015f1548eb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", - "block_time": 1739521037, + "block_time": 1740828608, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "earn_quantity_normalized": "0.00000040", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "04d30f7b12c77fc76ea64e20a53cb8bb5bcef2e3ec364c5af06a4f7c92e7e4d3", + "tx_hash": "1386eb320e5c2e3dab7f166bd72e5434236d4fa7009c150561c3575dee956462", "tx_index": 21, "block_index": 125, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "fairminter_tx_hash": "ea1d150be2882920ce209b030c3e5bf8a694fad170a904907168928665f83153", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "fairminter_tx_hash": "4c19136003c06ec29d2125735b389aa5c04224c7b4308bb7f88c437cf04f580f", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", - "block_time": 1739521030, + "block_time": 1740828600, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "earn_quantity_normalized": "0.00000011", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "df1cc73a3c84d63e1b3ef965ef7fe57b2cec51d106874668917897b32931e76b", + "tx_hash": "9f6f5c9fb7d25f8fa381963bd89a7d038cf25abb1a2790b831734c718d61ca4d", "tx_index": 20, "block_index": 124, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "fairminter_tx_hash": "ea1d150be2882920ce209b030c3e5bf8a694fad170a904907168928665f83153", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "fairminter_tx_hash": "4c19136003c06ec29d2125735b389aa5c04224c7b4308bb7f88c437cf04f580f", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1739521027, + "block_time": 1740828597, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "earn_quantity_normalized": "0.00000003", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "989153d219141fb0d19f4ccf409792cd417562ed958010562b0ab42753557143", + "tx_hash": "2e65ee73a18ae62ebf598be758f7509e0c3771c482832d8d9dde62298c9c13f0", "tx_index": 19, "block_index": 123, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "fairminter_tx_hash": "ea1d150be2882920ce209b030c3e5bf8a694fad170a904907168928665f83153", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "fairminter_tx_hash": "4c19136003c06ec29d2125735b389aa5c04224c7b4308bb7f88c437cf04f580f", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1739521024, + "block_time": 1740828593, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "earn_quantity_normalized": "0.00000005", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "b49ccfd6269a1da4c4de0d883622360e6720c67edad730b51515f9ad152006cd", + "tx_hash": "5ddaad17ebb94911508ed0326f21b44de493f312d2e3447fc12a7115bc239c5f", "tx_index": 15, "block_index": 118, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "fairminter_tx_hash": "c272cdeb8b0426bc5a64d26ada4f4e0b82f36478b47d884a590d83740df40573", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "fairminter_tx_hash": "5b9cb58fe95bf0280d7650efb2172bfe48e011ee6be0410b1acfa92f88fcce2a", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", - "block_time": 1739521006, + "block_time": 1740828574, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "earn_quantity_normalized": "1.00000000", "commission_normalized": "0.00000000", "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "65fef77f7c8a98e669cfb9e450d878d5a73d42374c313e895600207ffd38c308", + "tx_hash": "156a7b0ad1569cc81994bbc049ace240a7a1aaa40ee28e48bb6753c14b01d582", "tx_index": 11, "block_index": 114, - "source": "bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw", - "fairminter_tx_hash": "3679ad0490ee7d3462a61dc8571228c1a9d937da28174e3288ba73f8c720b704", + "source": "bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f", + "fairminter_tx_hash": "96f422babb3391a4d8783531bc451c28d9bda89cae2b3b8a77c143aa4b39577b", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", - "block_time": 1739520992, + "block_time": 1740828559, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h", + "issuer": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w", "divisible": true, "locked": false, - "owner": "bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h" + "owner": "bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w" }, "earn_quantity_normalized": "5.00000000", "commission_normalized": "0.00000000", @@ -11029,19 +9740,19 @@ Returns the mints by address } ``` -### Get Fairmints By Address And Asset [GET /v2/addresses/{address}/fairmints/{asset}{?cursor}{&limit}{&offset}{&verbose}] +### Get Fairmints By Address And Asset [GET /v2/addresses/{address}/fairmints/{asset}{?cursor,limit,offset,verbose}] Returns the mints by address and asset + Parameters - + address: `bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw` (str, required) - The address of the mints to return + + address: `bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f` (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` + + cursor (int, optional) - + + Default: `null` + limit (int, optional) - + Default: `100` + offset (int, optional) - - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -11057,18 +9768,18 @@ Returns the mints by address and asset ## Group Utxos -### Get Utxo Balances [GET /v2/utxos/{utxo}/balances{?cursor}{&limit}{&offset}{&verbose}] +### Get Utxo Balances [GET /v2/utxos/{utxo}/balances{?cursor,limit,offset,verbose}] Returns the balances of an utxo + Parameters - + utxo: `518232b64dcf0f46c961ac36027691fa2bbdef99f3e0a940bbede8fb8b823653:0` (str, required) - The utxo to return - + cursor (str, optional) - The last index of the balances to return - + Default: `None` + + utxo: `eb17b880eb3b25a51a2e0761baeb6e4cc2349590065186a6101eea0e2f2323e7:0` (str, required) - The utxo to return + + cursor (int, optional) - The last index of the balances to return + + Default: `null` + limit: `5` (int, optional) - The maximum number of balances to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -11081,15 +9792,15 @@ Returns the balances of an utxo "asset": "UTXOASSET", "asset_longname": null, "quantity": 1000000000, - "utxo": "518232b64dcf0f46c961ac36027691fa2bbdef99f3e0a940bbede8fb8b823653:0", - "utxo_address": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q", + "utxo": "eb17b880eb3b25a51a2e0761baeb6e4cc2349590065186a6101eea0e2f2323e7:0", + "utxo_address": "bcrt1qjs0rju8h4cyel9gr9vefq8xgkq3qrh3r5gywm2", "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q", + "issuer": "bcrt1qjs0rju8h4cyel9gr9vefq8xgkq3qrh3r5gywm2", "divisible": true, "locked": false, - "owner": "bcrt1quzz7j0cemdrsd88zzm0zzpcs40ck02699d7k0q" + "owner": "bcrt1qjs0rju8h4cyel9gr9vefq8xgkq3qrh3r5gywm2" }, "quantity_normalized": "10.00000000" } @@ -11099,7 +9810,7 @@ Returns the balances of an utxo } ``` -### Utxos With Balances [GET /v2/utxos/withbalances{?utxos}{&verbose}] +### Utxos With Balances [GET /v2/utxos/withbalances{?utxos,verbose}] Check if the utxos have balances @@ -11151,13 +9862,13 @@ The following parameters are deprecated in the new composer and will no longer b - `p2sh_pretx_txid`: Ignored, P2SH disabled - `segwit`: Ignored, Segwit automatically detected -### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&validate}{&sat_per_vbyte}{&confirmation_target}{&exact_fee}{&max_fee}{&inputs_set}{&allow_unconfirmed_inputs}{&exclude_utxos}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&disable_utxo_locks}{&use_all_inputs_set}{&mutlisig_pubkey}{&change_address}{&more_outputs}{&pubkeys}{&verbose}{&return_only_data}{&fee_per_kb}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&return_psbt}{®ular_dust_size}{&multisig_dust_size}{&extended_tx_info}{&old_style_api}{&p2sh_pretx_txid}{&segwit}{&verbose}] +### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address,bet_type,deadline,wager_quantity,counterwager_quantity,expiration,leverage,target_value,encoding,validate,sat_per_vbyte,confirmation_target,exact_fee,max_fee,inputs_set,allow_unconfirmed_inputs,exclude_utxos,use_utxos_with_balances,exclude_utxos_with_balances,disable_utxo_locks,use_all_inputs_set,mutlisig_pubkey,change_address,more_outputs,pubkeys,verbose,return_only_data,fee_per_kb,fee_provided,unspent_tx_hash,dust_return_pubkey,return_psbt,regular_dust_size,multisig_dust_size,extended_tx_info,old_style_api,p2sh_pretx_txid,segwit,verbose}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q0492wkqxjwan4p2f44zkn4m6azcpajypfphh2h` (str, required) - The address that will make the bet - + feed_address: `bcrt1q8045w7qnkjcu8730uhyx0v3dn5f4t5ymxfmtfw` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q420sjm8vfll2e8hfeje5ga4xedc7e5qnawe56w` (str, required) - The address that will make the bet + + feed_address: `bcrt1q49fda5h0jxa0tzl0n56nvs94l5yayz04tfjc5f` (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) @@ -11166,45 +9877,45 @@ Composes a transaction to issue a bet against a feed. + leverage (int, optional) - Leverage, as a fraction of 5040 + Default: `5040` + target_value: `1000` (int, optional) - Target value for Equal/NotEqual bet - + Default: `None` + + Default: `null` + encoding (str, optional) - The encoding method to use + Default: `auto` + validate (bool, optional) - Validate the transaction + Default: `True` + sat_per_vbyte (float, optional) - The fee per vbyte in satoshis - + Default: `None` + + Default: `null` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` + exact_fee: `0` (int, optional) - The exact fee to use in satoshis - + Default: `None` + + Default: `null` + max_fee (int, optional) - The maximum fee to use in satoshis - + Default: `None` - + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created. To speed up the composition you can also use the following format for utxos: `:::`. - + Default: `None` + + Default: `null` + + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created. To speed up the composition you can also use the following format for utxos: `:::`. + + Default: `null` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs - + Default: `False` + + Default: `null` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `None` + + Default: `null` + use_utxos_with_balances (bool, optional) - Use UTXO with balances - + Default: `False` - + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception. Important: the `exclude_utxos_with_balances` will not exclude unconfirmed `attach` and `utxomove`. You need to explicitly exclude them with the `exclude_utxos` parameter - + Default: `False` - + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs - + Default: `False` - + use_all_inputs_set (bool, optional) - Use all UTXOs provide with `inputs_set` parameter - + Default: `False` + + Default: `null` + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception. Important: the `exclude-utxos-with-balances` will not exclude unconfirmed `attach` and `utxomove`. You need to explicitly exclude them with the `exclude-utxos` parameter + + Default: `null` + + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create- calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs + + Default: `null` + + use_all_inputs_set (bool, optional) - Use all UTXOs provide with `inputs-set` parameter + + Default: `null` + mutlisig_pubkey (str, optional) - The reedem public key to use for multisig encoding, by default it is searched for the source address - + Default: `None` + + Default: `null` + change_address (str, optional) - The address to send the change to - + Default: `None` + + Default: `null` + more_outputs (str, optional) - Additional outputs to include in the transaction in the format `:
` or `: