Skip to main content
The lighter.raw.l1_mapping table maps Lighter internal account IDs to EVM wallet addresses. Each account ID maps to one wallet address; some wallet addresses may have multiple accounts.

Table Columns

Column NameDescription
l1_addressEVM wallet address associated with the account
account_idLighter internal account identifier

Sample Query

SELECT
    account_id,
    l1_address
FROM lighter.raw.l1_mapping
LIMIT 100