BSC Querying API

About Binance Smart Chain

Binance Chain was launched in April 2019 with a focus on providing fast decentralized trading. Due to flexibility limitations, the Binance Chain evolved to the Binance Smart Chain which got launched in September 2020. Today, BSC is arguably one of the fastest-growing chains, which is gaining a lot of traction because of its intriguing features compared to the other chains

Key Aspects:

  • BSC generated $15 million & $24 billion in terms of transaction volumes in January and February 2021 respectively (exponential rise)

  • BSC is the third largest chain with more than 50,000 unique active wallets

  • PancakeSwap is only 12,000 users behind Uniswap in terms of unique active wallets

Unmarshal's Current Infrastructure Support

Get Token Balance

GET https://stg-api.unmarshal.io/v1/bsc/address/:address/assets

Description This endpoint allows you to retrieve balance tied to a particular address. The response of this API will include everything you need to make sense of your assets. You can see what is the current value of each token, and how much your assets are worth in fiat currency. We also have built a CDN for logos. Eg: Fetch Balances by address for BSC https://stg-api.unmarshal.io/v1/bsc/address/0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA/assets?auth_key=VGVtcEtleQ%3D%3D

Path Parameters

NameTypeDescription

address

string

Vaild BSC address

Query Parameters

NameTypeDescription

auth_key

string

Demo key: VGVtcEtleQ==

[
  {
    "contract_name": "PancakeSwap Token",
    "contract_ticker_symbol": "Cake",
    "contract_decimals": 18,
    "contract_address": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82",
    "coin": 10000714,
    "type": "BEP20",
    "balance": "47799999999995300000",
    "quote": 1598.699201999843,
    "quote_rate": 33.44559,
    "logo_url": "https://exchange.pancakeswap.finance/images/coins/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82.png"
  },
  {
    "contract_name": "ALICE",
    "contract_ticker_symbol": "ALICE",
    "contract_decimals": 6,
    "contract_address": "0xAC51066d7bEC65Dc4589368da368b212745d63E8",
    "coin": 10000714,
    "type": "BEP20",
    "balance": "8121648",
    "quote": 74.737410943056,
    "quote_rate": 9.202247,
    "logo_url": "https://exchange.pancakeswap.finance/images/coins/0xAC51066d7bEC65Dc4589368da368b212745d63E8.png"
  },
  {
    "contract_name": "IoTeX Network",
    "contract_ticker_symbol": "IOTX",
    "contract_decimals": 18,
    "contract_address": "0x9678E42ceBEb63F23197D726B29b1CB20d0064E5",
    "coin": 10000714,
    "type": "BEP20",
    "balance": "41831238146331205632",
    "quote": 1.5842744823160015,
    "quote_rate": 0.037873,
    "logo_url": "https://exchange.pancakeswap.finance/images/coins/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5.png"
  }
]

Get Token Transactions

GET https://stg-api.unmarshal.io/v1/bsc/address/:address/transactions

Description Retrieves all transactions of the particular address. Unmarshal has the best in class decoders to extract the meaning out of just a function call to the smart contract. Our decoder decodes the transaction into Send, Receive, Approve, Stake, UnStake, Add Liquidity, Remove Liquidity, etc. Optional Query Parameters: -> contract: valid bsc token address held by bsc wallet address to get all the transactions of a particular token. -> page: specifies the page of the returned transaction, starting from 1. -> pageSize: Number of transaction returned by API call (by default 25), returns in the order of recent transactions Eg: Fetch all transactions by address for BSC https://stg-api.unmarshal.io/v1/bsc/address/0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA/transactions?auth_key=VGVtcEtleQ%3D%3D&page=1&pageSize=10 https://stg-api.unmarshal.io/v1/bsc/address/0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA/transactions?auth_key=VGVtcEtleQ%3D%3D&page=1&contract=0xA58950F05FeA2277d2608748412bf9F802eA4901

Path Parameters

NameTypeDescription

address

string

Valid BSC address

Query Parameters

NameTypeDescription

contract

string

valid bsc token address held by above bsc(wallet) address

