
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@mayanfinance/swap-sdk
Advanced tools
A minimal package for sending cross-chain swap transactions
npm install --save @mayanfinance/swap-sdk
Import the necessary functions and models:
import { fetchQuote, swapFromEvm, swapFromSolana, Quote } from '@mayanfinance/swap-sdk'
Then we will need to get a quote:
const quote = await fetchQuote({
amountIn: 250,
fromToken: fromToken.contract,
toToken: toToken.contract,
fromChain: "bsc",
toChain: "solana",
slippage: 3,
withReferrer: false,
});
You can get the list of available tokens using Tokens API
If you want to receive referrer fee, set "withReferrer" param to "true".
Slippage is in percentage, so 3 means "up to three percent slippage".
After we get the quote we can send the swap transaction:
swapTrx = await swapFromSolana(quote, originWalletAddress, destinationWalletAddress, deadlineInSeconds, referrerAddress, signSolanaTransaction, solanaConnection)
swapTrx = await swapFromEvm(quote, destinationWalletAddress, deadlineInSeconds, referrerAddress, provider, signer)
"referrerAddress" should be a Solana wallet address. If you don't want to get referrer fee from users, you could set "referrerAddress" to "11111111111111111111111111111111"
To track the progress of a swap, we can use Mayan Explorer API
FAQs
A SDK to swap with Mayan
We found that @mayanfinance/swap-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.