# Arbitrum

### /getbalance

Get the balance or number of the given token in the requested public address.

<mark style="color:blue;">`GET`</mark> `https://api.expand.network/chain/getbalance`

#### Query Parameters

<table><thead><tr><th width="169">Name</th><th width="101">Type</th><th>Description</th></tr></thead><tbody><tr><td>rpc</td><td>String</td><td>Remote procedural call URL</td></tr><tr><td>chainId<mark style="color:red;">*</mark></td><td>String</td><td>Refer to the <a href="../../../ids/chain-ids">Chain ID </a>page for details. </td></tr><tr><td>chainSymbol</td><td>String</td><td>Refer to the <a href="../../../ids/chain-ids">Chain ID </a>page for details.</td></tr><tr><td>blockNumber</td><td>String</td><td><p>Block number for which the balance needs to be retrieved.</p><p>By default, it will pick the latest block number when not specified.</p></td></tr><tr><td>address<mark style="color:red;">*</mark></td><td>String</td><td>The public address to get the balance of.</td></tr><tr><td>tokenAddress</td><td>String</td><td>The address of token to get the balance of.</td></tr><tr><td>timestamp</td><td>String</td><td>The timestamp of the block number.<br><strong>Note</strong>- When both a timestamp and a block number are provided, the timestamp will take precedence.</td></tr></tbody></table>

{% tabs %}
{% tab title="Sample Request" %}

```url
https://api.expand.network/chain/getbalance?chainId=42161&blockNumber=218277470&address=0xCaf67E620a5a5306C31B620D6b1f51c2883131b2&tokenAddress=0xE2035f04040A135c4dA2f96AcA742143c57c79F9
```

{% endtab %}

{% tab title="Sample Response" %}

```json
{
    "status": 200,
    "msg": "success",
    "data": {
        "balance": "4000000000000000000"
    }
}
```

{% endtab %}
{% endtabs %}

### /getblock

Get details of a block.

<mark style="color:blue;">`GET`</mark> `https://historicallp.api.expand.network/chain/getblock`

#### Query Parameters

| Name                                      | Type   | Description                                                                                                                       |
| ----------------------------------------- | ------ | --------------------------------------------------------------------------------------------------------------------------------- |
| rpc                                       | String | Remote procedural call URL.                                                                                                       |
| chainId<mark style="color:red;">\*</mark> | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details.                                              |
| chainSymbol                               | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details.                                              |
| blockNumber                               | String | The block number or block hash.                                                                                                   |
| startBlock                                | String | Starting block of the range. Note: Maximum supported range is 10, meaning the startBlock is determined by endBlock - 9.           |
| endBlock                                  | String | <p>Last block of the range. </p><p>Note: Maximum supported range is 10, meaning the endBlock is determined by startBlock + 9.</p> |

{% tabs %}
{% tab title="Sample Request" %}

```url
https://historicallp.api.expand.network/chain/getblock?chainId=42161
```

{% endtab %}

{% tab title="Sample Response" %}

```json
{
  "status": 200,
  "msg": "success",
  "data": {
    "blocks": [
      {
        "baseFeePerGas": 24675000,
        "difficulty": "1",
        "extraData": "0xbeb80ea936eff318a9f6419979346e8840c403953a03c47c0c716cd3d4a386cd",
        "gasLimit": 1125899906842624,
        "gasUsed": 630424,
        "hash": "0x9a427ab93ffda8158a8ee33edc80f51f8f7023a277b698a7c24838e477a1c2de",
        "l1BlockNumber": "0xc1b210",
        "logsBloom": "0x00000000000004000000000000000000000000000000400000400000004000440400000400000000008000008000000000004000040000000020000000200010000000010000000400000008400010000000000000000000000000000000800000000000020000000001000400000800000000080000000000080010000060000000000020000000010000000000000008000000000000000000000001000000020000000000000200000000000000000000000102000100800000000000400000000002220000000000200020000000000200040000000000004000000020000010000000020008000090000400000010000000040000008000008002400800",
        "miner": "0xA4b000000000000000000073657175656e636572",
        "mixHash": "0x000000000001d00b00000000012f7ed000000000000000140000000000000000",
        "nonce": "0x0000000000172a4d",
        "number": 212196228,
        "parentHash": "0x52ecf9eef1cb336736b2d8a9eff63ca01f9346772593d62f7e695913b4418592",
        "receiptsRoot": "0x6207f418b4659320b47e7119e3dd00fad94b8faaa236d276efb12e97ab338e8e",
        "sendCount": "0x1d00b",
        "sendRoot": "0xbeb80ea936eff318a9f6419979346e8840c403953a03c47c0c716cd3d4a386cd",
        "size": 2460,
        "timestamp": 1715951104,
        "totalDifficulty": "189988412",
        "transactions": [
          {
            "chainId": "42161",
            "hash": "0x54705762724d33219341874649d2284f2c134dbf42bc4c1efd02c242c9f09997",
            "transactionStatus": true,
            "blockNumber": "212196228",
            "timestamp": null,
            "from": "0x00000000000000000000000000000000000A4B05",
            "to": "0x00000000000000000000000000000000000A4B05",
            "value": "0",
            "transactionFees": "0",
            "gas": "0",
            "gasPrice": "0",
            "input": "0x6bf6a42d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012f7ed0000000000000000000000000000000000000000000000000000000000ca5db840000000000000000000000000000000000000000000000000000000000000001",
            "nonce": 0,
            "type": 106,
            "network": null,
            "v": "0x0",
            "r": "0x0",
            "s": "0x0",
            "yParity": null,
            "transactionIndex": null,
            "accessList": null,
            "maxFeePerGas": null,
            "maxPriorityFeePerGas": null,
            "logs": []
          }
        ],
        "uncles": []
      }
    ]
  }
}
```

