UNPKG

onesec-bridge

Version:
15 lines (14 loc) 667 B
import { About, EvmChain, IcrcAccount, OneSecForwarding, StepStatus, Token } from '../../../types'; import { BaseStep } from '../../baseStep'; import { ComputeForwardingAddressStep } from './computeForwardingAddressStep'; export declare class NotifyForwardingPaymentStep extends BaseStep { private onesec; private token; private evmChain; private icpAccount; private computeForwardingAddressStep; constructor(onesec: OneSecForwarding, token: Token, evmChain: EvmChain, icpAccount: IcrcAccount, computeForwardingAddressStep: ComputeForwardingAddressStep); about(): About; expectedDurationMs(): number; run(): Promise<StepStatus>; }