Get backup info
get wallet dump
Set backup info
Information for saving backup
success
const response = await fetch('https://ton-open-api.nownodes.io/v2/wallet/backup', { method: 'GET', headers: { "X-TonConnect-Auth": "text" }, }); const data = await response.json();
{ "dump": "text" }
const response = await fetch('https://ton-open-api.nownodes.io/v2/wallet/backup', { method: 'PUT', headers: { "X-TonConnect-Auth": "text", "Content-Type": "application/octet-stream" }, body: JSON.stringify("binary"), }); const data = await response.json();
{ "error": "text" }