{% endtab %}
{% endtabs %}

### /getgasprice

Get the current gas price from the network.

<mark style="color:blue;">`GET`</mark> `https://api.expand.network/chain/getgasprice`

#### Query Parameters

| Name                                      | Type   | Description                                                                          |
| ----------------------------------------- | ------ | ------------------------------------------------------------------------------------ |
| rpc                                       | String | Remote procedural call URL.                                                          |
| chainId<mark style="color:red;">\*</mark> | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details. |
| chainSymbol                               | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details. |

{% tabs %}
{% tab title="Sample Request" %}

```url
https://api.expand.network/chain/getgasprice?chainId=42161
```

{% endtab %}

{% tab title="Sample Response" %}

```json
{
    "status": 200,
    "msg": "success",
    "data": {
        "gasPrice": "100000000"
    }
}
```

{% endtab %}
{% endtabs %}

### /getstorage

Get data stored in the given slot.

<mark style="color:blue;">`GET`</mark> `https://api.expand.network/chain/getstorage`

#### Query Parameters

| Name                                      | Type   | Description                                                                          |
| ----------------------------------------- | ------ | ------------------------------------------------------------------------------------ |
| rpc                                       | String | Remote procedural call URL.                                                          |
| chainId<mark style="color:red;">\*</mark> | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details. |
| chainSymbol                               | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details. |
| address<mark style="color:red;">\*</mark> | String | Contract address whose storage is needed.                                            |
| index                                     | String | Slot index on the smart contract. By default,  it is taken as 0.                     |

{% tabs %}
{% tab title="Sample Request" %}

```url
https://api.expand.network/chain/getstorage?chainId=42161&address=0x825d6bc6e67C255c2a053bbd7c6100eEc4025656
```

{% endtab %}

{% tab title="Sample Response" %}

```json
{
    "status": 200,
    "msg": "success",
    "data": {
        "data": "0x0000000000000000000000000547f5965b015d8f6c92e6bcda6ca040567fd238"
    }
}
```

{% endtab %}
{% endtabs %}

### /gettransaction

Get details of a transaction.

<mark style="color:blue;">`GET`</mark> `https://api.expand.network/chain/gettransaction`

#### Query Parameters

| Name                                              | Type   | Description                                                                          |
| ------------------------------------------------- | ------ | ------------------------------------------------------------------------------------ |
| rpc                                               | String | Remote procedural call URL.                                                          |
| chainId<mark style="color:red;">\*</mark>         | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details. |
| chainSymbol                                       | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details. |
| transactionHash<mark style="color:red;">\*</mark> | String | The transaction hash.                                                                |

{% tabs %}
{% tab title="Sample Request" %}

```url
https://api.expand.network/chain/gettransaction?chainId=42161&transactionHash=0x28c980e3d75a98d29269bdf88d6e375d1657e96c3a1412e5347aa84f03542896
```

{% endtab %}

{% tab title="Sample Response" %}

```json
{
  "status": 200,
  "msg": "success",
  "data": {
    "chainId": "42161",
    "hash": "0x28c980e3d75a98d29269bdf88d6e375d1657e96c3a1412e5347aa84f03542896",
    "transactionStatus": true,
    "blockNumber": "56842886",
    "timestamp": null,
    "from": "0x0547F5965B015D8F6C92E6BCDA6Ca040567Fd238",
    "to": "0x825d6bc6e67C255c2a053bbd7c6100eEc4025656",
    "value": "0",
    "transactionFees": "30549500000000",
    "gas": "577321",
    "gasPrice": "100000000",
    "input": "0x52f7c98800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
    "nonce": 5,
    "type": 2,
    "network": null,
    "v": "0x1",
    "r": "0x55e760ace11a7e71f292313fe02122b2dd5ab46213f4bf27c50296007566466f",
    "s": "0x55c8490098c17e523011ced8605dd5f387bf8db5d47cff67e229022007d0d3e5",
    "yParity": "0x1",
    "transactionIndex": 1,
    "accessList": [],
    "maxFeePerGas": "100000000",
    "maxPriorityFeePerGas": "100000000",
    "logs": []
  }
}
```

{% endtab %}
{% endtabs %}

### /portfolio

Get detailed information about the verified assets or tokens currently associated with a user's wallet address.

<mark style="color:blue;">`GET`</mark> `https://api.expand.network/chain/portfolio`

#### Query Parameters

