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