βοΈ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', 'erc721', 'mint', 1);
console.log("result", result);
}
main(); result {
code: 1,
result: 0.017027652251499114,
VLRYEstimate: 214.49756246229526,
USDEstimate: 32.17463436934429
}