IThirdwebWallet.Authenticate
Login to your thirdweb Auth-integrated backend.
var authResult = await wallet.Authenticate(domain: "https://mydomain.com", chainId: 1);
The domain of the backend to authenticate with, must be a string
.
The chain ID of the blockchain to authenticate with, must be a BigInteger
.
The path to the auth payload endpoint, defaults to "/auth/payload"
, must be a string
.
The path to the auth login endpoint, defaults to "/auth/login"
, must be a string
.
The HttpClient
to use for the request, defaults to null
.