Type alias ClaimResult<T>

ClaimResult<T>: {
    authMethodType: AuthMethodType;
    derivedKeyId: string;
    pubkey: string;
    signatures: Signature[];
} & (T extends "relay" ? LitRelayConfig : {
    signer: Signer;
})

Result from network claim proccessing, used in MintCallback

Type Parameters

Generated using TypeDoc