@allbridge/bridge-core-sdk
    Preparing search index...

    Interface EssentialWeb3Transaction

    The EssentialWeb3Transaction interface provides the minimum set of Web3 Transaction returned by the SDK. It allows any web3-like provider to be used, as long as it matches the signature of these essential interface. This prevents tight coupling to a specific version of the web3 library.

    interface EssentialWeb3Transaction {
        data?: string;
        from?: string;
        to?: string;
        value?: string;
    }
    Index

    Properties

    Properties

    data?: string
    from?: string
    to?: string
    value?: string