interface ICreateNcwConnectionRequest {
    chainIds?: string[];
    feeLevel: CreateNcwConnectionRequestFeeLevelEnum;
    ncwAccountId: number;
    uri: string;
}

Hierarchy

  • Omit<CreateNcwConnectionRequest, "ncwId">
    • ICreateNcwConnectionRequest

Properties

chainIds?: string[]

The IDs of the blockchain networks used in the Web3 connection (Currently required in V1 connections only).

CreateNcwConnectionRequest

feeLevel: CreateNcwConnectionRequestFeeLevelEnum

The default fee level. Valid values are MEDIUM and HIGH.

CreateNcwConnectionRequest

ncwAccountId: number

The NCW account ID to connect to the dApp.

CreateNcwConnectionRequest

uri: string

The WalletConnect uri provided by the dapp.

CreateNcwConnectionRequest