Type Alias: PKCERequest
PKCERequest: {
address
:string
;chain
:Chain
|ChainId
;client_id
:string
;code_challenge
:string
;code_challenge_method
:"S256"
;redirect_uri
:string
;response_type
:"code"
;scope
:string
;signature
:string
;skip_create_account
:boolean
;skip_kyc
:boolean
;state
:string
; }
Type declaration
Name | Type | Description | Defined in |
---|---|---|---|
address | string | the address of the wallet to automatically link | types.ts:119 |
chain | Chain | ChainId | The network of the wallet to automatically link | types.ts:123 |
client_id | string | the authentication flow client id of the application | types.ts:105 |
code_challenge | string | the code challenge automatically generated by the SDK | types.ts:107 |
code_challenge_method | "S256" | the code challenge method for the authentication flow , handled by the SDK | types.ts:109 |
redirect_uri | string | the redirect uri of the application | types.ts:115 |
response_type | "code" | the response type of the authentication flow, handled by the SDK | types.ts:111 |
scope | string | the scope of the application | types.ts:117 |
signature | string | the signature of the wallet to automatically link | types.ts:121 |
skip_create_account | boolean | You can skip the connect wallet and request IBAN steps in the Authorization Flow and use the Link Address and Request IBAN API endpoints after you have gotten the authorization | types.ts:125 |
skip_kyc | boolean | You can skip the KYC onboarding steps in the Authorization Flow and use the the details, additional data, and verifications API endpoints after you have gotten the authorization. | types.ts:127 |
state | string | the state of the application | types.ts:113 |