auth_key

string

Demo key: VGVtcEtleQ==

{
    "page": 1,
    "total_pages": 4797,
    "items_on_page": 10,
    "total_txs": 47961,
    "transactions": [
        {
            "id": "0x04da92855224cc01e06e542f75c0911c364fd16e6bebbab2aaf8369272463dbf",
            "from": "0xe27e9b5DCE16174d02b9C950432222aAe1e9f990",
            "to": "0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA",
            "fee": "360400000000000",
            "date": 1619415008,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 0 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "0"
                }
            ]
        },
        {
            "id": "0x1962103781030a309cd848b142bbee97d8d3c6899fb25a53cc60b5b33c4e98d2",
            "from": "0xEfda1534a9b74E5e8E6d242F8F9413a694E27Db4",
            "to": "0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA",
            "fee": "342480000000000",
            "date": 1619414456,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 0 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "0"
                }
            ]
        },
        {
            "id": "0xf16c51deffc483c0d0c8bcd3ebe67b89a001f3541d88d63ecba9339af56897cc",
            "from": "0xc6daB09eDc7aB9D0bd625cc760Adf4C4b00240A1",
            "to": "0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA",
            "fee": "360400000000000",
            "date": 1619412306,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 0 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "0"
                }
            ]
        },
        {
            "id": "0xf161f0ac0128a5a24b27bfdbc13617954cd7650a8c8d76970c7afa526cb2974a",
            "from": "0x949Ddd9511Dac0A16E6cA87667231dA819F2Ef6D",
            "to": "0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA",
            "fee": "285400000000000",
            "date": 1619411086,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 0 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "0"
                }
            ]
        },
        {
            "id": "0xf4521adb420ef665d1fc1e4ab5da3930940ea2f2ca6d051e94292121bef6ea95",
            "from": "0x5624430EffeAC4439E811B890dA094F5F0907A70",
            "to": "0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA",
            "fee": "285400000000000",
            "date": 1619410936,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 0 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "0"
                }
            ]
        },
        {
            "id": "0xe8fb00b6801c7b0fcc00420087749dd2594c8ae6fcc5afdf8e06bc7c3503dd86",
            "from": "0x7aF1f06F80f987c06C9EeDF8e856a550aC06C02B",
            "to": "0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA",
            "fee": "360400000000000",
            "date": 1619408053,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 0 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "0"
                }
            ]
        },
        {
            "id": "0x2dba55ffa1fe7285a87993848735977934aba11ef1758e9a3180b4dd899f0063",
            "from": "0xf4e71b4F810BFECBD5d5A3e4b6ca5C9400714258",
            "to": "0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA",
            "fee": "360400000000000",
            "date": 1619407315,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 0 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "0"
                }
            ]
        },
        {
            "id": "0xe3c2863058939ccc57dc75859cb0c37705732a5707421703bd0aa1edecf5dedb",
            "from": "0xCdC8D9cadd55137b07107a3F5f00F74D545efbeb",
            "to": "0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA",
            "fee": "360400000000000",
            "date": 1619406172,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 0 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "0"
                }
            ]
        },
        {
            "id": "0x8ae9a538d8282940959a54c5257bde8a66015966e3736ab33cc3d0a6e9c46407",
            "from": "0x81f140a8eB7905520d30910bF1166B7096715ba3",
            "to": "0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA",
            "fee": "360400000000000",
            "date": 1619402567,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 0 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "0"
                }
            ]
        },
        {
            "id": "0x0c62f2870c7745967e34d53c49129258081d2daf2ebeb17b90cf1da1cb574cd7",
            "from": "0x214a337117Ff85BFFc730Ea8ec617655853fE2eE",
            "to": "0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA",
            "fee": "360400000000000",
            "date": 1619402099,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 0 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "0"
                }
            ]
        }
    ]
}

Get Transaction Detail

GET https://stg-api.unmarshal.io/v1/bsc/transactions/:txID

