onesec-bridge
Version:
A library for interacting with the onesec.to bridge
15 lines (14 loc) • 667 B
TypeScript
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>;
}