<table><thead><tr><th width="167">Name</th><th width="112">Type</th><th>Description</th></tr></thead><tbody><tr><td>rpc</td><td>String</td><td>Remote procedural call URL.</td></tr><tr><td>chainId</td><td>String</td><td>Refer to the <a href="../../../ids/chain-ids">Chain ID </a>page for details.</td></tr><tr><td>chainSymbol</td><td>String</td><td>Refer to the <a href="../../../ids/chain-ids">Chain ID </a>page for details.</td></tr><tr><td>address<mark style="color:red;">*</mark></td><td>String</td><td>Public addess of the user.</td></tr><tr><td>tokens</td><td>String</td><td>Comma-separated value of ERC-20 tokens to get value of. Maximum 10 at a time.</td></tr><tr><td>pageToken</td><td>String</td><td>Present at the end of a lengthy response to fetch the next page.</td></tr><tr><td>assetType</td><td>String</td><td><code>fungible</code>/<code>nonFungible</code> standard choice.  <br>By default, <code>all</code>.</td></tr><tr><td>timestamp</td><td>String</td><td>The Timestamp of the block number up to which the balances will be fetched.<br>Note-Only applicable for assetType <code>fungible</code></td></tr><tr><td>blockNumber</td><td>String</td><td>The block number up to which the balances will be fetched.<br>Note-Only applicable for assetType <code>fungible</code></td></tr><tr><td>include24hrChange</td><td>Boolean</td><td>If <code>true</code>return the token data with 24-hour changes.<br>By default, <code>false</code></td></tr></tbody></table>

{% tabs %}
{% tab title="Sample Request" %}

```url
https://api.expand.network/chain/portfolio?chainId=42161&address=0x299d68A01B4c9C550c0CCDCa8EE3C616d319214E&availableOnly=true
```

{% endtab %}

{% tab title="Sample Response" %}

```json
{
    "status": 200,
    "msg": "success",
    "data": {
        "native": "728003934801000",
        "evmTokens": [
            {
                "name": "Global Token",
                "symbol": "GBL",
                "decimals": "18",
                "address": "0xc14a7747cfec02cfea62e72bb93538de6b2078e6",
                "balance": "39515873923087022849",
                "assetType": "ERC20",
                "USDPrice": "7.912071535453639"
            },
            {
                "name": "Tether USD",
                "symbol": "USDT",
                "decimals": "6",
                "address": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9",
                "balance": "23432910",
                "assetType": "ERC20",
                "USDPrice": "1.0000000000000002"
            }
        ]
    }
}
```

{% endtab %}
{% endtabs %}

### **/getusertransactions**

Get the historical transaction details for a specific user address.&#x20;

<mark style="color:blue;">`GET`</mark> `https://historicallp.api.expand.network/chain/getusertransactions`

#### Query Parameters

<table><thead><tr><th width="175">Name</th><th width="109">Type</th><th>Description</th></tr></thead><tbody><tr><td>rpc</td><td>String</td><td>Remote procedural call URL.</td></tr><tr><td>chainId</td><td>String</td><td>Refer to the <a href="../../../ids/chain-ids">Chain ID </a>page for details.</td></tr><tr><td>chainSymbol</td><td>String</td><td>Refer to the <a href="../../../ids/chain-ids">Chain ID </a>page for details. </td></tr><tr><td>address<mark style="color:red;">*</mark></td><td>String</td><td>The public address of the user.</td></tr><tr><td>pageToken</td><td>String</td><td>The page cursor present at the top to fetch the next page.</td></tr><tr><td>pageSize</td><td>String</td><td>The page size. <br>By Default 30 and Max 100</td></tr><tr><td>sortOrder</td><td>String</td><td>The transaction sorting order. <br>asc or desc. <br>By default, desc.</td></tr><tr><td>startBlock</td><td>String</td><td>The starting block number from which to get the transactions.<br>By default, the Genesis block</td></tr><tr><td>endBlock</td><td>String</td><td>The ending block number from which to get the transactions<br>By default, the current block</td></tr><tr><td>fromTimestamp</td><td>String</td><td>The start date from which to get the transactions ( format in seconds or date string )<br>Note-If 'fromTimestamp' and 'startBlock' are provided, 'startBlock' will be used.<br>By default, the Genesis block timestamp</td></tr><tr><td>toTimestamp</td><td>String</td><td><p>The end date from which to get the transactions ( format in seconds or date string )<br>Note- If 'toTimestamp' and 'endBlock' are provided, 'endBlock' will be used.</p><p>By default, the current block timestamp</p></td></tr></tbody></table>

{% tabs %}
{% tab title="Sample Request" %}

```url
https://historicallp.api.expand.network/chain/getusertransactions?sortOrder=asc&chainId=42161&address=0x131F001aF400D5f212e1894846469FBa70f8bCc9
```

{% endtab %}

{% tab title="Sample Response" %}

