getTypedDataById

connectClient.evm.getTypedDataById(params) ⇒

Fetch an initiated EVM typed data (EIP-712) by its ID. Poll this to check status and get the signature when complete.

Kind: instance method of ConnectClient Returns: Promise with the signed typed data response Throws:

  • ArmorySdkException If there's an error retrieving the signed typed data

Param
Description

params

Parameters for retrieving the signed typed data

params.id

Unique identifier of the signed typed data

params.connectionId

Unique identifier of the provider connection

params.accessToken

Optional access token for authentication

Example

const signedTypedData = await connectClient.evm.getTypedDataById({
  id: "typeddata-123",
  connectionId: "conn-456"
});

Last updated