@graphprotocol/toolshed
Version:
A collection of tools and utilities for the Graph Protocol Typescript components
10 lines (7 loc) • 393 B
text/typescript
import { ethers } from 'ethers'
export const ZERO_ADDRESS = '0x0000000000000000000000000000000000000000'
export const ONE_THOUSAND = ethers.parseEther('1000')
export const TEN_THOUSAND = ethers.parseEther('10000')
export const ONE_HUNDRED_THOUSAND = ethers.parseEther('100000')
export const ONE_MILLION = ethers.parseEther('1000000')
export const TEN_MILLION = ethers.parseEther('10000000')