```json
{
    "status": 200,
    "msg": "success",
    "data": {
        "nextPageToken": null,
        "pageSize": "30",
        "transactions": [
            {
                "hash": "0x735fcad3d47d06e0c474c7288eeaf684afcf8dcd282a52f8c2cd6c90f7928ca7",
                "nonce": "3",
                "transaction_index": "5",
                "from_address_entity": null,
                "from_address_entity_logo": null,
                "from_address": "0x05fb32c26103f6b58343a58009f2424c388c17e0",
                "from_address_label": null,
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "20000000000000000",
                "gas": "30158",
                "gas_price": "10000000",
                "receipt_cumulative_gas_used": "1306346",
                "receipt_gas_used": "27475",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-05-13T06:08:25.000Z",
                "block_number": "210745409",
                "block_hash": "0xfd0118af355c419cfb13b6c4be0e49dd5fda1cab7c6ccdc9f1907c852165b3df",
                "transaction_fee": "0.00000027475",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": null,
                        "from_address_entity_logo": null,
                        "from_address": "0x05fb32c26103f6b58343a58009f2424c388c17e0",
                        "from_address_label": null,
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "20000000000000000",
                        "value_formatted": "0.02",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 0.02 ETH from 0x05...17e0",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0x56082f7c0595dbfe71f59b32c890dcca6e2da61039c168fc030456268304268e",
                "nonce": "0",
                "transaction_index": "2",
                "from_address_entity": null,
                "from_address_entity_logo": null,
                "from_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "from_address_label": null,
                "to_address_entity": "Bithumb",
                "to_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "to_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "to_address_label": "Bithumb: Hot Wallet",
                "value": "10000000000000000",
                "gas": "1500000",
                "gas_price": "1000000000",
                "receipt_cumulative_gas_used": "186986",
                "receipt_gas_used": "27137",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-05-13T06:17:03.000Z",
                "block_number": "210747456",
                "block_hash": "0xd5840449d624ca8a00bf7acd2cad14b807552471525f0f1b1a4e1ab20ed9496f",
                "transaction_fee": "0.00000027137",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": null,
                        "from_address_entity_logo": null,
                        "from_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "from_address_label": null,
                        "to_address_entity": "Bithumb",
                        "to_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "to_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "to_address_label": "Bithumb: Hot Wallet",
                        "value": "10000000000000000",
                        "value_formatted": "0.01",
                        "direction": "send",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Sent 0.01 ETH to 0x20...4d01",
                "possible_spam": false,
                "category": "send",
                "internal_transactions": []
            },
            {
                "hash": "0x3daf38a4673ce0e017baeb5859b5b02a11e89492fdf21fed496dd3bbdff21c5c",
                "nonce": "4",
                "transaction_index": "4",
                "from_address_entity": null,
                "from_address_entity_logo": null,
                "from_address": "0x05fb32c26103f6b58343a58009f2424c388c17e0",
                "from_address_label": null,
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "26000087142970714179760",
                "gas": "34639",
                "gas_price": "10000000",
                "receipt_cumulative_gas_used": "1094495",
                "receipt_gas_used": "30693",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-05-13T06:31:04.000Z",
                "block_number": "210750790",
                "block_hash": "0xfd01554a759da3c16c6dfe1d1270138beadd19002aba1d575a4edf815094f88e",
                "transaction_fee": "0.00000030693",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": null,
                        "from_address_entity_logo": null,
                        "from_address": "0x05fb32c26103f6b58343a58009f2424c388c17e0",
                        "from_address_label": null,
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "26000087142970714179760",
                        "value_formatted": "26000.08714297071",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 26,000.08 ETH from 0x05...17e0",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0xec2d04223714dcba5da2a5d01d49a7226a267cbe29a8d74671e99d8414f4afd6",
                "nonce": "5389",
                "transaction_index": "5",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "1000000000000000",
                "gas": "2500000",
                "gas_price": "20000000",
                "receipt_cumulative_gas_used": "541719",
                "receipt_gas_used": "26596",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-05-17T05:26:09.000Z",
                "block_number": "212088712",
                "block_hash": "0x9444c09b18959ba7616c550f0593b3f093f5c1d7399b15981933923a6fb94502",
                "transaction_fee": "0.00000026596",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "1000000000000000",
                        "value_formatted": "0.001",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 0.001 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0x0d290191678e4b57856c7319ce0d8e60d196a65f9220b2086c80f754041e2d73",
                "nonce": "72",
                "transaction_index": "1",
                "from_address_entity": null,
                "from_address_entity_logo": null,
                "from_address": "0xe1830af1f4eff935d62db1b8b98fc2b77738a154",
                "from_address_label": null,
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x2c08425305363f4cf8c6809d4478559328aa4ff2",
                "to_address_label": null,
                "value": "0",
                "gas": "599998",
                "gas_price": "13000000",
                "receipt_cumulative_gas_used": "246417",
                "receipt_gas_used": "246417",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-05-28T17:30:12.000Z",
                "block_number": "215975396",
                "block_hash": "0x9b4f327683fb3c08b75769669faf3b66260bd7b6936b64c90068c947900c63a9",
                "transaction_fee": "0.00000246417",
                "method_label": "safeTransferFrom",
                "nft_transfers": [
                    {
                        "log_index": 0,
                        "value": "0",
                        "contract_type": "ERC1155",
                        "transaction_type": "Single",
                        "token_address": "0x2c08425305363f4cf8c6809d4478559328aa4ff2",
                        "token_id": "127",
                        "from_address_entity": null,
                        "from_address_entity_logo": null,
                        "from_address": "0xe1830af1f4eff935d62db1b8b98fc2b77738a154",
                        "from_address_label": null,
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "amount": "32",
                        "operator": "0xe1830af1f4eff935d62db1b8b98fc2b77738a154",
                        "possible_spam": false,
                        "verified_collection": false,
                        "direction": "receive",
                        "collection_logo": null,
                        "collection_banner_image": null,
                        "normalized_metadata": {
                            "name": "UXLINK TRUST NFT ARB",
                            "description": "Each TRUST NFT will get 750 $UXLINK token airdrop, buy more get more.\n",
                            "animation_url": null,
                            "external_link": null,
                            "image": "https://static.coinall.ltd/cdn/nft/60c2f3e7-a5cc-4bc6-95c9-169d7e97c494.png",
                            "attributes": [
                                {
                                    "trait_type": "length",
                                    "value": null,
                                    "display_type": null,
                                    "max_value": null,
                                    "trait_count": 0,
                                    "order": null,
                                    "rarity_label": null,
                                    "count": null,
                                    "percentage": null
                                }
                            ]
                        }
                    }
                ],
                "erc20_transfers": [],
                "native_transfers": [],
                "summary": "Received 1 NFT from 0xe1...a154",
                "possible_spam": false,
                "category": "nft receive",
                "internal_transactions": []
            },
            {
                "hash": "0x1e94adc9e33ce35b2d097fdca74686b7c0bcbae53ee61cf691965e1b9ef64127",
                "nonce": "92",
                "transaction_index": "2",
                "from_address_entity": null,
                "from_address_entity_logo": null,
                "from_address": "0xe1830af1f4eff935d62db1b8b98fc2b77738a154",
                "from_address_label": null,
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x2c08425305363f4cf8c6809d4478559328aa4ff2",
                "to_address_label": null,
                "value": "0",
                "gas": "451212",
                "gas_price": "13000000",
                "receipt_cumulative_gas_used": "497618",
                "receipt_gas_used": "186118",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-05-28T17:38:12.000Z",
                "block_number": "215977319",
                "block_hash": "0x0b829d36442abbb1ec377b8f1a86c30f1026d5768d6f2be81b8dacc609d76776",
                "transaction_fee": "0.00000186118",
                "method_label": "safeTransferFrom",
                "nft_transfers": [
                    {
                        "log_index": 2,
                        "value": "0",
                        "contract_type": "ERC1155",
                        "transaction_type": "Single",
                        "token_address": "0x2c08425305363f4cf8c6809d4478559328aa4ff2",
                        "token_id": "127",
                        "from_address_entity": null,
                        "from_address_entity_logo": null,
                        "from_address": "0xe1830af1f4eff935d62db1b8b98fc2b77738a154",
                        "from_address_label": null,
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "amount": "25",
                        "operator": "0xe1830af1f4eff935d62db1b8b98fc2b77738a154",
                        "possible_spam": false,
                        "verified_collection": false,
                        "direction": "receive",
                        "collection_logo": null,
                        "collection_banner_image": null,
                        "normalized_metadata": {
                            "name": "UXLINK TRUST NFT ARB",
                            "description": "Each TRUST NFT will get 750 $UXLINK token airdrop, buy more get more.\n",
                            "animation_url": null,
                            "external_link": null,
                            "image": "https://static.coinall.ltd/cdn/nft/60c2f3e7-a5cc-4bc6-95c9-169d7e97c494.png",
                            "attributes": [
                                {
                                    "trait_type": "length",
                                    "value": null,
                                    "display_type": null,
                                    "max_value": null,
                                    "trait_count": 0,
                                    "order": null,
                                    "rarity_label": null,
                                    "count": null,
                                    "percentage": null
                                }
                            ]
                        }
                    }
                ],
                "erc20_transfers": [],
                "native_transfers": [],
                "summary": "Received 1 NFT from 0xe1...a154",
                "possible_spam": false,
                "category": "nft receive",
                "internal_transactions": []
            },
            {
                "hash": "0x899d631580b6188fbd98370dc19ab1fb6f1121dfdbed5267cd7df3674b6db216",
                "nonce": "6633",
                "transaction_index": "6",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "1000000000000000",
                "gas": "2500000",
                "gas_price": "24118419000",
                "receipt_cumulative_gas_used": "832318",
                "receipt_gas_used": "21037",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-06-20T12:05:08.000Z",
                "block_number": "223831231",
                "block_hash": "0x8cb2b9922fda69f6eae6ea537b9c54245ee08b42db738cabca53a4ef8f2211aa",
                "transaction_fee": "0.000507168810503",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "1000000000000000",
                        "value_formatted": "0.001",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 0.001 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0x79c58a7321d98d4d96f5bc7838ca71f18714beba0a7fa9b2cde52cd8da71edda",
                "nonce": "6649",
                "transaction_index": "10",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "1000000000000000",
                "gas": "2500000",
                "gas_price": "7910985000",
                "receipt_cumulative_gas_used": "391283",
                "receipt_gas_used": "21095",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-06-20T12:44:16.000Z",
                "block_number": "223840740",
                "block_hash": "0xf2dc4f72fbe46d6061e0105bf1b16db4534ebb1b3203439e1fb49bb28e1a189f",
                "transaction_fee": "0.000166671278575",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "1000000000000000",
                        "value_formatted": "0.001",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 0.001 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0xba89ec853e835475f3ec6bd67da648cc0c6206c3a2f638f0b2ad938f548a9510",
                "nonce": "6650",
                "transaction_index": "14",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "1000000000000000",
                "gas": "2500000",
                "gas_price": "5949845000",
                "receipt_cumulative_gas_used": "1221058",
                "receipt_gas_used": "21071",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-06-20T12:52:14.000Z",
                "block_number": "223842678",
                "block_hash": "0x1e4b75837059b65cb091107d8c7debea441d22a5325c63b5bfc4d2639175bc77",
                "transaction_fee": "0.000125158473995",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "1000000000000000",
                        "value_formatted": "0.001",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 0.001 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0x672ea88e4b2e5ce476778b097e4968fe7e37a27d0112914f4a1c5a29e2be5672",
                "nonce": "6652",
                "transaction_index": "16",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "1000000000000000",
                "gas": "2500000",
                "gas_price": "4941670000",
                "receipt_cumulative_gas_used": "1010102",
                "receipt_gas_used": "21088",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-06-20T13:14:09.000Z",
                "block_number": "223847997",
                "block_hash": "0x7b63343af747a28bdd2ba79fd33c4992552dbea6ceeaa22581957afd95e67bd8",
                "transaction_fee": "0.00010399905696",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "1000000000000000",
                        "value_formatted": "0.001",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 0.001 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0xf1beb1444eef80fb1b60931ade543e2c15e5f275ba03b14e19a5ce9ff2b887ef",
                "nonce": "6669",
                "transaction_index": "4",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "1000000000000000",
                "gas": "2500000",
                "gas_price": "20000000",
                "receipt_cumulative_gas_used": "277670",
                "receipt_gas_used": "21000",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-06-20T20:04:09.000Z",
                "block_number": "223947116",
                "block_hash": "0x250f3c5843d05752fe9f0ec1769acb6e02bd200445ece45a821622b001469084",
                "transaction_fee": "0.00000021",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "1000000000000000",
                        "value_formatted": "0.001",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 0.001 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0xb9f8d28c532f45f95670f0f812df7c1c6e2a2865c06053f799862783637fc39a",
                "nonce": "6956",
                "transaction_index": "2",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "2000000000000000000000",
                "gas": "2500000",
                "gas_price": "20000000",
                "receipt_cumulative_gas_used": "148642",
                "receipt_gas_used": "31216",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-06-30T10:54:09.000Z",
                "block_number": "227268768",
                "block_hash": "0x846c39aa455a466757ca0d315486fe23ab7fcb4d28c0ee2279459aac1f5a705e",
                "transaction_fee": "0.00000031216",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "2000000000000000000000",
                        "value_formatted": "2000",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 2,000 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0x553a8e50a32a7c6427d5937e8d3ccd77cc3c773bf1f4e0c5c7f721d44d23bd95",
                "nonce": "7093",
                "transaction_index": "5",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "1000000000000000",
                "gas": "2500000",
                "gas_price": "118611000",
                "receipt_cumulative_gas_used": "874985",
                "receipt_gas_used": "56778",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-07-05T05:25:08.000Z",
                "block_number": "228912991",
                "block_hash": "0xde652d888a9373cf6f39f02e7fe6c756ac8c02913f6d7ae61235e56e07b49fab",
                "transaction_fee": "0.000001056695358",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "1000000000000000",
                        "value_formatted": "0.001",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 0.001 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0x9d8e05f0cb1342783d746513759da3e0cb0950f993b8d3ac482d57869c8d3ae5",
                "nonce": "7867",
                "transaction_index": "1",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "3000000000000000000000",
                "gas": "2500000",
                "gas_price": "110000000",
                "receipt_cumulative_gas_used": "33591",
                "receipt_gas_used": "33591",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-07-31T06:49:12.000Z",
                "block_number": "237886130",
                "block_hash": "0x736215ee59399f7af86b7de7ca91970ab9fdbc90f8a4be74925386758bffbb09",
                "transaction_fee": "0.00000033591",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "3000000000000000000000",
                        "value_formatted": "3000",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 3,000 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0xd0af14a0c0315a3687a09f3fdc6bee736626aac5e7c9753d60e0da27b32017cf",
                "nonce": "7970",
                "transaction_index": "3",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "1000000000000000",
                "gas": "2500000",
                "gas_price": "644441000",
                "receipt_cumulative_gas_used": "166719",
                "receipt_gas_used": "25994",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-08-04T18:11:10.000Z",
                "block_number": "239426217",
                "block_hash": "0x647e3926548fe7dc5e4fdc88b875fa48cf275755a21c2f4615756d8239771789",
                "transaction_fee": "0.000014152199354",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "1000000000000000",
                        "value_formatted": "0.001",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 0.001 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0xdb3cba09aa7aeab6f07f9f254c32ce3888c5ee3e8504a0763c13f29bd37bbd93",
                "nonce": "7976",
                "transaction_index": "2",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "1000000000000000",
                "gas": "2500000",
                "gas_price": "1255221000",
                "receipt_cumulative_gas_used": "147643",
                "receipt_gas_used": "33987",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-08-05T01:59:08.000Z",
                "block_number": "239537797",
                "block_hash": "0x460796b3062f43e44098ad05b3ed6c37fc4589ec04a8f5a10e2e9fc05be206cf",
                "transaction_fee": "0.000039262496127",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "1000000000000000",
                        "value_formatted": "0.001",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 0.001 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0x64f85fc73bb1d3655fe02e51c2626bbbf06a026e61870b19cf1fe54b5e5d4761",
                "nonce": "8804",
                "transaction_index": "1",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "1000000000000000",
                "gas": "2500000",
                "gas_price": "110000000",
                "receipt_cumulative_gas_used": "27833",
                "receipt_gas_used": "27833",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-09-07T17:25:09.000Z",
                "block_number": "251096475",
                "block_hash": "0x7c2166ed2754d8b1b01f23319ab16706a9a254a6c30840479f2538b26ae3d84e",
                "transaction_fee": "0.00000027833",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "1000000000000000",
                        "value_formatted": "0.001",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 0.001 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            },
            {
                "hash": "0x920fdde09edd8177f3729faba87e8ea5e83168ec0ef52b91b39ed8b5779cc836",
                "nonce": "3",
                "transaction_index": "2",
                "from_address_entity": null,
                "from_address_entity_logo": null,
                "from_address": "0x82eaa7ddec7b8d5e92de5fcb4735e3cf3d99d26e",
                "from_address_label": null,
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x88c8cc5afe58fb5cf3644a7ccdd725e681eea95c",
                "to_address_label": null,
                "value": "10000000000000000",
                "gas": "7000000",
                "gas_price": "10000000",
                "receipt_cumulative_gas_used": "4409930",
                "receipt_gas_used": "3832182",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-09-08T12:06:43.000Z",
                "block_number": "251362863",
                "block_hash": "0x6f2e3a1a7df013d98f2e53baf0a0ca33cc84609ad32205cd08fbb52aa148e395",
                "transaction_fee": "0.00003832182",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [
                    {
                        "token_name": "SENDTOKENS - Make multiple transactions at once!",
                        "token_symbol": "DROP",
                        "token_decimals": "18",
                        "from_address_entity": null,
                        "from_address_entity_logo": null,
                        "from_address": "0x82eaa7ddec7b8d5e92de5fcb4735e3cf3d99d26e",
                        "from_address_label": null,
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "address": "0xafba2dde92af8988e64df2adee128ffed8132e46",
                        "log_index": 10,
                        "value": "9000000000000000000",
                        "possible_spam": true,
                        "verified_contract": false,
                        "security_score": null,
                        "direction": "receive",
                        "value_formatted": "9"
                    }
                ],
                "native_transfers": [],
                "summary": "Received 9 DROP from 0x82...d26e",
                "possible_spam": true,
                "category": "token receive",
                "internal_transactions": [
                    {
                        "transaction_hash": "0x920fdde09edd8177f3729faba87e8ea5e83168ec0ef52b91b39ed8b5779cc836",
                        "block_number": 251362863,
                        "block_hash": "0x6f2e3a1a7df013d98f2e53baf0a0ca33cc84609ad32205cd08fbb52aa148e395",
                        "type": "CALL",
                        "from": "0x88c8cc5afe58fb5cf3644a7ccdd725e681eea95c",
                        "to": "0x6bf357f9556d4f89e1d7cb8fad38a72320a1c21f",
                        "value": "10000000000000000",
                        "gas": "3293004",
                        "gas_used": "0",
                        "input": "0x",
                        "output": "0x"
                    }
                ]
            },
            {
                "hash": "0x59a89fdb23491c5dfcf4bf94f27a6ca53387d174c6579009b350970b6e58fb16",
                "nonce": "4",
                "transaction_index": "2",
                "from_address_entity": null,
                "from_address_entity_logo": null,
                "from_address": "0xe7a8c2c7714638a02073642b5d20ba16c78f22af",
                "from_address_label": null,
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0xd152f549545093347a162dce210e7293f1452150",
                "to_address_label": null,
                "value": "0",
                "gas": "2949556",
                "gas_price": "10000000",
                "receipt_cumulative_gas_used": "13663086",
                "receipt_gas_used": "2903862",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-09-11T11:35:26.000Z",
                "block_number": "252386352",
                "block_hash": "0xd8b359af13ae7603ce4111eddf544b653d370e73e8d9eea07a6dffa682137e57",
                "transaction_fee": "0.00002903862",
                "method_label": "disperseToken",
                "nft_transfers": [],
                "erc20_transfers": [
                    {
                        "token_name": "Trade Lab",
                        "token_symbol": "TRADELAB",
                        "token_decimals": "9",
                        "from_address_entity": null,
                        "from_address_entity_logo": null,
                        "from_address": "0xd152f549545093347a162dce210e7293f1452150",
                        "from_address_label": null,
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "address": "0xb9ca656f0a2049dea1875d0db460343481f16973",
                        "log_index": 227,
                        "value": "733413717598919976",
                        "possible_spam": false,
                        "verified_contract": false,
                        "security_score": null,
                        "direction": "receive",
                        "value_formatted": "733413717.59892"
                    }
                ],
                "native_transfers": [],
                "summary": "Received 733,413,717.59 TRADELAB from 0xd1...2150",
                "possible_spam": false,
                "category": "token receive",
                "internal_transactions": []
            },
            {
                "hash": "0xb84441ee0d9115834aba12b4715cbb51f50216035c998230e5183141c9300de3",
                "nonce": "9412",
                "transaction_index": "2",
                "from_address_entity": "Bithumb",
                "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                "from_address_label": "Bithumb: Hot Wallet",
                "to_address_entity": null,
                "to_address_entity_logo": null,
                "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                "to_address_label": null,
                "value": "5000000000000000000000",
                "gas": "2500000",
                "gas_price": "110000000",
                "receipt_cumulative_gas_used": "387103",
                "receipt_gas_used": "57189",
                "receipt_contract_address": null,
                "receipt_status": "1",
                "block_timestamp": "2024-09-30T08:52:09.000Z",
                "block_number": "258868910",
                "block_hash": "0xb371f792f25d849e7b4f9d7037605a0efce4c3adeb93e62b8730d445a444318b",
                "transaction_fee": "0.00000057189",
                "method_label": null,
                "nft_transfers": [],
                "erc20_transfers": [],
                "native_transfers": [
                    {
                        "from_address_entity": "Bithumb",
                        "from_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/bithumb.png",
                        "from_address": "0x205ba210b80de3b3cedf1243d4718f92cb674d01",
                        "from_address_label": "Bithumb: Hot Wallet",
                        "to_address_entity": null,
                        "to_address_entity_logo": null,
                        "to_address": "0x131f001af400d5f212e1894846469fba70f8bcc9",
                        "to_address_label": null,
                        "value": "5000000000000000000000",
                        "value_formatted": "5000",
                        "direction": "receive",
                        "internal_transaction": false,
                        "token_symbol": "ETH"
                    }
                ],
                "summary": "Received 5,000 ETH from Bithumb: Hot Wallet",
                "possible_spam": false,
                "category": "receive",
                "internal_transactions": []
            }
        ]
    }
}
```

