logo

Wallet

Explorer#

Github

Overview#

Our blockchain explorer lets you do a lot of things easily. You can view blocks and transactions, buy resources, vote, campaign for node roles, and check out contracts.

Features#

  • View Blocks and Transactions: Track the latest blocks and transactions on the network.
  • Purchase Resources: Buy necessary resources for your operations.
  • Voting and Node Campaigning: Participate in network governance by voting and running for node roles.
  • View Contracts: Access and review smart contracts.
  • iOS/Android Wallet#

    Overview#

    The mobile wallet app for iOS and Android helps you manage your assets and trade across different blockchains. It also offers a platform for developers to integrate their applications using the wallet SDK.

    Features#

  • Basic Asset Management: Easily manage your digital assets.
  • Cross-Chain Trading: Trade assets across different blockchains seamlessly.
  • Developer Platform: Access the wallet SDK to integrate your applications.
  • Web Wallet#

    Github

    Overview#

    The web wallet offers basic functionalities for handling transactions right from your browser.

    Features#

  • Transaction Management: Handle your transactions with ease.
  • Explorer API#

    To get more information by code

    Our Explorer API allows you to interact with blockchain data. You can get information about blocks, transactions, and TPS (transactions per second). Here’s how you can use it:

    Blocks#

    Get Block List#

  • URL: api/all/blocks?limit={limit}&page={page}
  • Method: GET
  • Description: Retrieve a list of blocks.
  • Success Response:

    1
    {
    2
    "total": 5850,
    3
    "blocks": [
    4
    {
    5
    "block_hash": "7e1c2fb6d3cc5e8c2cef7d75de9c1adf0e25e9d17d4f22e543fa20f5f23b20e9",
    6
    "pre_block_hash": "6890fa74156b1a88a3ccef1fef72f4f78ff2755ffcd4fb5434ed7b3c153061f5",
    7
    "chain_id": "AELF",
    8
    "block_height": 5719,
    9
    "tx_count": 1,
    10
    "merkle_root_tx": "47eabbc7a499764d0b25c7216ba75fe39717f9866a0716c8a0d1798e64852d84",
    11
    "merkle_root_state": "d14e78dc3c7811b7c17c8b04ebad9e547c35b3faa8bfcc9189b8c12e9f6a4aae",
    12
    "time": "2019-04-27T02:00:34.691118Z"
    13
    },
    14
    {
    15
    "block_hash": "6890fa74156b1a88a3ccef1fef72f4f78ff2755ffcd4fb5434ed7b3c153061f5",
    16
    "pre_block_hash": "f1098bd6df58acf74d8877529702dffc444cb401fc8236519606aa9165d945ae",
    17
    "chain_id": "AELF",
    18
    "block_height": 5718,
    19
    "tx_count": 1,
    20
    "merkle_root_tx": "b29b416148b4fb79060eb80b49bb6ac25a82da2d7a1c5d341e0bf279a7c57362",
    21
    "merkle_root_state": "4dbef401f6d9ed303cf1b5e609a64b1c06a7fb77620b9d13b0e4649719e2fe55",
    22
    "time": "2019-04-27T02:00:34.691118Z"
    23
    },
    24
    {
    25
    "block_hash": "f1098bd6df58acf74d8877529702dffc444cb401fc8236519606aa9165d945ae",
    26
    "pre_block_hash": "1fbdf3a4fb3c41e9ddf25958715815d9d643dfb39e1aaa94631d197e9b1a94bb",
    27
    "chain_id": "AELF",
    28
    "block_height": 5717,
    29
    "tx_count": 1,
    30
    "merkle_root_tx": "776abba03d66127927edc6437d406f708b64c1653a1cc22af9c490aa4f0c22dc",
    31
    "merkle_root_state": "ccc32ab23d619b2b8e0e9b82a53bb66b3a6d168993188b5d3f7f0ac2cb17206f",
    32
    "time": "2019-04-27T02:00:26.690003Z"
    33
    }
    34
    ]
    35
    }

    Get Block List By Block Hash#

  • URL: api/block/transactions?limit={limit}&page={page}&order={order}&block_hash={block_hash}
  • Method: GET
  • Description: Retrieve a list of blocks using a specific block hash.
  • Success Response:

    1
    {
    2
    "transactions": [
    3
    {
    4
    "tx_id": "209ceb8ee88eeb2c55db7783c48ec0b1adf6badba89fc7ddb86e968601027cbb",
    5
    "chain_id": "AELF",
    6
    "block_height": 590,
    7
    "address_from": "csoxW4vTJNT9gdvyWS6W7UqEdkSo9pWyJqBoGSnUHXVnj4ykJ",
    8
    "address_to": "2gaQh4uxg6tzyH1ADLoDxvHA14FMpzEiMqsQ6sDG5iHT8cmjp8",
    9
    "method": "DeploySmartContract",
    10
    "block_hash": "79584a99b7f5da5959a26ff02cbe174d632eb5ef3c6c8d5192de48b6f5584c8d",
    11
    "quantity": 0,
    12
    "tx_status": "Mined",
    13
    "time": "2019-04-26T06:47:00.265604Z"
    14
    },
    15
    {
    16
    "tx_id": "d9398736920a5c87ea7cae46c265efa84ac7be4cf8edd37bea54078abef1b44c",
    17
    "params_to": "",
    18
    "chain_id": "AELF",
    19
    "block_height": 590,
    20
    "address_from": "2EyPedNTscFK5EwR8FqTrCeW2LZzuPQ7vr18Y5QWuEUApdCkM6",
    21
    "address_to": "xw6U3FRE5H8rU3z8vAgF9ivnWSkxULK5cibdZzMC9UWf7rPJf",
    22
    "params": "",
    23
    "method": "NextRound",
    24
    "block_hash": "79584a99b7f5da5959a26ff02cbe174d632eb5ef3c6c8d5192de48b6f5584c8d",
    25
    "quantity": 0,
    26
    "tx_status": "Mined",
    27
    "time": "2019-04-26T06:47:00.265604Z"
    28
    }
    29
    ]
    30
    }

    Transactions#

    Get Transactions List#

  • URL: api/all/transactions?limit={limit}&page={page}
  • Method: GET
  • Description: Retrieve a list of transactions.
  • Success Response:

    1
    {
    2
    "total": 1179,
    3
    "transactions": [
    4
    {
    5
    "tx_id": "c65d1206e65aaf2e7e08cc818c372ff2c2947cb6cbec746efe6a5e20b7adefa9",
    6
    "chain_id": "AELF",
    7
    "block_height": 1064,
    8
    "address_from": "grSAEQ5vJ7UfCN2s1v4fJJnk98bu4SHa2hpQkQ9HT88rmaZLz",
    9
    "address_to": "xw6U3FRE5H8rU3z8vAgF9ivnWSkxULK5cibdZzMC9UWf7rPJf",
    10
    "method": "NextRound",
    11
    "block_hash": "8c922b20164ad3774b56d19673154f383ed89656cbd56433d1681c8c3a4dcab9",
    12
    "quantity": 0,
    13
    "tx_status": "Mined",
    14
    "time": "2019-04-26T07:18:36.636701Z"
    15
    },
    16
    {
    17
    "tx_id": "4780a7b2737b6f044894719b9bb4cb09862c0b4a7cae267131a0b5c3e7c12850",
    18
    "params_to": "",
    19
    "chain_id": "AELF",
    20
    "block_height": 1063,
    21
    "address_from": "QUYYqzTQmugruHYmuJVftwmVjnUM82pXnMTnT5jh55qwZKrMw",
    22
    "address_to": "xw6U3FRE5H8rU3z8vAgF9ivnWSkxULK5cibdZzMC9UWf7rPJf",
    23
    "params": "",
    24
    "method": "UpdateValue",
    25
    "block_hash": "381114b86b09886f59956851a1d47d8442b29f44f3785dade3c667ca320e23bb",
    26
    "quantity": 0,
    27
    "tx_status": "Mined",
    28
    "time": "2019-04-26T07:18:36.636701Z"
    29
    },
    30
    {
    31
    "tx_id": "0230385e3f060059d2a62addac09ad6d01f96d32ec076cfbf44c6a3b70c6e092",
    32
    "params_to": "",
    33
    "chain_id": "AELF",
    34
    "block_height": 1062,
    35
    "address_from": "zizPhdDpQCZxMChMxn1oZ4ttJGJUo61Aocg5BpTYvzLQGmBjT",
    36
    "address_to": "xw6U3FRE5H8rU3z8vAgF9ivnWSkxULK5cibdZzMC9UWf7rPJf",
    37
    "params": "",
    38
    "method": "NextRound",
    39
    "block_hash": "06a3ceb783480f4cf5b8402f6749617093d9ea5f9a053f65e86554aeed6d98f4",
    40
    "quantity": 0,
    41
    "tx_status": "Mined",
    42
    "time": "2019-04-26T07:18:28.635113Z"
    43
    }
    44
    ]
    45
    }

    Get Transactions List By Address#

  • URL: api/address/transactions?contract_address={contract_address}&limit={limit}&page={page}&address={address}
  • Method: GET
  • Description: Retrieve a list of transactions associated with a specific address.
  • Success Response:

    1
    {
    2
    "total": 1179,
    3
    "transactions": [
    4
    {
    5
    "tx_id": "c65d1206e65aaf2e7e08cc818c372ff2c2947cb6cbec746efe6a5e20b7adefa9",
    6
    "chain_id": "AELF",
    7
    "block_height": 1064,
    8
    "address_from": "grSAEQ5vJ7UfCN2s1v4fJJnk98bu4SHa2hpQkQ9HT88rmaZLz",
    9
    "address_to": "xw6U3FRE5H8rU3z8vAgF9ivnWSkxULK5cibdZzMC9UWf7rPJf",
    10
    "method": "NextRound",
    11
    "block_hash": "8c922b20164ad3774b56d19673154f383ed89656cbd56433d1681c8c3a4dcab9",
    12
    "quantity": 0,
    13
    "tx_status": "Mined",
    14
    "time": "2019-04-26T07:18:36.636701Z"
    15
    },
    16
    {
    17
    "tx_id": "4780a7b2737b6f044894719b9bb4cb09862c0b4a7cae267131a0b5c3e7c12850",
    18
    "params_to": "",
    19
    "chain_id": "AELF",
    20
    "block_height": 1063,
    21
    "address_from": "QUYYqzTQmugruHYmuJVftwmVjnUM82pXnMTnT5jh55qwZKrMw",
    22
    "address_to": "xw6U3FRE5H8rU3z8vAgF9ivnWSkxULK5cibdZzMC9UWf7rPJf",
    23
    "params": "",
    24
    "method": "UpdateValue",
    25
    "block_hash": "381114b86b09886f59956851a1d47d8442b29f44f3785dade3c667ca320e23bb",
    26
    "quantity": 0,
    27
    "tx_status": "Mined",
    28
    "time": "2019-04-26T07:18:36.636701Z"
    29
    },
    30
    {
    31
    "tx_id": "0230385e3f060059d2a62addac09ad6d01f96d32ec076cfbf44c6a3b70c6e092",
    32
    "params_to": "",
    33
    "chain_id": "AELF",
    34
    "block_height": 1062,
    35
    "address_from": "zizPhdDpQCZxMChMxn1oZ4ttJGJUo61Aocg5BpTYvzLQGmBjT",
    36
    "address_to": "xw6U3FRE5H8rU3z8vAgF9ivnWSkxULK5cibdZzMC9UWf7rPJf",
    37
    "params": "",
    38
    "method": "NextRound",
    39
    "block_hash": "06a3ceb783480f4cf5b8402f6749617093d9ea5f9a053f65e86554aeed6d98f4",
    40
    "quantity": 0,
    41
    "tx_status": "Mined",
    42
    "time": "2019-04-26T07:18:28.635113Z"
    43
    }
    44
    ]
    45
    }

    TPS (Transactions Per Second)#

    Get TPS Record#

  • URL: api/tps/list?start_time={unix_timestamp}&end_time={unix_timestamp}&order={order}
  • Method: GET
  • Description: Obtain TPS records for performance monitoring.
  • Success Response:

    1
    {
    2
    "total": 178,
    3
    "tps": [
    4
    {
    5
    "id": 12498,
    6
    "start": "2019-11-22T01:12:14Z",
    7
    "end": "2019-11-22T01:13:14Z",
    8
    "txs": 1878,
    9
    "blocks": 120,
    10
    "tps": 31,
    11
    "tpm": 1878,
    12
    "type": 1
    13
    },
    14
    {
    15
    "id": 12499,
    16
    "start": "2019-11-22T01:13:14Z",
    17
    "end": "2019-11-22T01:14:14Z",
    18
    "txs": 1889,
    19
    "blocks": 117,
    20
    "tps": 31,
    21
    "tpm": 1889,
    22
    "type": 1
    23
    },
    24
    {
    25
    "id": 12500,
    26
    "start": "2019-11-22T01:14:14Z",
    27
    "end": "2019-11-22T01:15:14Z",
    28
    "txs": 1819,
    29
    "blocks": 114,
    30
    "tps": 30,
    31
    "tpm": 1819,
    32
    "type": 1
    33
    },
    34
    {
    35
    "id": 12501,
    36
    "start": "2019-11-22T01:15:14Z",
    37
    "end": "2019-11-22T01:16:14Z",
    38
    "txs": 1779,
    39
    "blocks": 105,
    40
    "tps": 30,
    41
    "tpm": 1779,
    42
    "type": 1
    43
    }
    44
    ]
    45
    }

    Edited on: 13 July 2024 06:51:00 GMT+0