@iexec/web3mail
Version:
This product enables users to confidentially store data–such as mail address, documents, personal information ...
22 lines (21 loc) • 820 B
TypeScript
export declare const MAX_DESIRED_DATA_ORDER_PRICE = 0;
export declare const MAX_DESIRED_APP_ORDER_PRICE = 0;
export declare const MAX_DESIRED_WORKERPOOL_ORDER_PRICE = 0;
export declare const DEFAULT_CONTENT_TYPE = "text/plain";
export declare const ANY_DATASET_ADDRESS = "any";
export declare const CALLBACK_WEB3MAIL = "0x5f936db7ad6d29371808e42a87015595d90509ba";
export declare const DEFAULT_CHAIN_ID = 134;
interface ChainConfig {
name: string;
dappAddress?: string;
prodWorkerpoolAddress: string;
dataProtectorSubgraph: string;
ipfsUploadUrl: string;
ipfsGateway: string;
whitelistSmartContract: string;
isExperimental?: boolean;
}
export declare const getChainDefaultConfig: (chainId: number, options?: {
allowExperimentalNetworks?: boolean;
}) => ChainConfig | null;
export {};