βοΈmint
Last updated
npm install @nest25/evm-chains-lib
OR
yarn add @nest25/evm-chains-libconst { Nft } = require('@nest25/evm-chains-lib');
const nft = new Nft('testnet');
async function main() {
const result = await nft.estimateFee('eth', 'soulbound', 'mint', 1);
console.log("result", result);
}
main(); result {
code: 1,
result: 0.01619173481997752,
VLRYEstimate: 203.96749943112556,
USDEstimate: 30.595124914668833
}