Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@actalink/snap
Advanced tools
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.
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 ERC20 tokens using your smart wallet. Steps to achieve this :-
Send ERC20 tokens using your smart wallet at requested intervals. Steps to achieve this :-
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>,
},
});
await window.ethereum.request({
method: 'wallet_invokeSnap',
params: {
snapId: "npm:@actalink/snap",
request: { method: 'snap.createAccount' },
},
}))
Here, the tokenAddress
is the address of the ERC20 toke smart contract, data
is the transaction data generated using contract.interface.encodeFunctionData
from ethersjs
.
await window.ethereum.request({
method: 'wallet_invokeSnap',
params: {
snapId: 'npm:@actalink/snap',
request: {
method: 'snap.transaction',
params: {
tokenAddress,
data,
},
},
},
});
Here, the tokenAddress
is the address of the ERC20 toke smart contract, scheduledData
is the transaction data generated using contract.interface.encodeFunctionData
from ethersjs
. 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: tokenAddress,
scheduledData: data,
minutes: intervalMinutes,
},
},
},
});
FAQs
Metamask Snap powered by in-house Acta SDK
We found that @actalink/snap demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.