Fetcch
  • 🟠What is Fetcch?
  • 🚅Pull Payments Layer
    • 🔭Overview
    • ❓How it works?
      • 👮Specification
      • 🎒How is it stored?
      • 🌊Pull Payments Flow
    • 🔐Security
      • 🎒Storage
      • ⛓️Cross Chain
    • ⚔️Use Pull Payments
  • 🆔Universal Identity Layer
    • 🔭Overview
    • ❓How it works?
      • 👮Specifications
      • 🎒How is it stored?
      • 🌊Identity Flow
    • 🔐Security
      • 🎒Storage
    • ⚔️Use Fetcch Identity
  • 🏗️Data Structures
    • 📖Address Books
      • 🔭Overview
      • 🎒Storage
  • 💻How to integrate?
    • ✈️Quickstart
    • ⛷️SDK Quickstart
    • 🔓Blockchain
    • ✨Guides
      • 🙇Authentication
      • 😁Identity
        • How to resolve identity?
        • How to create identity?
        • How to update identity?
      • 🤌Transaction Requests
        • How to get transaction requests?
        • How to create transaction request?
        • How to build transaction?
        • How to resolve transaction request?
      • 🫂Address Books
        • How to get address books?
        • How to create address books?
        • How to share address book?
        • How to accept address book request?
      • ⚙️Utility
        • How to sign messages?
          • EVM
          • Solana
          • Aptos
          • EIP-6492 Compatible Signatures
        • How to generate & verify proofs for identity?
    • 📖API Reference
      • ☢️Troubleshooting Errors
      • 🟢OpenAPI Specs
  • 🐧Open Source
    • 📸@fetcch/resolve-names
  • 🥶FAQs
    • FAQs
Powered by GitBook
On this page
  1. How to integrate?
  2. Guides
  3. Address Books

How to create address books?

Process of creating address book

PreviousHow to get address books?NextHow to share address book?

Last updated 1 year ago

Arrange Data

Arrange address book data in the format

{
    "name": "string"
    "addresses": {
        "address": "address",
        "chainType": "EVM" | "APTOS" | "SOLANA",
        "name": "string"
    }[],
    "walletIds": {
        "walletId": "string",
        "name": "string"
    },
    "ownerId": "string"
}

Generate & Sign Message

Generate message using this API and above data

Call Create Address Book API

Sign the above message by following signature guidelines mentioned according to the chain you are using

💻
✨
🫂
here
  • Arrange Data
  • Generate & Sign Message
  • POSTGenerate message for address book
  • Call Create Address Book API
  • POSTCreate Address Book

Generate message for address book

post
Authorizations
Body
idintegerOptional
namestringRequired
addressesstring[]Optional
walletIdsstring[]Optional
ownerstringRequired
createdAtstring · date-timeOptional
updatedAtstring · date-timeRequired
Responses
201
Successful response
application/json
400Error
application/json
401Error
application/json
post
POST /v1/address-books/message HTTP/1.1
Host: sandbox-api.fetcch.xyz
secret-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 157