Description Get the details of a single transaction through transaction hash. Eg: Fetch particular transaction details by transaction Hash from BSC https://stg-api.unmarshal.io/v1/bsc/transactions/0x63455a16b9072471271f93fdde4ebadd83e47342a12855287887c00973d92093?auth_key=VGVtcEtleQ%3D%3D

Path Parameters

NameTypeDescription

txID

string

Valid BSC transaction ID

Query Parameters

NameTypeDescription

auth_key

string

Demo key: VGVtcEtleQ==

{
  "id": "0x63455a16b9072471271f93fdde4ebadd83e47342a12855287887c00973d92093",
  "from": "0x55F496cd532669EFC127148340a7e5F4EED97CdB",
  "to": "0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA",
  "fee": "360400000000000",
  "date": 1619375618,
  "status": "completed",
  "type": "send",
  "value": "0",
  "description": "Sent 0 BNB",
  "sent": [
    {
      "name": "Binance Smart Chain",
      "symbol": "BNB",
      "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
      "decimals": 18,
      "value": "0"
    }
  ]
}

Get Transactions along with price at the time of transaction

GET https://stg-api.unmarshal.io/v2/bsc/address/:address/transactions

Description: Retrives all the transactions of a bsc wallet address. This end point also provides the price related data at the time of the transaction. All other decoding features are also included like transactions Api. Optional Query Parameters: -> contract: valid bsc token address held by bsc wallet address to get all the transactions of a particular token. -> page: specifies the page of the returned transaction, starting from 1. -> pageSize: Number of transaction returned by API call (by default 25), returns in the order of recent transactions Eg: Fetch all transactions by address for bsc address https://stg-api.unmarshal.io/v2/bsc/address/0xeFfCcB592a5745f87352bF053ABeDBFE1177e4ad/transactions?auth_key=VGVtcEtleQ%3D%3D&pageSize=25 https://stg-api.unmarshal.io/v2/bsc/address/0xd718baa0B1F4f70dcC8458154042120FFE0DEFFA/transactions?auth_key=VGVtcEtleQ%3D%3D&page=1&contract=0xA58950F05FeA2277d2608748412bf9F802eA4901

Path Parameters

NameTypeDescription

address

string

Valid Bsc address

Query Parameters

NameTypeDescription

contract

string

valid bsc token address held by above bsc(wallet) address

auth_key

string

VGVtcEtleQ==

