onesec-bridge
Version:
A library for interacting with the onesec.to bridge
12 lines (11 loc) • 513 B
TypeScript
import type { Deployment, OneSecForwarding } from "./types";
export type { OneSecForwarding } from "./types";
/**
* Constructs an instance of `OneSecForwarding` for bridging tokens from EVM
* chains to ICP using forwarding addresses.
*
* A forwarding address is an EVM address that is derived from an ICP address.
* Tokens transferred to the forwarding address on EVM are bridged to the
* corresponding ICP address on ICP.
*/
export declare function oneSecForwarding(setup?: Deployment): OneSecForwarding;