{% endtab %}
{% endtabs %}

### **/sendtransaction**

Send transaction on the chain.

<mark style="color:green;">`POST`</mark> `https://api.expand.network/chain/sendtransaction`

#### Request Body

| Name                                             | Type   | Description                                                                          |
| ------------------------------------------------ | ------ | ------------------------------------------------------------------------------------ |
| rpc                                              | String | Remote procedural call URL.                                                          |
| chainId<mark style="color:red;">\*</mark>        | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details. |
| chainSymbol                                      | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details. |
| rawTransaction<mark style="color:red;">\*</mark> | String | The encoded transaction, obtained from the signed transaction.                       |

{% tabs %}
{% tab title="Sample Request" %}

```json
{
    "chainId" : "42161",
    "rawTransaction": "0xf86f048433918fbe830493e0949b79d6dfe4650d70f35dbb80f7d1ec0cf7f823fd87038d7ea4c6800084022794382da0c9bd6b5c7e18a258b04039d524a3e1382ec0f522d160dc027428933f520b6868a07332736f1df297842299230820626f1fc5b8d4cdd602ade55e3ba02c63e756ce"
}
```

{% endtab %}

{% tab title="Sample Response" %}

```json
{
    "status": 200,
    "msg": "success",
    "data": {
        "chainId" : "42161",
        "transactionHash": "0x8375c5eedd17609292cecc051c18e180fa970b32a77011c48d3725e45e46e7b3" 
    }
}
```

