CCC Docs
    Preparing search index...

    Type Alias SignerJsonRpcHandlerConfig

    type SignerJsonRpcHandlerConfig = {
        getSigner: () => Signer | undefined;
        getSignerMetadata?: () => Pick<SignerJsonRpcInfo, "name" | "icon">;
        connect: (networkId: string) => Promise<Signer>;
        confirmRequest: (request: SignerJsonRpcConfirmation) => Promise<boolean>;
    }
    Index
    getSigner: () => Signer | undefined
    getSignerMetadata?: () => Pick<SignerJsonRpcInfo, "name" | "icon">
    connect: (networkId: string) => Promise<Signer>

    Connects the requested network and returns its connected Signer.

    confirmRequest: (request: SignerJsonRpcConfirmation) => Promise<boolean>