Create Wallet
POST /wallets
Creates new Wallet
associated with the given chain (such as Ethereum or Polygon
). Returns a new wallet entity.
User action signature required. See User Action Signing for more information.
Request headers required. See Request Headers for more information.
Authentication required. See Authentication Headers for more information.
Required Permissions
Name | Conditions |
---|---|
| Always Required |
| only required if |
Request
Property | Type - Optional | Description |
---|---|---|
| String | Network used for the wallet (See Supported Networks + Pseudo Network for possible values) |
| String - Optional | Name given to the wallet |
| String List - Optional | List of tags to be created for this wallet. If specified, requires the |
| Boolean - Optional | Specify this if you want to create the wallet from a service account and later delegate it to an end user. Defaults to |
| String - Optional | ID of the end-user you wish to delegate this wallet to. This End User will then own this wallet, and the wallet will only be able to be used with an End-User's signature. |
Example
Response
The response body is the created Wallet. The Wallet object has those fields:
id
- string - ID of the walletnetwork
- string - Network used for the wallet (See Supported Networks for possible values)name
- (Optional) string - Name given to the walletaddress
- (Optional) string - Wallet address on its corresponding network. If using a Pseudo Network, this field will not be set.status
- string - Status of the wallet, can be one ofActive
,Archived
.signingKey
- object - Info about the signing key corresponding to that walletscheme
- string - Supported schemes areECDSA
orEdDSA
curve
- string - Key curve. Can beed25519
orsecp256k1
publicKey
- string - Hex-encoded value of public key
dateCreated
- string - ISO 8601 date string when wallet was createdimported
- (Optional) boolean - istrue
if the wallet is an imported wallet.exported
- (Optional) boolean - istrue
if the wallet was already exported at least once.dateExported
- (Optional) string - ISO 8601 date string when wallet was first exported.tags
- (Optional) string list - List of tags on that walletcustodial
- Boolean - Specifies whether the wallet is onwed by and EndUser (non-custodial), or by your organisation (custodial)
200 Response example
Last updated