Lit Protocol · Schema

WalletItem

One item from list_groups, list_wallets, list_wallets_in_group, or list_actions (AccountConfig.sol Metadata).

Web3Key ManagementMPCProgrammable KeysLit Actions

Properties

Name Type Description
id string
name string
description string
wallet_address string
View JSON Schema on GitHub

JSON Schema

lit-protocol-walletitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WalletItem",
  "title": "WalletItem",
  "description": "One item from list_groups, list_wallets, list_wallets_in_group, or list_actions (AccountConfig.sol Metadata).",
  "type": "object",
  "required": [
    "description",
    "id",
    "name",
    "wallet_address"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "wallet_address": {
      "type": "string"
    }
  }
}