ca-sdk - v1.0.1
    Preparing search index...

    Type Alias Intent

    type Intent = {
        destination: {
            amount: string;
            chainID: number;
            chainLogo: string | undefined;
            chainName: string;
        };
        fees: {
            caGas: string;
            gasSupplied: string;
            protocol: string;
            solver: string;
            total: string;
        };
        sources: {
            amount: string;
            chainID: number;
            chainLogo: string
            | undefined;
            chainName: string;
            contractAddress: `0x${string}`;
        }[];
        sourcesTotal: string;
        token: {
            decimals: number;
            logo: string
            | undefined;
            name: string;
            symbol: string;
        };
    }
    Index

    Properties

    destination: {
        amount: string;
        chainID: number;
        chainLogo: string | undefined;
        chainName: string;
    }
    fees: {
        caGas: string;
        gasSupplied: string;
        protocol: string;
        solver: string;
        total: string;
    }
    sources: {
        amount: string;
        chainID: number;
        chainLogo: string | undefined;
        chainName: string;
        contractAddress: `0x${string}`;
    }[]
    sourcesTotal: string
    token: {
        decimals: number;
        logo: string | undefined;
        name: string;
        symbol: string;
    }