authenticate
Parameters
1. payload (required)
type AuthenticationChallengePayload = {
action: "Authentication";
grant_type: "Signature";
allowed_algorithms: ["ECDSA-P256"];
domain: string;
networks: Network[];
nonce: string;
timestamp: number;
};Returns
type AuthenticationResponsePayload = {
algorithm: "ECDSA-P256";
network: Network;
pubkey: ECPoint;
address: Address;
nonce: string;
timestamp: number;
signature: Base64Encoded;
};Errors
Code
Name
Description
Example
Request
Response
最后更新于