Interface TransferResult

Result of a high-level transfer operation

interface TransferResult {
    route: {
        from: "dymension" | "ethereum" | "base" | "bsc" | "solana" | "kaspa";
        to: "dymension" | "ethereum" | "base" | "bsc" | "solana" | "kaspa";
        via: "hub" | "direct";
    };
    tx: unknown;
    type: "solana"
    | "evm"
    | "cosmos";
}

Properties

Properties

route: {
    from: "dymension" | "ethereum" | "base" | "bsc" | "solana" | "kaspa";
    to: "dymension" | "ethereum" | "base" | "bsc" | "solana" | "kaspa";
    via: "hub" | "direct";
}

Route description

tx: unknown

The unsigned transaction, type depends on 'type' field

type: "solana" | "evm" | "cosmos"

Type of transaction returned