Create Wallet

On Krypcore, creating your smart contract wallet is simple establish your wallet, configure security choices to tailor access, and enable smart features for smooth, decentralised control over your assets and transactions.

This creates a wallet using this method.

API Specification

Create Wallet

POST https://web3-proxy-dev.krypcore.com/api/v0/scWallet/createWallet

Creates a new wallet under the given instance.

Headers

NameTypeDescription

Authorization*

String

User Auth Key obtained

DappId*

String

DappId

Request Body

NameTypeDescription

walletName*

String

Wallet Name

owner*

String

Owner Address

{
    "Data": {
        "address": "******",
        "walletId": "*****"
    },
    "Message": "wallet added successfully",
    "Status": "SUCCESS"
}

Take a look at how you might call this method using our official libraries, or via curl:


curl --location 'https://web3-proxy-dev.krypcore.com/api/v0/scWallet/createWallet' \
--header 'DappId: *****' \
--header 'Authorization: *****' \
--header 'Content-Type: application/json' \
--data '{"walletName":"ak10","owner":"0x39C1a4d1ff3cb5Ddf491db05E6d3a4DA61eD5b5f"}'

Last updated