Acta Snap
Welcome to the MetaMask Snap integration for Acta SDK. This Snap empowers users to harness the full potential of their smart wallet payments by seamlessly integrating the Acta SDK into the MetaMask extension.
⚡️ Features
🚀 Smart Wallet Creation
Utilize Acta Snap to effortlessly create and load smart wallets into MetaMask Keyring API, seamlessly integrating them as regular MetaMask accounts labeled with Snaps Beta. These off-chain smart wallets incur no gas fees during creation, transitioning to on-chain upon the completion of the first transaction. Enjoy a streamlined and cost-effective onboarding experience with Acta Snap.
🤑 Send Payments via Smart Wallet
Send ERC20 tokens using your smart wallet. Steps to achieve this :-
- Give allowance to the smart wallet address generated
- Connect your wallet
- Sign the message
⏰ Send Reccuring Payments via Smart Wallet
Work in progress.
📕 Documentation - @actalink/snap
⬇️ Installing the snap
To install the snap, you need to attach the follwing code to the button
await window.ethereum.request({
method: 'wallet_requestSnaps',
params: {
[npm:@actalink/snap]: <version number>,
},
});
🌎 Create Smart Wallet
await window.ethereum.request({
method: 'wallet_invokeSnap',
params: {
snapId: "npm:@actalink/snap",
request: { method: 'snap.createAccount' },
},
}))
💸 Send Erc20 Token
Here, the tokenAddress
is the address of the ERC20 toke smart contract, tokenAmount
is the amount you want to transfer, and to
is the reciever's address.
await window.ethereum.request({
method: 'wallet_invokeSnap',
params: {
snapId: 'npm:@actalink/snap',
request: {
method: 'snap.transaction',
params: {
to: targetAddress,
tokenAmount,
tokenAddress,
},
},
},
});
🕰️ Scheduled Transaction
Here, the scheduledTokenAddress
is the address of the ERC20 toke smart contract, scheduledTokenAmount
is the amount you want to transfer, and scheduledTo
is the reciever's address. The minutes
filed here is a comma-seperated uints
for specific intervals, eg. - [3,2,1]
will execute the first tx after 3 mins from now, and then 2 minutes from then after 1 minute.
await window.ethereum.request({
method: 'wallet_invokeSnap',
params: {
snapId: defaultSnapOrigin,
request: {
method: 'snap.scheduledOp',
params: {
scheduledTo: targetAddress,
scheduledTokenAmount: tokenAmount,
scheduledTokenAddress: tokenAddress,
minutes: intervalMinutes,
},
},
},
});
Authors