![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@bifrost-finance/slpx
Advanced tools
SLPx offers ways to stake and unstake vToken assets.
npm install @bifrost-finance/slpx
First, import the necessary modules and instantiate the SLPx
class:
import { usePublicClient, useWalletClient } from 'wagmi';
import SLPx from '@bifrost-finance/slpx';
// in React component
const publicClient = usePublicClient();
const { data: walletClient } = useWalletClient();
const slpx = new SLPx(publicClient, walletClient, channel);
import { useContractReads, erc20ABI, useAccount } from 'wagmi';
const { address } = useAccount()
const vToken = 'vBNC'; // vGLMR, vFIL, vDOT, vMOVR, vBNC, vKSM, vASTR, vETH
const amount = 1.0;
const token = vToken?.replace(/^v/, '').toUpperCase();
// Query allowance
const { data, refetch } = useContractReads(
{
contracts: [
{
address: slpx.getContractAddressByToken(token),
abi: erc20ABI,
functionName: 'allowance',
args: [address, slpx.getContractAddressByToken('SLPx')]
}
]
}
)
// Approving a Stake
slpx.approveStake(vToken, amount)
.then(txHash => console.log(`Transaction hash: ${txHash}`))
.catch(error => console.error(`Error approving stake: ${error}`));
// Get the minimum amount to stake
const minStake = slpx.getMinStake(vToken)
// Staking an Asset
slpx.stakeAsset(vToken, amount)
.then(txHash => console.log(`Transaction hash: ${txHash}`))
.catch(error => console.error(`Error staking asset: ${error}`));
import { useContractReads, erc20ABI, useAccount } from 'wagmi';
const { address } = useAccount();
const vToken = 'vBNC'; // vGLMR, vFIL, vDOT, vMOVR, vBNC, vKSM, vASTR, vETH
const amount = 1.0;
// Query allowance
const { data, refetch } = useContractReads(
{
contracts: [
{
address: slpx.getContractAddressByToken(vToken),
abi: erc20ABI,
functionName: 'allowance',
args: [address, slpx.getContractAddressByToken('SLPx')]
}
]
}
)
// Approving a Unstake
slpx.approveUnstake(vToken, amount)
.then(txHash => console.log(`Transaction hash: ${txHash}`))
.catch(error => console.error(`Error approving stake: ${error}`));
// Get the minimum amount to unstake
const minStake = slpx.getMinUnstake(vToken)
// Unstaking an Asset
slpx.unstakeAsset(vToken, amount)
.then(txHash => console.log(`Transaction hash: ${txHash}`))
.catch(error => console.error(`Error staking asset: ${error}`));
After the completion of vETH Unstaking, the dedicated interface for claiming
// Get claim info (currently only supports vETH)
slpx.getClaimInfo('vETH')
.then(info => console.log(`Claim info: ${JSON.stringify(info)}`))
.catch(error => console.error(`Error getting claim info: ${error}`));
// To claim info (currently only supports vETH)
slpx.toClaim('vETH')
.then(info => console.log(`Claim info: ${JSON.stringify(info)}`))
.catch(error => console.error(`Error getting claim info: ${error}`));
FAQs
SLPx offers ways to stake and unstake vToken assets.
We found that @bifrost-finance/slpx demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.