지갑

getWalletCount

지난 15일 동안의 일별 생성 목록을 반환합니다.

Parameters

None

Return Value

NameTypeDescription

totalCount

Long

지난 15일 동안의 지갑갯수

list

count of per day data

count of per day data

NameTypeDescription

date

String

날짜. 예) "1116"

count

Long

갯수

Example

{
    "jsonrpc": "2.0",
    "id": "00456",
    "result": {
        "resultCode": "200",
        "resultMessage": "Success",
        "resultData": {
            "totalCount": 14,
            "list": [
                {
                    "date": "1116",
                    "count": 0
                },
                ...
                {
                    "date": "1130",
                    "count": 0
                }
            ]
        }
    }                      
}

getWalletList

지갑 정보 목록을 페이지 단위로 반환합니다.

Parameters

NameTypeDescription

pageNumber

Long

가져올 페이지 번호.

1부터 시작

pageSize

Integer

페이지당 가져올 갯수

order

Integer

0 : 내림차순, 1 : 오름차순

Return Value

NameTypeDescription

pageNumber

Long

pageSize

Integer

totalPages

Long

totalElements

Long

list

list of token info

Example

{
    "jsonrpc": "2.0",
    "id": "00456",
    "result": {
        "pageNumber": 1,
        "pageSize": 10,
        "totalPages": 6,
        "totalElements": 54,
        "list": [
            {
                "address": "0xa3966d8780e65381863bc947b0042367540846aa",
                "addInfo": "Test"
            },
            ...
        ]
    }                      
}

Last updated