βοΈdeploy
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', 'deploy', 1);
console.log("result", result);
}
main(); result {
code: 1,
result: 0.3385880027271927,
VLRYEstimate: 4265.197585155393,
USDEstimate: 639.779637773309
}