{
    "page": 1,
    "total_pages": 18,
    "items_on_page": 25,
    "total_txs": 0,
    "transactions": [
        {
            "id": "0x32f20a4ca93ea3ebf99c4ca7d80b0bbb981c40c12cc9a95ba933fc9982601cf1",
            "from": "0x2eb2e8a26e7d3fc851b7d06ef3bf950cd8dbdc8c",
            "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "fee": "105000000000000",
            "date": 1625121428,
            "status": "completed",
            "type": "receive",
            "value": "297945000000000",
            "description": "Received 0.0003 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "297945000000000",
                    "quote": 0.08694612094652082,
                    "quoteRate": 291.81936581087393,
                    "logo_url": "https://assets.unmarshal.io/tokens/0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee.png",
                    "from": "0x2eb2e8a26e7d3fc851b7d06ef3bf950cd8dbdc8c",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0xdade47f44de1bc2396bc53f55c93e7828ea751244446945f9fc0fdd9d2584880",
            "from": "0x9831841464f2273076d52323972e19aa9a4cf551",
            "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "fee": "105000000000000",
            "date": 1625121398,
            "status": "completed",
            "type": "receive",
            "value": "206935000000000",
            "description": "Received 0.0002 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "206935000000000",
                    "quote": 0.060387640464073196,
                    "quoteRate": 291.81936581087393,
                    "logo_url": "https://assets.unmarshal.io/tokens/0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee.png",
                    "from": "0x9831841464f2273076d52323972e19aa9a4cf551",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0x9404f3149391f274fdf1d8da6445242a6631246a5dc201b398b96255f48cbfa5",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0xee85c2145d01fbae8f8b97b5b5e8f2d4054956fd",
            "fee": "72800000000000",
            "date": 1625121128,
            "status": "completed",
            "type": "approve",
            "value": "0",
            "description": "Approved RDOG",
            "sent": [
                {
                    "name": "Rottweilers Token",
                    "symbol": "RDOG",
                    "token_id": "0xee85c2145d01fbae8f8b97b5b5e8f2d4054956fd",
                    "decimals": 18,
                    "value": "",
                    "logo_url": "https://assets.unmarshal.io/tokens/0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee.png",
                    "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
                    "to": "0xee85c2145d01fbae8f8b97b5b5e8f2d4054956fd"
                }
            ]
        },
        {
            "id": "0x8237ddd7abc8827404abe36f8212fd0f95852fc9bc75f92fad91d6eb11f37d70",
            "from": "0x1d1ff53d250a385e165c94c5c529e8ac96ba1134",
            "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "fee": "105000000000000",
            "date": 1625121101,
            "status": "completed",
            "type": "receive",
            "value": "341800000000000",
            "description": "Received 0.0003 BNB",
            "received": [
                {
                    "name": "Binance Smart Chain",
                    "symbol": "BNB",
                    "token_id": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                    "decimals": 18,
                    "value": "341800000000000",
                    "quote": 0.09974385923415671,
                    "quoteRate": 291.81936581087393,
                    "logo_url": "https://assets.unmarshal.io/tokens/0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee.png",
                    "from": "0x1d1ff53d250a385e165c94c5c529e8ac96ba1134",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0xab2abe1a8ba82efe811572a9e895e444096ec513d9f50b810bcc9c831e872511",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0xee85c2145d01fbae8f8b97b5b5e8f2d4054956fd",
            "fee": "222515000000000",
            "date": 1625120990,
            "status": "completed",
            "type": "approve",
            "value": "0",
            "description": "Approved RDOG",
            "sent": [
                {
                    "name": "Rottweilers Token",
                    "symbol": "RDOG",
                    "token_id": "0xee85c2145d01fbae8f8b97b5b5e8f2d4054956fd",
                    "decimals": 18,
                    "value": "",
                    "logo_url": "https://assets.unmarshal.io/tokens/0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee.png",
                    "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
                    "to": "0xee85c2145d01fbae8f8b97b5b5e8f2d4054956fd"
                }
            ]
        },
        {
            "id": "0xc4f85c3765dab72195a0f7bc392cef49de8b6511b8e0396c4a9974262d0c22bb",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
            "fee": "303325000000000",
            "date": 1625070622,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 500000 mBTC",
            "received": [
                {
                    "name": "MoonBitcoin",
                    "symbol": "mBTC",
                    "token_id": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "decimals": 0,
                    "value": "500000",
                    "quote": 12256386.90268254,
                    "quoteRate": 24.51277380536508,
                    "logo_url": "https://assets.unmarshal.io/tokens/0x0e65834a4092b10ece3c9290b256f0df83f71c6c.png",
                    "from": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0x1385db3231ba4070b3b5dd453050a3ea54806b1ac237562fdc8ecd9c544cb18b",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
            "fee": "303325000000000",
            "date": 1625070619,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 500000 mBTC",
            "received": [
                {
                    "name": "MoonBitcoin",
                    "symbol": "mBTC",
                    "token_id": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "decimals": 0,
                    "value": "500000",
                    "quote": 12256386.90268254,
                    "quoteRate": 24.51277380536508,
                    "logo_url": "https://assets.unmarshal.io/tokens/0x0e65834a4092b10ece3c9290b256f0df83f71c6c.png",
                    "from": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0x88aa264dd444dd00973470b59935ebd87b6d3f620f20680abe04cb6191d11b99",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
            "fee": "303325000000000",
            "date": 1625070610,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 500000 mBTC",
            "received": [
                {
                    "name": "MoonBitcoin",
                    "symbol": "mBTC",
                    "token_id": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "decimals": 0,
                    "value": "500000",
                    "quote": 12256386.90268254,
                    "quoteRate": 24.51277380536508,
                    "logo_url": "https://assets.unmarshal.io/tokens/0x0e65834a4092b10ece3c9290b256f0df83f71c6c.png",
                    "from": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0xb46b655c580dd40d213840252717b3315465351e41a8febb1d5bd3b0294d7aef",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
            "fee": "303325000000000",
            "date": 1625070604,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 500000 mBTC",
            "received": [
                {
                    "name": "MoonBitcoin",
                    "symbol": "mBTC",
                    "token_id": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "decimals": 0,
                    "value": "500000",
                    "quote": 12256386.90268254,
                    "quoteRate": 24.51277380536508,
                    "logo_url": "https://assets.unmarshal.io/tokens/0x0e65834a4092b10ece3c9290b256f0df83f71c6c.png",
                    "from": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0x4a4d6926712e91f02f92ef41220c2021310c705bf6d9a525e4b71cb5cad1556e",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
            "fee": "303325000000000",
            "date": 1625070595,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 500000 mBTC",
            "received": [
                {
                    "name": "MoonBitcoin",
                    "symbol": "mBTC",
                    "token_id": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "decimals": 0,
                    "value": "500000",
                    "quote": 12256386.90268254,
                    "quoteRate": 24.51277380536508,
                    "logo_url": "https://assets.unmarshal.io/tokens/0x0e65834a4092b10ece3c9290b256f0df83f71c6c.png",
                    "from": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0xd22b8139317730fa9f53311e825d028b62b6dd08e195bc241a8e9db1e93d8805",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
            "fee": "378325000000000",
            "date": 1625070583,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 500000 mBTC",
            "received": [
                {
                    "name": "MoonBitcoin",
                    "symbol": "mBTC",
                    "token_id": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "decimals": 0,
                    "value": "500000",
                    "quote": 12256386.90268254,
                    "quoteRate": 24.51277380536508,
                    "logo_url": "https://assets.unmarshal.io/tokens/0x0e65834a4092b10ece3c9290b256f0df83f71c6c.png",
                    "from": "0x0e65834a4092b10ece3c9290b256f0df83f71c6c",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0x7542317ba0fad965b3156e877492074b8e54b0ecc232eda7638a47106ce69f90",
            "from": "0x9831841464f2273076d52323972e19aa9a4cf551",
            "to": "0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d",
            "fee": "368610000000000",
            "date": 1625062676,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 300000 wBnB",
            "received": [
                {
                    "name": "wBinancecoin",
                    "symbol": "wBnB",
                    "token_id": "0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d",
                    "decimals": 8,
                    "value": "30000000000000",
                    "quote": 87438088.3206457,
                    "quoteRate": 291.46029440215233,
                    "logo_url": "https://assets.unmarshal.io/tokens/0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d.png",
                    "from": "0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0xe1413569d7ca99510b1e9ad21f717ddf342dbcd69a276d99e984cc2696d493ac",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d",
            "fee": "293610000000000",
            "date": 1625062596,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 300000 wBnB",
            "received": [
                {
                    "name": "wBinancecoin",
                    "symbol": "wBnB",
                    "token_id": "0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d",
                    "decimals": 8,
                    "value": "30000000000000",
                    "quote": 87600490.6893263,
                    "quoteRate": 292.00163563108765,
                    "logo_url": "https://assets.unmarshal.io/tokens/0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d.png",
                    "from": "0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0x395579dc1a967cf4551562dba4167c5faabe26780e56be72e0ac4bafe35cf2d8",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d",
            "fee": "312210000000000",
            "date": 1625062581,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 300000 wBnB",
            "received": [
                {
                    "name": "wBinancecoin",
                    "symbol": "wBnB",
                    "token_id": "0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d",
                    "decimals": 8,
                    "value": "30000000000000",
                    "quote": 87600490.6893263,
                    "quoteRate": 292.00163563108765,
                    "logo_url": "https://assets.unmarshal.io/tokens/0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d.png",
                    "from": "0xec80ce6ec16b0c8bef97ca0dc9ea3d605977dc0d",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0x5c2bf55356914a3f763393e86fe9021e32173b1fdb3341c49a90e6836ba56d01",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
            "fee": "303325000000000",
            "date": 1625024201,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 100000 MOONBEE",
            "received": [
                {
                    "name": "MOON BEE TOKEN",
                    "symbol": "MOONBEE",
                    "token_id": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
                    "decimals": 9,
                    "value": "100000000000000",
                    "logo_url": "https://assets.unmarshal.io/tokens/0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101.png",
                    "from": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0x9ea6ac3c1d18a6e6aad077adbce3ae328cbd45ff38be3026c20e615d57072681",
            "from": "0x1d1ff53d250a385e165c94c5c529e8ac96ba1134",
            "to": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
            "fee": "378325000000000",
            "date": 1625024075,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 100000 MOONBEE",
            "received": [
                {
                    "name": "MOON BEE TOKEN",
                    "symbol": "MOONBEE",
                    "token_id": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
                    "decimals": 9,
                    "value": "100000000000000",
                    "logo_url": "https://assets.unmarshal.io/tokens/0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101.png",
                    "from": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0xc96b9274117d1902060832fadd2de85a6b8c5978bedc09dca3ae858072832157",
            "from": "0x9831841464f2273076d52323972e19aa9a4cf551",
            "to": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
            "fee": "303325000000000",
            "date": 1625024000,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 100000 MOONBEE",
            "received": [
                {
                    "name": "MOON BEE TOKEN",
                    "symbol": "MOONBEE",
                    "token_id": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
                    "decimals": 9,
                    "value": "100000000000000",
                    "logo_url": "https://assets.unmarshal.io/tokens/0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101.png",
                    "from": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0x2e81f90f398ec3125edef39f8057d7c477a655d4692706ded3222ad965102e24",
            "from": "0x9831841464f2273076d52323972e19aa9a4cf551",
            "to": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
            "fee": "378325000000000",
            "date": 1625023976,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 100000 MOONBEE",
            "received": [
                {
                    "name": "MOON BEE TOKEN",
                    "symbol": "MOONBEE",
                    "token_id": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
                    "decimals": 9,
                    "value": "100000000000000",
                    "logo_url": "https://assets.unmarshal.io/tokens/0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101.png",
                    "from": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0xe9b2177d43f67c2677e374ceedcb6abf7531a6837bcf90782b2f145dc2cd37b9",
            "from": "0xeffccb592a5745f87352bf053abedbfe1177e4ad",
            "to": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
            "fee": "378325000000000",
            "date": 1625023892,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 100000 MOONBEE",
            "received": [
                {
                    "name": "MOON BEE TOKEN",
                    "symbol": "MOONBEE",
                    "token_id": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
                    "decimals": 9,
                    "value": "100000000000000",
                    "logo_url": "https://assets.unmarshal.io/tokens/0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101.png",
                    "from": "0x4a37a2d3ec44f0fd7ddcf7c2d90749ddeefb6101",
                    "to": "0xeffccb592a5745f87352bf053abedbfe1177e4ad"
                }
            ]
        },
        {
            "id": "0xfe320c28ed959c230e201638e629ec12ef6935fd5260c7940bcd2b5dfcd2dcfd",
            "from": "0x9831841464f2273076d52323972e19aa9a4cf551",
            "to": "0x2b54d3d7ab8e65895168938f7145f39225db7ce5",
            "fee": "301925000000000",
            "date": 1625022890,
            "status": "completed",
            "type": "receive",
            "value": "0",
            "description": "Received 220 EYE",
            "received": [
                {
                    "name": "EyeSwap",
                    "symbol": "EYE",
                    "token_id": "0x2b54d3d7ab8e65895168938f7145f39225db7ce5",
                    "decimals": 18,
                    "value": "220000000000000000000",
                    "quote": 63.713680527244,
                    "quoteRate": 0.2896076387602,
                    "logo_url": "https://assets.unmarshal.io/tokens/0x2b54d3d7ab8e65895168938f7145f39225db7ce5.png",
                    "from":"0x2b54d3d7ab8e65895168938f7145f39225db7ce

Last updated