Returns a list of all KIP-7 contracts deployed by the user in chronological order of contract creation request.
The status
field in the request has the following meanings:
init
: The initial state before sending the transaction
submitted
: After the contract deployment transaction has been sent
deployed
: The state in which the contract is deployed
Your request was successful.
Your request is not valid.
The credential you entered is invalid.
curl -i -X GET \ -u <username>:<password> \ 'https://kip7-api.klaytnapi.com/v1/contract?size=string&cursor=string&status=string' \ -H 'x-chain-id: string'
Your request was successful.
{- "items": [
- {
- "address": "0x0f73bb170deb398180f02e60d7ea154c270b8fb9",
- "alias": "mycontract",
- "decimals": 8,
- "name": "MyKIP7",
- "status": "deployed",
- "symbol": "MSK7",
- "totalSupply": "0x500",
- "options": {
- "enableGlobalFeePayer": true,
- "userFeePayer": {
- "krn": "krn:1001:wallet:88c1223c-66af-4122-9818-069b2e3c6b30:feepayer-pool:default",
- "address": "0xd6905b98E4Ba43a24E842d2b66c1410173791cab"
}
}
}
], - "cursor": "eyJjm...ZSJ9"
}