UNPKG

@alexkeating/common-utilities

Version:

Our **Common Utilities** package is a set of helper tools and utilities that are used throughout our libraries and apps. This includes things like our constants, types that are commonly shared across packages, and various utilities and helper functions.

12 lines (11 loc) 494 B
import { ValidNetwork } from '..'; export declare type ContractKey = 'V3_FACTORY' | 'LOOT_SINGLETON' | 'SHARES_SINGLETON' | 'BAAL_SINGLETON' | 'GNOSIS_MULTISEND' | 'TRIBUTE_MINION' | 'POSTER'; export declare type AddressKeyChain = { [key in ValidNetwork]?: string; }; export declare type ContractAddressList = Record<ContractKey, AddressKeyChain>; export declare const CONTRACTS: ContractAddressList; export declare const SHAMAN_PERMISSIONS: { id: string; displayName: string; }[];