Comment on page
Wallet
Returns a list of creations per day for the last 15 days.
None
Name | Type | Description |
---|---|---|
totalCount | Long | Count transaction for the last 15 days. |
list | count of per day data | |
Name | Type | Description |
---|---|---|
date | String | Date. ex) "1116" |
count | Long | count of day |
{
"jsonrpc": "2.0",
"id": "00456",
"result": {
"resultCode": "200",
"resultMessage": "Success",
"resultData": {
"totalCount": 14,
"list": [
{
"date": "1116",
"count": 0
},
...
{
"date": "1130",
"count": 0
}
]
}
}
}
Returns the wallet information list in units of pages.
Name | Type | Description |
---|---|---|
pageNumber | Long | Page number to get. start from 1. |
pageSize | Integer | Number per page. |
order | Integer | 0 : Order of descending, 1 : Order of ascending |
Name | Type | Description |
---|---|---|
pageNumber | Long | |
pageSize | Integer | |
totalPages | Long | |
totalElements | Long | |
list | list of token info | |
{
"jsonrpc": "2.0",
"id": "00456",
"result": {
"pageNumber": 1,
"pageSize": 10,
"totalPages": 6,
"totalElements": 54,
"list": [
{
"address": "0xa3966d8780e65381863bc947b0042367540846aa",
"addInfo": "Test"
},
...
]
}
}
Last modified 1yr ago