Smart accounts linked to EOAs as primary signers
Last updated 1 month ago
The EOA address to create smart accounts for
Smart accounts created successfully
const response = await fetch('/smart-account/create', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "eoaAddress": "text" }), }); const data = await response.json();
{ "username": "text", "wallet": { "type": "text", "scw_address": "text", "multi_scw": [ { "network": 1, "address": "text", "deployed": true } ], "eoa_address": "text" } }