@graphprotocol/toolshed
Version:
A collection of tools and utilities for the Graph Protocol Typescript components
11 lines • 682 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TEN_MILLION = exports.ONE_MILLION = exports.ONE_HUNDRED_THOUSAND = exports.TEN_THOUSAND = exports.ONE_THOUSAND = exports.ZERO_ADDRESS = void 0;
const ethers_1 = require("ethers");
exports.ZERO_ADDRESS = '0x0000000000000000000000000000000000000000';
exports.ONE_THOUSAND = ethers_1.ethers.parseEther('1000');
exports.TEN_THOUSAND = ethers_1.ethers.parseEther('10000');
exports.ONE_HUNDRED_THOUSAND = ethers_1.ethers.parseEther('100000');
exports.ONE_MILLION = ethers_1.ethers.parseEther('1000000');
exports.TEN_MILLION = ethers_1.ethers.parseEther('10000000');
//# sourceMappingURL=constants.js.map