UNPKG

@nomad-xyz/sdk-bridge

Version:
22 lines 891 B
import { TypedEvent } from '@nomad-xyz/contracts-core'; import { BigNumber } from 'ethers'; import { Annotated } from '@nomad-xyz/sdk'; export declare type SendTypes = [string, string, number, string, BigNumber]; export declare type SendArgs = { token: string; from: string; toDomain: number; toId: string; amount: BigNumber; }; export declare type SendEvent = TypedEvent<SendTypes & SendArgs>; export declare type TokenDeployedTypes = [number, string, string]; export declare type TokenDeployedArgs = { domain: number; id: string; representation: string; }; export declare type TokenDeployedEvent = TypedEvent<TokenDeployedTypes & TokenDeployedArgs>; export declare type AnnotatedSend = Annotated<SendTypes, SendEvent>; export declare type AnnotatedTokenDeployed = Annotated<TokenDeployedTypes, TokenDeployedEvent>; //# sourceMappingURL=bridgeEvents.d.ts.map