Editing a Wallet
- From Code
- From Webapp
You can edit a the name or description of your wallet.
const axios = require("axios")
const startonAPI = axios.create({
baseURL: "https://api.starton.com",
headers: {
"x-api-key": "YOUR_API_KEY",
},
})
startonAPI
.patch("/v3/kms/wallet/0x694F07CEEc0869aa0dB5E8157FA538268F28B23f", {
name: "My wallet name",
description: "New wallet description",
})
.then((res) => console.log(res.data))
.catch((e) => console.log(e))
You can edit a the name or description of your wallet.
- Click ....
- Click Edit.
- Change your wallet name or description.
- Click Save.
Your wallet has been edited.