{
  "id": 1,
  "name": "text",
  "addresses": [
    "text"
  ],
  "walletIds": [
    "text"
  ],
  "owner": "text",
  "createdAt": "2025-05-31T23:03:18.545Z",
  "updatedAt": "2025-05-31T23:03:18.545Z"
}
{
  "data": {
    "message": "text",
    "book": {
      "id": 1,
      "name": "text",
      "addresses": [
        {
          "id": 1,
          "address": "text",
          "chainType": "EVM",
          "name": "text",
          "addressBookId": 1,
          "addressBook": {
            "id": 1,
            "name": "text",
            "addresses": "[Circular Reference]",
            "walletIds": "[Circular Reference]",
            "ownerId": "text",
            "owner": "[Circular Reference]",
            "requests": "[Circular Reference]",
            "createdAt": "2025-05-31T23:03:18.545Z",
            "updatedAt": "2025-05-31T23:03:18.545Z"
          }
        }
      ],
      "walletIds": [
        {
          "id": 1,
          "walletId": "text",
          "wallet": {
            "id": "text",
            "identifier": "text",
            "providerId": "text",
            "provider": "[Circular Reference]",
            "defaultAddress": "text",
            "default": {
              "address": "text",
              "chain": {
                "id": 1,
                "name": "text",
                "symbol": "text",
                "icon": "text",
                "rpc": [
                  "text"
                ],
                "type": "EVM",
                "shortName": "text",
                "infoURL": "text",
                "chainId": 1,
                "updatedAt": "2025-05-31T23:03:18.545Z",
                "createdAt": "2025-05-31T23:03:18.545Z"
              },
              "chainId": 1,
              "isMultisig": false,
              "isSmartContractWallet": false,
              "walletId": {
                "id": 1,
                "name": "text",
                "symbol": "text",
                "icon": "text",
                "rpc": [
                  "text"
                ],
                "type": "EVM",
                "shortName": "text",
                "infoURL": "text",
                "chainId": 1,
                "updatedAt": "2025-05-31T23:03:18.545Z",
                "createdAt": "2025-05-31T23:03:18.545Z"
              },
              "updatedAt": "2025-05-31T23:03:18.545Z",
              "createdAt": "2025-05-31T23:03:18.545Z"
            },
            "secondary": "[Circular Reference]",
            "nonce": 0,
            "currentSignature": "text",
            "previousSignature": "text",
            "isContract": false,
            "syncedAt": "2025-05-31T23:03:18.545Z",
            "createdAt": "2025-05-31T23:03:18.545Z"
          },
          "name": "text",
          "addressBookId": 1,
          "addressBook": {
            "id": 1,
            "name": "text",
            "addresses": "[Circular Reference]",
            "walletIds": "[Circular Reference]",
            "ownerId": "text",
            "owner": "[Circular Reference]",
            "requests": "[Circular Reference]",
            "createdAt": "2025-05-31T23:03:18.545Z",
            "updatedAt": "2025-05-31T23:03:18.545Z"
          },
          "createdAt": "2025-05-31T23:03:18.545Z",
          "updatedAt": "2025-05-31T23:03:18.545Z"
        }
      ],
      "ownerId": "text",
      "owner": {
        "owner": "text",
        "ownerId": "text",
        "ownerIdentity": {
          "id": "text",
          "identifier": "text",
          "providerId": "text",
          "provider": {
            "id": "text",
            "logo": "text",
            "apiKey": "text",
            "delimiter": "text",
            "txHash": "text",
            "registry": "[Circular Reference]",
            "dataSourceId": 1,
            "ownerId": "text",
            "updatedAt": "2025-05-31T23:03:18.545Z",
            "createdAt": "2025-05-31T23:03:18.545Z"
          },
          "defaultAddress": "text",
          "default": {
            "address": "text",
            "chain": {
              "id": 1,
              "name": "text",
              "symbol": "text",
              "icon": "text",
              "rpc": [
                "text"
              ],
              "type": "EVM",
              "shortName": "text",
              "infoURL": "text",
              "chainId": 1,
              "updatedAt": "2025-05-31T23:03:18.545Z",
              "createdAt": "2025-05-31T23:03:18.545Z"
            },
            "chainId": 1,
            "isMultisig": false,
            "isSmartContractWallet": false,
            "walletId": {
              "id": 1,
              "name": "text",
              "symbol": "text",
              "icon": "text",
              "rpc": [
                "text"
              ],
              "type": "EVM",
              "shortName": "text",
              "infoURL": "text",
              "chainId": 1,
              "updatedAt": "2025-05-31T23:03:18.545Z",
              "createdAt": "2025-05-31T23:03:18.545Z"
            },
            "updatedAt": "2025-05-31T23:03:18.545Z",
            "createdAt": "2025-05-31T23:03:18.545Z"
          },
          "secondary": [
            "[Circular Reference]"
          ],
          "nonce": 0,
          "currentSignature": "text",
          "previousSignature": "text",
          "isContract": false,
          "syncedAt": "2025-05-31T23:03:18.545Z",
          "createdAt": "2025-05-31T23:03:18.545Z"
        },
        "createdAt": "2025-05-31T23:03:18.545Z",
        "updatedAt": "2025-05-31T23:03:18.545Z"
      },
      "requests": [
        {
          "id": 1,
          "bookId": 1,
          "book": {
            "id": 1,
            "name": "text",
            "addresses": "[Circular Reference]",
            "walletIds": "[Circular Reference]",
            "ownerId": "text",
            "owner": {
              "owner": "text",
              "ownerId": "text",
              "ownerIdentity": {
                "id": "text",
                "identifier": "text",
                "providerId": "text",
                "provider": {
                  "id": "text",
                  "logo": "text",
                  "apiKey": "text",
                  "delimiter": "text",
                  "txHash": "text",
                  "registry": "[Circular Reference]",
                  "dataSourceId": 1,
                  "ownerId": "text",
                  "updatedAt": "2025-05-31T23:03:18.545Z",
                  "createdAt": "2025-05-31T23:03:18.545Z"
                },
                "defaultAddress": "text",
                "default": {
                  "address": "text",
                  "chain": {
                    "id": 1,
                    "name": "text",
                    "symbol": "text",
                    "icon": "text",
                    "rpc": [
                      "text"
                    ],
                    "type": "EVM",
                    "shortName": "text",
                    "infoURL": "text",
                    "chainId": 1,
                    "updatedAt": "2025-05-31T23:03:18.545Z",
                    "createdAt": "2025-05-31T23:03:18.545Z"
                  },
                  "chainId": 1,
                  "isMultisig": false,
                  "isSmartContractWallet": false,
                  "walletId": {
                    "id": 1,
                    "name": "text",
                    "symbol": "text",
                    "icon": "text",
                    "rpc": [
                      "text"
                    ],
                    "type": "EVM",
                    "shortName": "text",
                    "infoURL": "text",
                    "chainId": 1,
                    "updatedAt": "2025-05-31T23:03:18.545Z",
                    "createdAt": "2025-05-31T23:03:18.545Z"
                  },
                  "updatedAt": "2025-05-31T23:03:18.545Z",
                  "createdAt": "2025-05-31T23:03:18.545Z"
                },
                "secondary": [
                  "[Circular Reference]"
                ],
                "nonce": 0,
                "currentSignature": "text",
                "previousSignature": "text",
                "isContract": false,
                "syncedAt": "2025-05-31T23:03:18.545Z",
                "createdAt": "2025-05-31T23:03:18.545Z"
              },
              "createdAt": "2025-05-31T23:03:18.545Z",
              "updatedAt": "2025-05-31T23:03:18.545Z"
            },
            "requests": "[Circular Reference]",
            "createdAt": "2025-05-31T23:03:18.545Z",
            "updatedAt": "2025-05-31T23:03:18.545Z"
          },
          "toId": "text",
          "to": {
            "owner": "text",
            "ownerId": "text",
            "ownerIdentity": {
              "id": "text",
              "identifier": "text",
              "providerId": "text",
              "provider": {
                "id": "text",
                "logo": "text",
                "apiKey": "text",
                "delimiter": "text",
                "txHash": "text",
                "registry": "[Circular Reference]",
                "dataSourceId": 1,
                "ownerId": "text",
                "updatedAt": "2025-05-31T23:03:18.545Z",
                "createdAt": "2025-05-31T23:03:18.545Z"
              },
              "defaultAddress": "text",
              "default": {
                "address": "text",
                "chain": {
                  "id": 1,
                  "name": "text",
                  "symbol": "text",
                  "icon": "text",
                  "rpc": [
                    "text"
                  ],
                  "type": "EVM",
                  "shortName": "text",
                  "infoURL": "text",
                  "chainId": 1,
                  "updatedAt": "2025-05-31T23:03:18.545Z",
                  "createdAt": "2025-05-31T23:03:18.545Z"
                },
                "chainId": 1,
                "isMultisig": false,
                "isSmartContractWallet": false,
                "walletId": {
                  "id": 1,
                  "name": "text",
                  "symbol": "text",
                  "icon": "text",
                  "rpc": [
                    "text"
                  ],
                  "type": "EVM",
                  "shortName": "text",
                  "infoURL": "text",
                  "chainId": 1,
                  "updatedAt": "2025-05-31T23:03:18.545Z",
                  "createdAt": "2025-05-31T23:03:18.545Z"
                },
                "updatedAt": "2025-05-31T23:03:18.545Z",
                "createdAt": "2025-05-31T23:03:18.545Z"
              },
              "secondary": [
                "[Circular Reference]"
              ],
              "nonce": 0,
              "currentSignature": "text",
              "previousSignature": "text",
              "isContract": false,
              "syncedAt": "2025-05-31T23:03:18.545Z",
              "createdAt": "2025-05-31T23:03:18.545Z"
            },
            "createdAt": "2025-05-31T23:03:18.545Z",
            "updatedAt": "2025-05-31T23:03:18.545Z"
          },
          "access": "READ",
          "pending": true,
          "accepted": false,
          "createdAt": "2025-05-31T23:03:18.545Z",
          "updatedAt": "2025-05-31T23:03:18.545Z"
        }
      ],
      "createdAt": "2025-05-31T23:03:18.545Z",
      "updatedAt": "2025-05-31T23:03:18.545Z"
    }
  },
  "status": 1,
  "timestamp": "2025-05-31T23:03:18.545Z"
}

