Access Accounts in Near
Current Account ID
// For version 1.11.7 and below
const accountId = window.near.getAccountId();
// For version 2.0.0 and above
const accountId = window.sender.near.getAccountId();Use Account Instance in Near Chain
const account = window.near.account();
await account.sendMoney(
"receiver-account.testnet", // receiver account
"1000000000000000000000000" // amount in yoctoNEAR
);Last updated