Type alias BridgeConfigParam

BridgeConfigParam: {
    bridgeAddress: string;
    confirmations?: number;
    domainId: string;
    erc20HandlerAddress: string;
    erc721HandlerAddress: string;
    tokens: TokenConfig[];
}

The config of the bridge

Type declaration

  • bridgeAddress: string

    The address of the bridge contract.

  • Optional confirmations?: number

    The optional number of confirmations

  • domainId: string

    The domainId is an identifier of bridge in Sygma ecosystem.

  • erc20HandlerAddress: string

    The address of the ERC20 handler contract.

  • erc721HandlerAddress: string

    The address of the ERC721 handler contract.

  • tokens: TokenConfig[]

    An array of token configurations.

Generated using TypeDoc