Create Address Book

post
Authorizations
Body
idintegerOptional
signaturestringOptional
namestringRequired
addressesstring[]Optional
walletIdsstring[]Optional
ownerstringRequired
createdAtstring · date-timeOptional
updatedAtstring · date-timeRequired
Responses
201
Successful response
application/json
400Error
application/json
401Error
application/json
post
POST /v1/address-books HTTP/1.1
Host: sandbox-api.fetcch.xyz
secret-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 176

{
  "id": 1,
  "signature": "text",
  "name": "text",
  "addresses": [
    "text"
  ],
  "walletIds": [
    "text"
  ],
  "owner": "text",
  "createdAt": "2025-05-31T23:03:18.545Z",
  "updatedAt": "2025-05-31T23:03:18.545Z"
}
{
  "data": {
    "id": 1,
    "name": "text",
    "addresses": [
      {
        "id": 1,
        "address": "text",
        "chainType": "EVM",
        "name": "text",
        "addressBookId": 1,
        "addressBook": {
          "id": 1,
          "name": "text",
          "addresses": [
            "[Circular Reference]"
          ],
          "walletIds": [
            "[Circular Reference]"
          ],
          "ownerId": "text",
          "owner": {
            "owner": "text",
            "ownerId": "text",
            "ownerIdentity": "[Circular Reference]",
            "createdAt": "2025-05-31T23:03:18.545Z",
            "updatedAt": "2025-05-31T23:03:18.545Z"
          },
          "requests": [
            "[Circular Reference]"
          ],
          "createdAt": "2025-05-31T23:03:18.545Z",
          "updatedAt": "2025-05-31T23:03:18.545Z"
        }
      }
    ],
    "walletIds": [
      {
        "id": 1,
        "walletId": "text",
        "wallet": {
          "id": "text",
          "identifier": "text",
          "providerId": "text",
          "provider": {
            "id": "text",
            "logo": "text",
            "apiKey": "text",
            "delimiter": "text",
            "txHash": "text",
            "registry": "[Circular Reference]",
            "dataSourceId": 1,
            "ownerId": "text",
            "updatedAt": "2025-05-31T23:03:18.545Z",
            "createdAt": "2025-05-31T23:03:18.545Z"
          },
          "defaultAddress": "text",
          "default": {
            "address": "text",
            "chain": {
              "id": 1,
              "name": "text",
              "symbol": "text",
              "icon": "text",
              "rpc": [
                "text"
              ],
              "type": "EVM",
              "shortName": "text",
              "infoURL": "text",
              "chainId": 1,
              "updatedAt": "2025-05-31T23:03:18.545Z",
              "createdAt": "2025-05-31T23:03:18.545Z"
            },
            "chainId": 1,
            "isMultisig": false,
            "isSmartContractWallet": false,
            "walletId": {
              "id": 1,
              "name": "text",
              "symbol": "text",
              "icon": "text",
              "rpc": [
                "text"
              ],
              "type": "EVM",
              "shortName": "text",
              "infoURL": "text",
              "chainId": 1,
              "updatedAt": "2025-05-31T23:03:18.545Z",
              "createdAt": "2025-05-31T23:03:18.545Z"
            },
            "updatedAt": "2025-05-31T23:03:18.545Z",
            "createdAt": "2025-05-31T23:03:18.545Z"
          },
          "secondary": [
            "[Circular Reference]"
          ],
          "nonce": 0,
          "currentSignature": "text",
          "previousSignature": "text",
          "isContract": false,
          "syncedAt": "2025-05-31T23:03:18.545Z",
          "createdAt": "2025-05-31T23:03:18.545Z"
        },
        "name": "text",
        "addressBookId": 1,
        "addressBook": {
          "id": 1,
          "name": "text",
          "addresses": [
            {
              "id": 1,
              "address": "text",
              "chainType": "EVM",
              "name": "text",
              "addressBookId": 1,
              "addressBook": {
                "id": 1,
                "name": "text",
                "addresses": [
                  "[Circular Reference]"
                ],
                "walletIds": [
                  "[Circular Reference]"
                ],
                "ownerId": "text",
                "owner": {
                  "owner": "text",
                  "ownerId": "text",
                  "ownerIdentity": "[Circular Reference]",
                  "createdAt": "2025-05-31T23:03:18.545Z",
                  "updatedAt": "2025-05-31T23:03:18.545Z"
                },
                "requests": [
                  "[Circular Reference]"
                ],
                "createdAt": "2025-05-31T23:03:18.545Z",
                "updatedAt": "2025-05-31T23:03:18.545Z"
              }
            }
          ],
          "walletIds": [
            "[Circular Reference]"
          ],
          "ownerId": "text",
          "owner": {
            "owner": "text",
            "ownerId": "text",
            "ownerIdentity": "[Circular Reference]",
            "createdAt": "2025-05-31T23:03:18.545Z",
            "updatedAt": "2025-05-31T23:03:18.545Z"
          },
          "requests": [
            "[Circular Reference]"
          ],
          "createdAt": "2025-05-31T23:03:18.545Z",
          "updatedAt": "2025-05-31T23:03:18.545Z"
        },
        "createdAt": "2025-05-31T23:03:18.545Z",
        "updatedAt": "2025-05-31T23:03:18.545Z"
      }
    ],
    "ownerId": "text",
    "owner": {
      "owner": "text",
      "ownerId": "text",
      "ownerIdentity": "[Circular Reference]",
      "createdAt": "2025-05-31T23:03:18.545Z",
      "updatedAt": "2025-05-31T23:03:18.545Z"
    },
    "requests": [
      {
        "id": 1,
        "bookId": 1,
        "book": {
          "id": 1,
          "name": "text",
          "addresses": [
            {
              "id": 1,
              "address": "text",
              "chainType": "EVM",
              "name": "text",
              "addressBookId": 1,
              "addressBook": {
                "id": 1,
                "name": "text",
                "addresses": [
                  "[Circular Reference]"
                ],
                "walletIds": [
                  "[Circular Reference]"
                ],
                "ownerId": "text",
                "owner": {
                  "owner": "text",
                  "ownerId": "text",
                  "ownerIdentity": "[Circular Reference]",
                  "createdAt": "2025-05-31T23:03:18.545Z",
                  "updatedAt": "2025-05-31T23:03:18.545Z"
                },
                "requests": [
                  "[Circular Reference]"
                ],
                "createdAt": "2025-05-31T23:03:18.545Z",
                "updatedAt": "2025-05-31T23:03:18.545Z"
              }
            }
          ],
          "walletIds": [
            {
              "id": 1,
              "walletId": "text",
              "wallet": {
                "id": "text",
                "identifier": "text",
                "providerId": "text",
                "provider": {
                  "id": "text",
                  "logo": "text",
                  "apiKey": "text",
                  "delimiter": "text",
                  "txHash": "text",
                  "registry": "[Circular Reference]",
                  "dataSourceId": 1,
                  "ownerId": "text",
                  "updatedAt": "2025-05-31T23:03:18.545Z",
                  "createdAt": "2025-05-31T23:03:18.545Z"
                },
                "defaultAddress": "text",
                "default": {
                  "address": "text",
                  "chain": {
                    "id": 1,
                    "name": "text",
                    "symbol": "text",
                    "icon": "text",
                    "rpc": [
                      "text"
                    ],
                    "type": "EVM",
                    "shortName": "text",
                    "infoURL": "text",
                    "chainId": 1,
                    "updatedAt": "2025-05-31T23:03:18.545Z",
                    "createdAt": "2025-05-31T23:03:18.545Z"
                  },
                  "chainId": 1,
                  "isMultisig": false,
                  "isSmartContractWallet": false,
                  "walletId": {
                    "id": 1,
                    "name": "text",
                    "symbol": "text",
                    "icon": "text",
                    "rpc": [
                      "text"
                    ],
                    "type": "EVM",
                    "shortName": "text",
                    "infoURL": "text",
                    "chainId": 1,
                    "updatedAt": "2025-05-31T23:03:18.545Z",
                    "createdAt": "2025-05-31T23:03:18.545Z"
                  },
                  "updatedAt": "2025-05-31T23:03:18.545Z",
                  "createdAt": "2025-05-31T23:03:18.545Z"
                },
                "secondary": [
                  "[Circular Reference]"
                ],
                "nonce": 0,
                "currentSignature": "text",
                "previousSignature": "text",
                "isContract": false,
                "syncedAt": "2025-05-31T23:03:18.545Z",
                "createdAt": "2025-05-31T23:03:18.545Z"
              },
              "name": "text",
              "addressBookId": 1,
              "addressBook": {
                "id": 1,
                "name": "text",
                "addresses": [
                  {
                    "id": 1,
                    "address": "text",
                    "chainType": "EVM",
                    "name": "text",
                    "addressBookId": 1,
                    "addressBook": {
                      "id": 1,
                      "name": "text",
                      "addresses": [
                        "[Circular Reference]"
                      ],
                      "walletIds": [
                        "[Circular Reference]"
                      ],
                      "ownerId": "text",
                      "owner": {
                        "owner": "text",
                        "ownerId": "text",
                        "ownerIdentity": "[Circular Reference]",
                        "createdAt": "2025-05-31T23:03:18.545Z",
                        "updatedAt": "2025-05-31T23:03:18.545Z"
                      },
                      "requests": [
                        "[Circular Reference]"
                      ],
                      "createdAt": "2025-05-31T23:03:18.545Z",
                      "updatedAt": "2025-05-31T23:03:18.545Z"
                    }
                  }
                ],
                "walletIds": [
                  "[Circular Reference]"
                ],
                "ownerId": "text",
                "owner": {
                  "owner": "text",
                  "ownerId": "text",
                  "ownerIdentity": "[Circular Reference]",
                  "createdAt": "2025-05-31T23:03:18.545Z",
                  "updatedAt": "2025-05-31T23:03:18.545Z"
                },
                "requests": [
                  "[Circular Reference]"
                ],
                "createdAt": "2025-05-31T23:03:18.545Z",
                "updatedAt": "2025-05-31T23:03:18.545Z"
              },
              "createdAt": "2025-05-31T23:03:18.545Z",
              "updatedAt": "2025-05-31T23:03:18.545Z"
            }
          ],
          "ownerId": "text",
          "owner": {
            "owner": "text",
            "ownerId": "text",
            "ownerIdentity": "[Circular Reference]",
            "createdAt": "2025-05-31T23:03:18.545Z",
            "updatedAt": "2025-05-31T23:03:18.545Z"
          },
          "requests": [
            "[Circular Reference]"
          ],
          "createdAt": "2025-05-31T23:03:18.545Z",
          "updatedAt": "2025-05-31T23:03:18.545Z"
        },
        "toId": "text",
        "to": {
          "owner": "text",
          "ownerId": "text",
          "ownerIdentity": {
            "id": "text",
            "identifier": "text",
            "providerId": "text",
            "provider": {
              "id": "text",
              "logo": "text",
              "apiKey": "text",
              "delimiter": "text",
              "txHash": "text",
              "registry": "[Circular Reference]",
              "dataSourceId": 1,
              "ownerId": "text",
              "updatedAt": "2025-05-31T23:03:18.545Z",
              "createdAt": "2025-05-31T23:03:18.545Z"
            },
            "defaultAddress": "text",
            "default": {
              "address": "text",
              "chain": {
                "id": 1,
                "name": "text",
                "symbol": "text",
                "icon": "text",
                "rpc": [
                  "text"
                ],
                "type": "EVM",
                "shortName": "text",
                "infoURL": "text",
                "chainId": 1,
                "updatedAt": "2025-05-31T23:03:18.545Z",
                "createdAt": "2025-05-31T23:03:18.545Z"
              },
              "chainId": 1,
              "isMultisig": false,
              "isSmartContractWallet": false,
              "walletId": {
                "id": 1,
                "name": "text",
                "symbol": "text",
                "icon": "text",
                "rpc": [
                  "text"
                ],
                "type": "EVM",
                "shortName": "text",
                "infoURL": "text",
                "chainId": 1,
                "updatedAt": "2025-05-31T23:03:18.545Z",
                "createdAt": "2025-05-31T23:03:18.545Z"
              },
              "updatedAt": "2025-05-31T23:03:18.545Z",
              "createdAt": "2025-05-31T23:03:18.545Z"
            },
            "secondary": "[Circular Reference]",
            "nonce": 0,
            "currentSignature": "text",
            "previousSignature": "text",
            "isContract": false,
            "syncedAt": "2025-05-31T23:03:18.545Z",
            "createdAt": "2025-05-31T23:03:18.545Z"
          },
          "createdAt": "2025-05-31T23:03:18.545Z",
          "updatedAt": "2025-05-31T23:03:18.545Z"
        },
        "access": "READ",
        "pending": true,
        "accepted": false,
        "createdAt": "2025-05-31T23:03:18.545Z",
        "updatedAt": "2025-05-31T23:03:18.545Z"
      }
    ],
    "createdAt": "2025-05-31T23:03:18.545Z",
    "updatedAt": "2025-05-31T23:03:18.545Z"
  },
  "status": 1,
  "timestamp": "2025-05-31T23:03:18.545Z"
}