Skip to main content
GET
/
tokenization
/
multichain
/
bridge
/
layerzero
/
validate
TypeScript
const response: Promise<FireblocksResponse<ValidateLayerZeroChannelResponse>> = fireblocks.tokenization.validateLayerZeroChannelConfig(tokenizationApiValidateLayerZeroChannelConfigRequest);
{
  "correct": true,
  "errors": [
    "Adapter not found",
    "Adapter missing role",
    "Adapter is not a peer"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

The token link ID of the adapter

Peer adapter token link ID to validate against

Response

LayerZero channel configuration validation completed

correct
boolean
required

Indicates whether the LayerZero channel configuration is valid.

Example:

true

errors
string[]
required

List of errors found during validation. An empty array indicates no errors.

Example:
[
  "Adapter not found",
  "Adapter missing role",
  "Adapter is not a peer"
]