{% endtab %}
{% endtabs %}

### /decodetransaction

Get the decoded transaction for the provided raw transaction.&#x20;

<mark style="color:green;">`POST`</mark> `https://api.expand.network/chain/decodetransaction`

#### Request Body

| Name                                             | Type   | Description                                                                                                |
| ------------------------------------------------ | ------ | ---------------------------------------------------------------------------------------------------------- |
| chainId                                          | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details. By default, Ethereum. |
| chainSymbol                                      | String | Refer to the [Chain ID ](https://docs.expand.network/ids/chain-ids)page for details.                       |
| rawTransaction<mark style="color:red;">\*</mark> | String | The raw transaction to be given for decoding.                                                              |

{% tabs %}
{% tab title="Sample Request" %}

```json
{
    "chainId": "42161",
    "rawTransaction": "0xf86a808405f5e100830c885d946fb447ae94f5180254d436a693907a1f57696900839896808083014986a0ef42c905354ab2e801e5d82dde6ac0524cc508d52efcf09e142f10d353cbebd9a04e74de901d830125391974592395e1c605b1526585c5d69154e4b83b81d8cc50"
}
```

{% endtab %}

{% tab title="Sample Response" %}

```json
{
    "status": 200,
    "msg": "success",
    "data": {
        "parsedTx": {
            "nonce": 0,
            "gasPrice": {
                "type": "BigNumber",
                "hex": "0x05f5e100"
            },
            "gasLimit": {
                "type": "BigNumber",
                "hex": "0x0c885d"
            },
            "to": "0x6Fb447Ae94F5180254D436A693907a1f57696900",
            "value": {
                "type": "BigNumber",
                "hex": "0x989680"
            },
            "data": "0x",
            "chainId": 42161,
            "v": 84358,
            "r": "0xef42c905354ab2e801e5d82dde6ac0524cc508d52efcf09e142f10d353cbebd9",
            "s": "0x4e74de901d830125391974592395e1c605b1526585c5d69154e4b83b81d8cc50",
            "from": "0xa2e73C17F437688946993F683930E3Fd42Dd4F8C",
            "hash": "0x1f625c983d622282e4493a943da892bdddd8c164026e67a5f5ac9f175ded0139",
            "type": null
        },
        "assetChanges": {
            "from": "0xa2e73C17F437688946993F683930E3Fd42Dd4F8C",
            "to": "0x6Fb447Ae94F5180254D436A693907a1f57696900",
            "value": {
                "type": "BigNumber",
                "hex": "0x989680"
            }
        }
    }
}
```

{% endtab %}
{% endtabs %}
