@vechain.energy/gas
Version:
calculate estimated gas usage for transactions
10 lines (9 loc) • 415 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NON_ZERO_BYTES_GAS = exports.ZERO_BYTES_GAS = exports.CLAUSE_GAS_CONTRACT_CREATION = exports.CLAUSE_GAS = exports.VM_GAS = exports.TX_GAS = void 0;
exports.TX_GAS = 5000;
exports.VM_GAS = 15000;
exports.CLAUSE_GAS = 16000;
exports.CLAUSE_GAS_CONTRACT_CREATION = 48000;
exports.ZERO_BYTES_GAS = 4;
exports.NON_ZERO_BYTES_GAS = 68;