Type alias PKCERequest

PKCERequest: {
    address?: string;
    chain?: Chain;
    chainId?: ChainId | number;
    client_id: string;
    code_challenge: string;
    code_challenge_method: "S256";
    network?: Network;
    redirect_uri: string;
    response_type: "code";
    scope?: string;
    signature?: string;
    state?: string;
}

Type declaration

  • Optional address?: string

    the address of the wallet to automatically link

  • Optional chain?: Chain

    Deprecated

    • Use chainId - the chain of the wallet to automatically link
  • Optional chainId?: ChainId | number

    The network of the wallet to automatically link

  • client_id: string

    the authentication flow client id of the application

  • code_challenge: string

    the code challenge automatically generated by the SDK

  • code_challenge_method: "S256"

    the code challenge method for the authentication flow , handled by the SDK

  • Optional network?: Network

    Deprecated

    • Use chainId - the network of the wallet to automatically link
  • redirect_uri: string

    the redirect uri of the application

  • response_type: "code"

    the response type of the authentication flow, handled by the SDK

  • Optional scope?: string

    the scope of the application

  • Optional signature?: string

    the signature of the wallet to automatically link

  • Optional state?: string

    the state of the application

Generated using TypeDoc