- AutoReceiver
- Plasma
- Ledger
- Transfer
- Wallet
- Utilities
- Users
Get all unreceived account blocks by address
GET
/api/ledger/{address}/unreceived
Ledger
Requires User authorization policy
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
address
string
required
Query Params
pageIndex
integer <int32>
optional
Default:
0
pageSize
integer <int32>
optional
>= 1<= 50
Default:
50
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://walletapi.hypercore.one/api/ledger//unreceived'
Responses
🟢200Success
application/json
Body
list
array[object (JAccountBlock) {25}] | null
optional
version
integer <int64>
optional
chainIdentifier
integer <int64>
optional
blockType
integer <int64>
optional
hash
string | null
optional
previousHash
string | null
optional
height
integer <int64>
optional
momentumAcknowledged
optional
address
string | null
optional
toAddress
string | null
optional
amount
string | null
optional
tokenStandard
string | null
optional
fromBlockHash
string | null
optional
data
string | null
optional
fusedPlasma
integer <int64>
optional
difficulty
integer <int64>
optional
nonce
string | null
optional
publicKey
string | null
optional
signature
string | null
optional
descendantBlocks
array [anyOf] | null
optional
basePlasma
integer <int64>
optional
usedPlasma
integer <int64>
optional
changesHash
string | null
optional
token
optional
confirmationDetail
optional
pairedAccountBlock
optional
count
integer <int64>
optional
more
boolean
optional
Example
{
"list": [
{
"version": 0,
"chainIdentifier": 0,
"blockType": 0,
"hash": "string",
"previousHash": "string",
"height": 0,
"momentumAcknowledged": {
"hash": "string",
"height": 0
},
"address": "string",
"toAddress": "string",
"amount": "string",
"tokenStandard": "string",
"fromBlockHash": "string",
"data": "string",
"fusedPlasma": 0,
"difficulty": 0,
"nonce": "string",
"publicKey": "string",
"signature": "string",
"descendantBlocks": [
{}
],
"basePlasma": 0,
"usedPlasma": 0,
"changesHash": "string",
"token": {
"name": "string",
"symbol": "string",
"domain": "string",
"totalSupply": "string",
"decimals": 0,
"owner": "string",
"tokenStandard": "string",
"maxSupply": "string",
"isBurnable": true,
"isMintable": true,
"isUtility": true
},
"confirmationDetail": {
"numConfirmations": 0,
"momentumHeight": 0,
"momentumHash": "string",
"momentumTimestamp": 0
},
"pairedAccountBlock": {}
}
],
"count": 0,
"more": true
}
🟠400Bad Request
🟠401Unauthorized
Modified at 2024-05-14 10:01:56