Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@vires.finance/dapp
Advanced tools
chainId parameter is now mandatory
loginWithKeeper({ chainId: 'R' })
import { loginWithKeeper, dappWrite } from '@vires.finance/dapp'
import config from './config.json'
const loginWithKeeperAndDeposit = async () => {
const { address, keeper } = await loginWithKeeper({ chainId: 'R' })
const { deposit } = dappWrite(config, keeper)
const assetId = 'WAVES'
const resultFromKeeper = await deposit({ assetId, paymentAmount: 100000000, useAsCollateral: true })
}
type DappWrite = {
deposit: ({ assetId, paymentAmount, useAsCollateral }: depositParams) => Promise<string>
depositEarlyBirdRefBonus: ({ assetId, paymentAmount, useAsCollateral, ref }) => Promise<string>
withdraw: ({ assetId, amount }: withdrawParams) => Promise<string>
borrow: ({ assetId, amount }: borrowParams) => Promise<string>
repay: ({ assetId, paymentAmount }: repayParams) => Promise<string>
redeemAtokens: ({ assetId, aTokensAmount }: redeemAtokensParams) => Promise<string>;
replenishWithAtoken: ({ assetId, aTokensAmount }: replenishWithAtokenParams) => Promise<string>
collapseDebt: ({ assetId, amount }: collapseDebtParams) => Promise<string>
mintAtoken: ({ assetId, aTokensAmount }: replenishWithAtokenParams) => Promise<string>
enableUseAsCollateral: ({ assetId }: AssetIdParam) => Promise<string>
disableUseAsCollateral: ({ assetId }: AssetIdParam) => Promise<string>
}
import { dappRead } from '@vires.finance/dapp'
import config from './config.json'
const readDAppState = async () => {
const { getConfig, getState, getUserState } = dappRead(config)
//all reserves configs map (assetId => Config)
const reservesConfigs = await getConfig()
//all reserves states map (assetId => ReserveState)
const reservesStates = await getState()
//get state for particular reserves (assetId => ReserveState)
const wavesState = await getState(['WAVES'])
//user reserve state map (assetId => UserState)
const userState = await getUserState('3MJtoDCxYdW69Scpp4qDvM2kVkhvcuRXgFS')
//user state for particular reserves
const userStateWavesReserve = await getUserState('3MJtoDCxYdW69Scpp4qDvM2kVkhvcuRXgFS', ['WAVES'])
}
type Config = {
ABCD: string[]
reserveFactor: string
collateralFactor: string
}
type ReserveState = {
id: string
currentTotalDeposit: string
storedTotalDeposit: string
currentTotalDebt: string
storedTotalDebt: string
currentTotalReserve: string
storedTotalReserve: string
currentIndex: string
storedIndex: string
lastUpdateHeight: string
utilization: string
aTokenCirculation: string
aTokenPrice: string
}
type UserState = {
id: string
currentDebt: string
storedDebt: string
currentDeposit: string
aTokenContractBalance: string
aTokenWalletBalance: string
walletStake: string
assetWalletBalance: string
useAsCollateral: boolean
storedIndex: string
}
import { loginWithKeeper, keeperErrors, dappWrite, dappRead } from '@vires.finance/dapp'
function loginWithKeeperAndDeposit() {
const assetId = 'WAVES'
const paymentAmount = 100000000 // 1 waves
loginWithKeeper({ chainId: 'R' }).then(({ address, keeper }) => {
const { deposit } = dappWrite(config, keeper)
return deposit({
assetId,
paymentAmount,
useAsCollateral: true,
}).then(x => {
console.log(x)
})
}).catch(e => {
if (e === keeperErrors.wrongNetwork) {
console.log("Oops wrong network")
}
if (e === keeperErrors.rejectedByUser) {
console.log("User rejected")
}
if (e === keeperErrors.noKeeper) {
console.log("Please install keeper")
}
//handle deposit errors
})
}
import { keeperPromise } from '@vires.finance/dapp'
const keeper: WavesKeeper.API | undefined = await keeperPromise
if(keeper) {
//do something
}
import { dappWrite, loginWithKeeper } from '@vires.finance/dapp'
const loginWithKeeperAndcollapseDebt = async () => {
const { keeper } = await loginWithKeeper({ chainId: 'R' })
const { collapseDebt } = dappWrite(config, keeper)
return collapseDebt({ assetId: 'WAVES', amount: 1000 })
}
import { onKeeperUserChanged, onKeeperLockedChanged, onKeeperNetworkChanged } from '@vires.finance/dapp'
onKeeperUserChanged(x => {
console.log(x) // { oldUser: undefined, newUser: "3MMrvig4ecUF2w4ts7hVpYb65LDdbge5YBH" }
})
onKeeperNetworkChanged(x => {
console.log(x) // { network: undefined | 'W' | 'R' }
})
onKeeperLockedChanged(x => {
console.log(x) // { locked: undefined | true | false }
})
import { loginWithKeeper, loginWithSigner, signCustomData } from '@vires.finance/dapp'
const loginWithKeeperAndSignCustomData = async () => {
const { keeper } = await loginWithKeeper({ chainId: 'R' })
const result = await signCustomData(keeper, 'someBytes')
console.log(result)
}
const loginWithSignerAndSignCustomData = async () => {
const { signer } = await loginWithSigner('email')
const result = await signCustomData(signer, 'someBytes')
console.log(result)
}
import { loginWithKeeper, broadcastTransfer } from '@vires.finance/dapp'
const loginWithKeeperAndTransfer1Waves = async () => {
const { keeper } = await loginWithKeeper({ chainId: 'R' })
const result = await broadcastTransfer(config, keeper, {
amount: 1 * 10 ** 8, //1 waves
assetId: 'WAVES',
recipient: 'address',
fee: 100000,
})
console.log(result)
}
FAQs
vires.finance smart contract interactions
We found that @vires.finance/dapp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.