# org.simocracy.accountSettings

> Published by [gainforest.earth](https://lexicon.garden/identity/did:plc:qoti4acfmc5wg6zzmtix6hse)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/org.simocracy.accountSettings)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/org.simocracy.accountSettings/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/org.simocracy.accountSettings/examples)

## Definitions

### `org.simocracy.accountSettings`

**Type**: `record`

Singleton record per user (rkey 'self') for Simocracy-specific account settings that do not belong in the ATProto profile record. The Ethereum wallet address is public data stored on the user's PDS; never store private keys or seed phrases here.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes | When these account settings were first created. |
| `updatedAt` | `string` (datetime) | No | When these account settings were last updated. |
| `ethereumWalletAddress` | `string` | No | Optional public Ethereum wallet address for this Simocracy account. Clients must validate this as 0x followed by 40 hexadecimal characters before writing. Omit the field to clear the address. Never store a private key or seed phrase. |

## Raw Schema

```json
{
  "id": "org.simocracy.accountSettings",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When these account settings were first created."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "When these account settings were last updated."
          },
          "ethereumWalletAddress": {
            "type": "string",
            "maxLength": 42,
            "description": "Optional public Ethereum wallet address for this Simocracy account. Clients must validate this as 0x followed by 40 hexadecimal characters before writing. Omit the field to clear the address. Never store a private key or seed phrase.",
            "maxGraphemes": 42
          }
        }
      },
      "description": "Singleton record per user (rkey 'self') for Simocracy-specific account settings that do not belong in the ATProto profile record. The Ethereum wallet address is public data stored on the user's PDS; never store private keys or seed phrases here."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
