Lit Protocol · Schema

NodeChainConfigResponse

Web3Key ManagementMPCProgrammable KeysLit Actions

Properties

Name Type Description
chain_name string
chain_id integer
is_evm boolean
testnet boolean
token string
contract_address string
View JSON Schema on GitHub

JSON Schema

lit-protocol-nodechainconfigresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NodeChainConfigResponse",
  "title": "NodeChainConfigResponse",
  "type": "object",
  "required": [
    "chain_id",
    "chain_name",
    "contract_address",
    "is_evm",
    "testnet",
    "token"
  ],
  "properties": {
    "chain_name": {
      "type": "string"
    },
    "chain_id": {
      "type": "integer",
      "format": "uint64",
      "minimum": 0.0
    },
    "is_evm": {
      "type": "boolean"
    },
    "testnet": {
      "type": "boolean"
    },
    "token": {
      "type": "string"
    },
    "contract_address": {
      "type": "string"
    }
  }
}