You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
caver.kas.kip37.mint POST /v1/contract/{contract-address-or-alias}/token/mint
caver.kas.kip37.transfer POST /v1/contract/{contract-address-or-alias}/token/transfer
caver.kas.kip37.getDeployer GET /v1/deployer/default
KAS KIP-37 API is available with caver.kas.kip37 by implementing caver.initKASAPI(chainId, accessKeyId, secretAccessKey) or caver.initKIP37API(chainId, accessKeyId, secretAccessKey [, url]). If query parameters are required when using the KIP-37 API, it can be used through KIP37QueryOptions class. For more scenarios in detail, refer to KAS Docs.
Supports new features in KAS KIP-7 API.
Function to deploy KIP-7 contracts with fee payer options. You can use fee payer options with Kip7FeePayerOptions class.
caver.kas.kip7.deploy POST /v1/contract
Function to update fee payer options of the KIP-7 contract with fee payer options. You can use fee payer options with Kip7FeePayerOptions class.
caver.kas.kip7.updateContractOptions PUT v1/contract/{contract-address-or-alias}
Function to pause/unpause the KIP-7 contract with a pauser.
caver.kas.kip7.pause POST /v1/contract/{contract-address-or-alias}/pause
caver.kas.kip7.unpause POST /v1/contract/{contract-address-or-alias}/unpause
Function to add/renounce pauser.
caver.kas.kip7.addPauser POST v1/contract/{contract-address-or-alias}/pauser
Function to deploy a KIP-17 contract with fee payer options. You can use fee payer options with Kip17FeePayerOptions class.
caver.kas.kip17.deploy POST /v1/contract
Function to update fee payer options of the KIP-17 contract with fee payer options. You can use fee payer options with Kip17FeePayerOptions class.
caver.kas.kip17.updateContractOptions PUT v1/contract/{contract-address-or-alias}
Supports new features in KAS Wallet API.
Function to create a fee payer account with the withoutAccountUpdate parameter. If you define withoutAccountUpdate as true, KAS will not update the fee payer account.
caver.kas.wallet.createFeePayer POST /v2/feepayer
Function to query a key list by KRN (KAS Resource Name).
caver.kas.wallet.getKeyListByKRN GET /v2/key
Function to get a fee delegated transaction list. This API works with the Cypress network only.
caver.kas.wallet.getFDTransactionList GET /v2/history/fd/tx
Function to get a fee delegated transaction by hash. This API works with the Cypress network only.
caver.kas.wallet.getFDTransaction GET /v2/history/fd/tx/{transaction-hash}