-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a721f3d
commit fbb27d3
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
import { ethers } from 'ethers'; | ||
|
||
export const NATIVE_TOKEN = '0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE'; | ||
export const ZERO_ADDRESS = '0x0000000000000000000000000000000000000000'; | ||
export const ZERO_BYTES32 = '0x0000000000000000000000000000000000000000000000000000000000000000'; | ||
// FIXME[Silas]: decide what to do with this (config/state/drop) | ||
export const IPFS_GATEWAY_PREFIX = 'https://ipfs.aspenft.io/ipfs/'; | ||
|
||
export const OperatorFilterers = { | ||
noOperator: ethers.utils.solidityKeccak256(['string'], ['NO_OPERATOR']), | ||
openSea: ethers.utils.solidityKeccak256(['string'], ['OPEN_SEA']), | ||
blur: ethers.utils.solidityKeccak256(['string'], ['BLUR']), | ||
}; |