@kaiachain/kss-bridges-celer
Version:
TypeScript client and use-cases for cBridge
5 lines (4 loc) • 440 B
TypeScript
import { ITransferObject } from "../constants/type";
import { EstimateAmtRequest } from "../ts-proto/gateway/gateway_pb";
import { Contract, ContractTransaction } from "ethers";
export declare const poolBasedTransfer: (bridge: Contract, rpc: string, addr: string, estimateRequest: EstimateAmtRequest, transferObject: ITransferObject, srcChainRPC: string, privateKey: string, isNative?: boolean) => Promise<ContractTransaction | undefined>;