Skip to main content

Editing a Wallet

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))