Help & Support

Lens Protocol BigQuery Schemas

Tables Schema of Lens Chain BigQuery.

Account Schema

The Account Schema manages user account information and relationships. It tracks user profiles, followers, actions, metadata, and interactions between users. This schema is central to user identity and social connections in the platform.

Hex Adresss, i.e. account, post, in the dataset is stored in its raw binary format (bytea). Lens provide a public function called FORMAT_HEX that converts BigQuery's \x format to the standard Web3 0x format.

SELECT  account as original_account_address,  `lens-protocol-mainnet.account.FORMAT_HEX`(account) as web3_formatted_account_addressFROM `lens-protocol-mainnet.account.post_summary`LIMIT 5;

Account Schema Tables

account.acted

Records actions performed by accounts on posts.

Previous was publication.open_action_module_acted_record in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.acted` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
accountbyteaAccount address that performed the action
postbyteaPost identifier
action_idintegerAction identifier
implementationbyteaImplementation address
action_datatextAction data
is_collectbooleanWhether action is a collect
tx_hashbyteaTransaction hash
block_hashbyteaHash of the block containing this record
timestamptimestamp with time zoneAction time
sequence_idnumericSequence identifier

Back to Top

Back to Account Schema

account.action_config

Stores action configurations for accounts.

SELECT * FROM `lens-protocol-mainnet.account.action_config` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
action_addressbyteaAction address
typeUSER-DEFINEDAction type
accountbyteaAccount address
raw_config_paramsjsonbRaw configuration parameters
decoded_config_paramsjsonbDecoded configuration parameters
disabledbooleanWhether action is disabled
timestamptimestamp with time zoneConfiguration time
sequence_idnumericSequence identifier
disable_extra_databyteaDisable extra data
enable_extra_databyteaEnable extra data
last_updated_sequence_idnumericLast update sequence ID
return_databyteaReturn data
appbyteaApp identifier

Back to Top

Back to Account Schema

account.action_executed

Logs executed actions by accounts.

SELECT * FROM `lens-protocol-mainnet.account.action_executed` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
action_addressbyteaAction address
typeUSER-DEFINEDAction type
on_accountbyteaAccount the action was performed on
raw_paramsjsonbRaw parameters
decoded_paramsjsonbDecoded parameters
timestamptimestamp with time zoneExecution time
sequence_idnumericSequence identifier
appbyteaApp identifier
by_accountbyteaAccount that executed the action

Back to Top

Back to Account Schema

account.action_executed_by_account_count

Counts actions executed by specific accounts.

SELECT * FROM `lens-protocol-mainnet.account.action_executed_by_account_count` LIMIT 1;
ColumnTypeDescription
action_addressbyteaAction address
by_accountbyteaAccount that executed the action
totalintegerTotal count of executions

Back to Top

Back to Account Schema

account.action_executed_count

Counts actions executed on specific accounts.

SELECT * FROM `lens-protocol-mainnet.account.action_executed_count` LIMIT 1;
ColumnTypeDescription
action_addressbyteaAction address
accountbyteaAccount address
totalintegerTotal count of executions

Back to Top

Back to Account Schema

account.action_metadata

Stores metadata for account actions.

SELECT * FROM `lens-protocol-mainnet.account.action_metadata` LIMIT 1;
ColumnTypeDescription
actionbyteaAction address
metadata_uricharacter varyingURI for the metadata
metadata_snapshot_location_urlcharacter varyingURL for metadata snapshot
metadatajsonbStored metadata
namecharacter varyingAction name
descriptioncharacter varyingAction description
metadata_versioncharacterMetadata version
created_ontimestamp with time zoneCreation time

Back to Top

Back to Account Schema

account.blocked

Records blocked accounts.

Previous was profile.blocked in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.blocked` LIMIT 1;
ColumnTypeDescription
accountbyteaBlocked account address
blocking_accountbyteaAccount doing the blocking
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneBlock time
sequence_idnumericSequence identifier

Back to Top

Back to Account Schema

account.bookmarked_post

Stores posts bookmarked by accounts.

Previous was personalisation.bookmarked_publication in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.bookmarked_post` LIMIT 1;
ColumnTypeDescription
accountbyteaAccount address
postbyteaBookmarked post identifier
created_attimestamp with time zoneBookmark time

Back to Top

Back to Account Schema

account.follow_rule_config

Configurations for follow rules.

SELECT * FROM `lens-protocol-mainnet.account.follow_rule_config` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
rule_addressbyteaRule address
config_saltbyteaConfiguration salt
typeUSER-DEFINEDRule type
graphbyteaGraph identifier
accountbyteaAccount address
raw_config_paramsjsonbRaw configuration parameters
decoded_config_paramsjsonbDecoded configuration parameters
timestamptimestamp with time zoneConfiguration time
sequence_idnumericSequence identifier
last_updated_sequence_idnumericLast update sequence ID

Back to Top

Back to Account Schema

account.follow_rule_selector

Selectors for follow rules.

SELECT * FROM `lens-protocol-mainnet.account.follow_rule_selector` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
config_saltbyteaConfiguration salt
selectorUSER-DEFINEDRule selector
is_requiredbooleanWhether the rule is required
timestamptimestamp with time zoneConfiguration time
sequence_idnumericSequence identifier
graphbyteaGraph identifier
accountbyteaAccount address
rule_addressbyteaRule address

Back to Top

Back to Account Schema

account.follower

Records follower relationships.

Previous was profile.follower in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.follower` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
account_followingbyteaAccount being followed
account_followerbyteaAccount doing the following
graphbyteaGraph identifier
follow_idcharacter varyingFollow identifier
tx_hashbyteaTransaction hash
block_hashbyteaHash of the block containing this record
timestamptimestamp with time zoneFollow time
sequence_idnumericSequence identifier

Back to Top

Back to Account Schema

account.follower_summary

Summarizes follower statistics.

Previous was global_stats.profile_follower in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.follower_summary` LIMIT 1;
ColumnTypeDescription
accountbyteaAccount address
total_followersintegerTotal number of followers
total_followingintegerTotal number of accounts followed
graphbyteaGraph identifier
updated_attimestamp with time zoneLast update time

Back to Top

Back to Account Schema

account.known_smart_wallet

Records known smart wallets.

SELECT * FROM `lens-protocol-mainnet.account.known_smart_wallet` LIMIT 1;
ColumnTypeDescription
addressbyteaWallet address
owned_bybyteaOwner address
legacy_profile_idcharacter varyingLegacy profile ID
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier
last_updated_sequence_idnumericLast update sequence ID

Back to Top

Back to Account Schema

account.manager

Records account managers.

Previous was profile.manager in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.manager` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
accountbyteaAccount address
managerbyteaManager address
is_hiddenbooleanWhether manager is hidden
can_execute_transactionsbooleanTransaction execution permission
can_transfer_tokensbooleanToken transfer permission
can_transfer_nativebooleanNative transfer permission
can_set_metadata_uribooleanMetadata URI setting permission
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier
last_updated_sequence_idnumericLast update sequence ID

Back to Top

Back to Account Schema

account.metadata

Stores account metadata.

Previous was profile.metadata in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.metadata` LIMIT 1;
ColumnTypeDescription
accountbyteaAccount address
metadata_uricharacter varyingURI for the metadata
metadata_snapshot_location_urlcharacter varyingURL for metadata snapshot
metadatajsonbStored metadata
namecharacter varyingAccount name
metadata_versioncharacterMetadata version
created_ontimestamp with time zoneCreation time
appbyteaApp identifier

Back to Top

Back to Account Schema

account.notification

Stores account notifications.

Previous was notification.record in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.notification` LIMIT 1;
ColumnTypeDescription
notification_idintegerUnique identifier
generated_notification_idcharacter varyingGenerated notification ID
typecharacter varyingNotification type
postbyteaPost identifier
post_pointerbyteaPost pointer
receiving_accountbyteaAccount receiving the notification
sender_accountbyteaAccount sending the notification
action_datetimestamp with time zoneAction date
reactionUSER-DEFINEDReaction type
open_action_actedbyteaOpen action identifier
is_collectbooleanWhether action is a collect
appbyteaApp identifier
graphbyteaGraph identifier
feedbyteaFeed identifier

Back to Top

Back to Account Schema

account.peer_to_peer_recommendation

Records peer-to-peer account recommendations.

Previous was profile.peer_to_peer_recommendation in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.peer_to_peer_recommendation` LIMIT 1;
ColumnTypeDescription
accountbyteaAccount address
account_recommendationbyteaRecommended account address
created_attimestamp with time zoneRecommendation time

Back to Top

Back to Account Schema

account.post_summary

Summarizes post statistics for accounts.

Previous was global_stats.profile in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.post_summary` LIMIT 1;
ColumnTypeDescription
accountbyteaAccount address
feedbyteaFeed identifier
total_postsintegerTotal number of posts
total_commentsintegerTotal number of comments
total_repostsintegerTotal number of reposts
total_quotesintegerTotal number of quotes
total_reactedintegerTotal times account reacted
total_reactionsintegerTotal reactions received
total_collectsintegerTotal collects
updated_attimestamp with time zoneLast update time
total_mainintegerTotal main posts
total_tipsintegerTotal tips

Repost/Mirros are not migrated from Lens V2. Total_reposts may not represent the actual numbers from Lens V2

Back to Top

Back to Account Schema

account.reacted_summary

Summarizes reactions by account.

Previous was global_stats.profile_reacted in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.reacted_summary` LIMIT 1;
ColumnTypeDescription
accountbyteaAccount address
reaction_typeUSER-DEFINEDType of reaction
totalintegerTotal count

Back to Top

Back to Account Schema

account.reaction_summary

Summarizes reactions on account content.

Previous was global_stats.profile_reaction in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.reaction_summary` LIMIT 1;
ColumnTypeDescription
accountbyteaAccount address
reaction_typeUSER-DEFINEDType of reaction
totalintegerTotal count

Back to Top

Back to Account Schema

account.universal_action_config

Stores universal action configurations.

SELECT * FROM `lens-protocol-mainnet.account.universal_action_config` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
action_addressbyteaAction address
typeUSER-DEFINEDAction type
raw_config_paramsjsonbRaw configuration parameters
decoded_config_paramsjsonbDecoded configuration parameters
timestamptimestamp with time zoneConfiguration time
sequence_idnumericSequence identifier

Back to Top

Back to Account Schema

account.username_assigned

Records username assignments.

Previous was namespace.handle_link in Lens V2

SELECT * FROM `lens-protocol-mainnet.account.username_assigned` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
accountbyteaAccount address
namespacebyteaNamespace identifier
local_namecharacter varyingLocal username
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneAssignment time
sequence_idnumericSequence identifier

Back to Top

Back to Account Schema

App Schema

The App Schema manages application-related data, including app records, feeds, groups, and metadata. It tracks app-specific statistics, signers, users, and their interactions with the platform. This schema enables apps to maintain their own configurations and track usage metrics.

App Schema Tables

app.account_post_summary

Summarizes post statistics for accounts by app.

Previous was app_stats.profile in Lens V2

SELECT * FROM `lens-protocol-mainnet.app.account_post_summary` LIMIT 1;
ColumnTypeDescription
accountbyteaAccount address
feedbyteaFeed identifier
appbyteaApp identifier
total_mainintegerTotal main posts
total_commentsintegerTotal comments
total_repostsintegerTotal reposts
total_quotesintegerTotal quotes
total_postsintegerTotal posts
total_reactedintegerTotal times account reacted
total_reactionsintegerTotal reactions received
total_collectsintegerTotal collects
updated_attimestamp with time zoneLast update time
total_tipsintegerTotal tips

Repost/Mirros are not migrated from Lens V2. Total_reposts may not represent the actual numbers from Lens V2

Back to Top

Back to App Schema

app.account_reacted_summary

Summarizes reactions by account per app.

Previous was app_stats.profile_reacted in Lens V2

SELECT * FROM `lens-protocol-mainnet.app.account_reacted_summary` LIMIT 1;
ColumnTypeDescription
accountbyteaAccount address
appbyteaApp identifier
reaction_typeUSER-DEFINEDType of reaction
totalintegerTotal count

Back to Top

Back to App Schema

ColumnTypeDescription
accountbyteaAccount address
appbyteaApp identifier
reaction_typeUSER-DEFINEDType of reaction
totalintegerTotal count

Back to Top

Back to App Schema

app.feed

Records app feeds.

SELECT * FROM `lens-protocol-mainnet.app.feed` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
appbyteaApp identifier
feedbyteaFeed identifier
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier

Back to Top

Back to App Schema

app.group

Records app groups.

SELECT * FROM `lens-protocol-mainnet.app.group` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
appbyteaApp identifier
groupbyteaGroup identifier
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier

Back to Top

Back to App Schema

app.metadata

Stores app metadata.

SELECT * FROM `lens-protocol-mainnet.app.metadata` LIMIT 1;
ColumnTypeDescription
appbyteaApp identifier
metadata_uricharacter varyingURI for the metadata
metadata_snapshot_location_urlcharacter varyingURL for metadata snapshot
metadatajsonbStored metadata
namecharacter varyingApp name
iconcharacter varyingApp icon URL
taglinecharacter varyingApp tagline
descriptioncharacter varyingApp description
websitecharacter varyingApp website
metadata_versioncharacterMetadata version
created_ontimestamp with time zoneCreation time

Back to Top

Back to App Schema

app.post_feed_tag_summary

Summarizes post tags by feed and app.

SELECT * FROM `lens-protocol-mainnet.app.post_feed_tag_summary` LIMIT 1;
ColumnTypeDescription
tagcharacter varyingTag name
appbyteaApp identifier
feedbyteaFeed identifier
totalintegerTotal count

Back to Top

Back to App Schema

app.post_reaction_summary

Summarizes post reactions by app.

Previous was app_stats.publication_reaction in Lens V2

SELECT * FROM `lens-protocol-mainnet.app.post_reaction_summary` LIMIT 1;
ColumnTypeDescription
postbyteaPost identifier
appbyteaApp identifier
reaction_typeUSER-DEFINEDType of reaction
totalintegerTotal count

Back to Top

Back to App Schema

app.post_summary

Summarizes post statistics by app.

Previous was app_stats.publication in Lens V2

SELECT * FROM `lens-protocol-mainnet.app.post_summary` LIMIT 1;
ColumnTypeDescription
postbyteaPost identifier
appbyteaApp identifier
total_amount_of_collectsintegerTotal collects
total_amount_of_collects_by_flagged_accountsintegerCollects by flagged accounts
total_amount_of_actedintegerTotal actions
total_amount_of_acted_by_flagged_accountsintegerActions by flagged accounts
total_amount_of_repostsintegerTotal reposts
total_amount_of_reposts_by_flagged_accountsintegerReposts by flagged accounts
total_amount_of_commentsintegerTotal comments
total_amount_of_comments_by_flagged_accountsintegerComments by flagged accounts
total_amount_of_comments_hidden_by_authorintegerComments hidden by author
total_amount_of_quotesintegerTotal quotes
total_amount_of_quotes_by_flagged_accountsintegerQuotes by flagged accounts
total_reactionsintegerTotal reactions
total_reactions_by_flagged_accountsintegerReactions by flagged accounts
total_bookmarksintegerTotal bookmarks
total_bookmarks_by_flagged_accountsintegerBookmarks by flagged accounts
total_amount_of_tipsintegerTotal tips
total_amount_of_tips_by_flagged_accountsintegerTips by flagged accounts

Repost/Mirros are not migrated from Lens V2. Total_reposts may not represent the actual numbers from Lens V2

Back to Top

Back to App Schema

app.post_tag_summary

Summarizes post tags by app.

Previous was app_stats.publication_tag in Lens V2

SELECT * FROM `lens-protocol-mainnet.app.post_tag_summary` LIMIT 1;
ColumnTypeDescription
tagcharacter varyingTag name
appbyteaApp identifier
totalintegerTotal count

Back to Top

Back to App Schema

app.record

Stores app records.

SELECT * FROM `lens-protocol-mainnet.app.record` LIMIT 1;
ColumnTypeDescription
appbyteaApp identifier
graphbyteaGraph identifier
graph_last_updated_sequence_idnumericGraph update sequence ID
sponsorshipbyteaSponsorship identifier
sponsorship_last_updated_sequence_idnumericSponsorship update sequence ID
namespacebyteaNamespace identifier
namespace_last_updated_sequence_idnumericNamespace update sequence ID
default_feedbyteaDefault feed identifier
default_feed_last_updated_sequence_idnumericDefault feed update sequence ID
treasurybyteaTreasury address
treasury_last_updated_sequence_idnumericTreasury update sequence ID
source_stamp_verification_setbooleanSource stamp verification status
source_stamp_verification_set_last_updated_sequence_idnumericSource stamp verification update sequence ID
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier

Back to Top

Back to App Schema

app.signer

Records app signers.

SELECT * FROM `lens-protocol-mainnet.app.signer` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
appbyteaApp identifier
signerbyteaSigner address
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier

Back to Top

Back to App Schema

app.user

Records app users.

SELECT * FROM `lens-protocol-mainnet.app.user` LIMIT 1;
ColumnTypeDescription
appbyteaApp identifier
accountbyteaUser account address
first_action_ontimestamp with time zoneFirst action time
last_action_ontimestamp with time zoneLast action time

Back to Top

Back to App Schema

Feed Schema

The Feed Schema manages content feeds in the platform. It stores feed metadata, records, and usage statistics. Feeds are used to organize and display content in different ways across the platform, allowing for custom content streams.

Feed Schema Tables

feed.metadata

Stores feed metadata.

SELECT * FROM `lens-protocol-mainnet.feed.metadata` LIMIT 1;
ColumnTypeDescription
feedbyteaFeed identifier
metadata_uricharacter varyingURI for the metadata
metadata_snapshot_location_urlcharacter varyingURL for metadata snapshot
metadatajsonbStored metadata
namecharacter varyingFeed name
descriptioncharacter varyingFeed description
metadata_versioncharacterMetadata version
created_ontimestamp with time zoneCreation time

Back to Top

Back to Feed Schema

feed.record

Stores feed records.

SELECT * FROM `lens-protocol-mainnet.feed.record` LIMIT 1;
ColumnTypeDescription
feedbyteaFeed identifier
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier

Back to Top

Back to Feed Schema

feed.record_stats

Records feed usage statistics.

SELECT * FROM `lens-protocol-mainnet.feed.record_stats` LIMIT 1;
ColumnTypeDescription
feedbyteaFeed identifier
used_by_apps_totalintegerTotal app usage count

Back to Top

Back to Feed Schema

Graph Schema

The Graph Schema manages social graph data in the platform. It tracks relationships between users, stores graph metadata, and records usage statistics. This schema provides the foundation for social connections and interactions.

Graph Schema Tables

graph.metadata

Stores graph metadata.

SELECT * FROM `lens-protocol-mainnet.graph.metadata` LIMIT 1;
ColumnTypeDescription
graphbyteaGraph identifier
metadata_uricharacter varyingURI for the metadata
metadata_snapshot_location_urlcharacter varyingURL for metadata snapshot
metadatajsonbStored metadata
namecharacter varyingGraph name
descriptioncharacter varyingGraph description
metadata_versioncharacterMetadata version
created_ontimestamp with time zoneCreation time

Back to Top

Back to Graph Schema

graph.record

Stores graph records.

SELECT * FROM `lens-protocol-mainnet.graph.record` LIMIT 1;
ColumnTypeDescription
graphbyteaGraph identifier
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier

Back to Top

Back to Graph Schema

graph.record_stats

Records graph usage statistics.

SELECT * FROM `lens-protocol-mainnet.graph.record_stats` LIMIT 1;
ColumnTypeDescription
graphbyteaGraph identifier
used_by_apps_totalintegerTotal app usage count

Back to Top

Back to Graph Schema

Group Schema

The Group Schema manages community groups in the platform. It tracks group members, banned users, membership requests, and group metadata. Groups provide a way for users to organize around common interests or purposes.

Group Schema Tables

group.banned

Records banned group members.

SELECT * FROM `lens-protocol-mainnet.group.banned` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
groupbyteaGroup identifier
config_saltbyteaConfiguration salt
accountbyteaBanned account address
banned_by_accountbyteaAccount that performed the ban
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneBan time
sequence_idnumericSequence identifier

Back to Top

Back to Group Schema

group.member

Records group members.

SELECT * FROM `lens-protocol-mainnet.group.member` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
groupbyteaGroup identifier
accountbyteaMember account address
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneMembership time
sequence_idnumericSequence identifier

Back to Top

Back to Group Schema

group.membership_approval_requests

Records membership approval requests.

SELECT * FROM `lens-protocol-mainnet.group.membership_approval_requests` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
groupbyteaGroup identifier
config_saltbyteaConfiguration salt
accountbyteaRequesting account address
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRequest time
sequence_idnumericSequence identifier

Back to Top

Back to Group Schema

group.metadata

Stores group metadata.

SELECT * FROM `lens-protocol-mainnet.group.metadata` LIMIT 1;
ColumnTypeDescription
groupbyteaGroup identifier
metadata_uricharacter varyingURI for the metadata
metadata_snapshot_location_urlcharacter varyingURL for metadata snapshot
metadatajsonbStored metadata
namecharacter varyingGroup name
iconcharacter varyingGroup icon URL
descriptioncharacter varyingGroup description
metadata_versioncharacterMetadata version
created_ontimestamp with time zoneCreation time

Back to Top

Back to Group Schema

group.record

Stores group records.

SELECT * FROM `lens-protocol-mainnet.group.record` LIMIT 1;
ColumnTypeDescription
groupbyteaGroup identifier
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier

Back to Top

Back to Group Schema

group.record_stats

Stores group statistics.

SELECT * FROM `lens-protocol-mainnet.group.record_stats` LIMIT 1;
ColumnTypeDescription
groupbyteaGroup identifier
members_totalintegerTotal number of members

Back to Top

Back to Group Schema

Metadata Schema

The Metadata Schema manages metadata processing and refresh operations across the platform. It tracks pending and failed metadata processing tasks and handles refresh requests for various entities in the system. This schema ensures metadata consistency and availability.

Metadata Schema Tables

metadata.failed

Records failed metadata processing.

Previous was publication.failed in Lens V2

SELECT * FROM `lens-protocol-mainnet.metadata.failed` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
sourcecharacter varyingSource name
accountbyteaRelated account identifier
graphbyteaRelated graph identifier
postbyteaRelated post identifier
feedbyteaRelated feed identifier
groupbyteaRelated group identifier
sponsorshipbyteaRelated sponsorship identifier
appbyteaRelated app identifier
namespacebyteaRelated namespace identifier
metadata_uricharacter varyingMetadata URI
reasoncharacter varyingFailure reason
created_ontimestamp with time zoneFailure time
actionbyteaRelated action identifier

Back to Top

Back to Metadata Schema

metadata.pending

Records pending metadata processing.

Previous was publication.pending in Lens V2

SELECT * FROM `lens-protocol-mainnet.metadata.pending` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
sourcecharacter varyingSource name
accountbyteaRelated account identifier
graphbyteaRelated graph identifier
postbyteaRelated post identifier
feedbyteaRelated feed identifier
groupbyteaRelated group identifier
sponsorshipbyteaRelated sponsorship identifier
appbyteaRelated app identifier
namespacebyteaRelated namespace identifier
metadata_uricharacter varyingMetadata URI
sequence_idnumericSequence identifier
created_ontimestamp with time zoneCreation time
actionbyteaRelated action identifier

Back to Top

Back to Metadata Schema

metadata.refresh

Tracks metadata refresh requests.

SELECT * FROM `lens-protocol-mainnet.metadata.refresh` LIMIT 1;
ColumnTypeDescription
iduuidUnique identifier
entitytextEntity being refreshed
statusUSER-DEFINEDRefresh status
reasontextRefresh reason
updated_attimestamp with time zoneLast update time
created_attimestamp with time zoneCreation time

Back to Top

Back to Metadata Schema

ML Schema

The ML Schema (Machine Learning Schema) manages AI-powered features in the platform. It stores data related to account quality scores, personalized feeds, trending content, and reply rankings. This schema enables intelligent content discovery and moderation.

ML Schema Tables

ml.account_score

Records quality scores for accounts.

Previous was machine_learning.quality_profiles in Lens V2. Quality score used to be [0 - 10000] in V2. In V3, score is rescaled to [0 - 100] with 2 decimal point decision

SELECT * FROM `lens-protocol-mainnet.ml.account_score` LIMIT 1;
ColumnTypeDescription
accountbyteaAccount identifier
scorenumericQuality score. Ranging from [0 - 100]
generated_attimestamp with time zoneScore generation time

Back to Top

Back to ML Schema

ml.for_you_global_timeline

Stores data for personalized "For You" feeds.

Previous was machine_learning.for_you_global_feed in Lens V2

SELECT * FROM `lens-protocol-mainnet.ml.for_you_global_timeline` LIMIT 1;
ColumnTypeDescription
postbyteaPost identifier
accountbyteaAccount identifier
rankintegerRanking position
sourcecharacter varyingSource of ranking
generated_attimestamp with time zoneGeneration time

Back to Top

Back to ML Schema

Tracks trending posts based on popularity.

Previous was machine_learning.popularity_trending_feed in Lens V2

SELECT * FROM `lens-protocol-mainnet.ml.popularity_trending_timeline` LIMIT 1;
ColumnTypeDescription
postbyteaPost identifier
accountbyteaAccount identifier
scoreintegerPopularity score
generated_attimestamp with time zoneGeneration time

Back to Top

Back to ML Schema

ml.reply_ranking

Ranks replies for improved display.

Previous was machine_learning.reply_ranking in Lens V2

SELECT * FROM `lens-protocol-mainnet.ml.reply_ranking` LIMIT 1;
ColumnTypeDescription
parent_postbyteaParent post identifier
postbyteaReply post identifier
scoreintegerRanking score
generated_attimestamp with time zoneGeneration time

Back to Top

Back to ML Schema

Post Schema

The Post Schema is central to content management in the platform. It handles all aspects of posts including content, metadata, actions, rules, reactions, and mentions. This schema tracks post content, interactions, statistics, and relationships between posts.

Hex Adresss, i.e. account, post, in the dataset is stored in its raw binary format (bytea). Lens provide a public function called FORMAT_HEX that converts BigQuery's \x format to the standard Web3 0x format.

SELECT  account as original_account_address,  `lens-protocol-mainnet.post.FORMAT_HEX`(account) as web3_formatted_account_addressFROM `lens-protocol-mainnet.post.record`LIMIT 5;

Post Schema Tables

post.account_mention

Records account mentions in posts.

SELECT * FROM `lens-protocol-mainnet.post.account_mention` LIMIT 1;
ColumnTypeDescription
mention_idintegerUnique identifier
postbyteaPost identifier
accountbyteaMentioned account
namespacebyteaNamespace identifier
snapshot_username_usedcharacter varyingUsername used in mention
timestamptimestamp with time zoneMention time
sequence_idnumericSequence identifier

Back to Top

Back to Post Schema

post.action

Records post actions.

Previous was publication.open_action_module_multirecipient in Lens V2

SELECT * FROM `lens-protocol-mainnet.post.action` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
postbyteaPost identifier
implementationbyteaImplementation address
setup_datatextSetup data
setup_return_datatextSetup return data
collect_limitcharacter varyingCollection limit
collect_nft_addressbyteaCollect NFT address
amountcharacter varyingAction amount
follower_onlybooleanFollower-only restriction
currencybyteaCurrency address
recipientsARRAYRecipients list
referral_feenumericReferral fee percentage
end_timestamptimestamp with time zoneEnd time
tx_hashbyteaTransaction hash
block_hashbyteaBlock hash
timestamptimestamp with time zoneAction time
sequence_idnumericSequence identifier

Back to Top

Back to Post Schema

post.action_config

Stores post action configurations.

SELECT * FROM `lens-protocol-mainnet.post.action_config` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
action_addressbyteaAction address
typeUSER-DEFINEDAction type
feedbyteaFeed identifier
post_idbyteaPost identifier
setup_by_accountbyteaSetup account
decoded_config_paramsjsonbDecoded config parameters
disabledbooleanWhether action is disabled
timestamptimestamp with time zoneConfiguration time
sequence_idnumericSequence identifier
disable_extra_databyteaDisable extra data
enable_extra_databyteaEnable extra data
last_updated_sequence_idnumericLast update sequence ID
return_databyteaReturn data
raw_config_paramsjsonbRaw config parameters
appbyteaApp identifier
collect_nft_addressbyteaCollect NFT address

Back to Top

Back to Post Schema

post.action_executed

Records executed post actions.

SELECT * FROM `lens-protocol-mainnet.post.action_executed` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
action_addressbyteaAction address
typeUSER-DEFINEDAction type
feedbyteaFeed identifier
post_idbyteaPost identifier
raw_paramsbyteaRaw parameters
decoded_paramsjsonbDecoded parameters
timestamptimestamp with time zoneExecution time
sequence_idnumericSequence identifier
appbyteaApp identifier
accountbyteaExecuting account

Back to Top

Back to Post Schema

post.action_executed_by_account_count

Counts actions executed by accounts on posts.

SELECT * FROM `lens-protocol-mainnet.post.action_executed_by_account_count` LIMIT 1;
ColumnTypeDescription
action_addressbyteaAction address
post_idbyteaPost identifier
by_accountbyteaExecuting account
totalintegerExecution count

Back to Top

Back to Post Schema

post.action_executed_count

Counts actions executed on posts.

SELECT * FROM `lens-protocol-mainnet.post.action_executed_count` LIMIT 1;
ColumnTypeDescription
action_addressbyteaAction address
post_idbyteaPost identifier
totalintegerExecution count

Back to Top

Back to Post Schema

post.action_metadata

Stores metadata for post actions.

SELECT * FROM `lens-protocol-mainnet.post.action_metadata` LIMIT 1;
ColumnTypeDescription
actionbyteaAction identifier
metadata_uricharacter varyingMetadata URI
metadata_snapshot_location_urlcharacter varyingMetadata snapshot URL
metadatajsonbStored metadata
namecharacter varyingAction name
descriptioncharacter varyingAction description
metadata_versioncharacterMetadata version
created_ontimestamp with time zoneCreation time

Back to Top

Back to Post Schema

post.extra_data

Stores extra data for posts.

SELECT * FROM `lens-protocol-mainnet.post.extra_data` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
keybyteaData key
valuebyteaData value
postbyteaPost identifier
block_hashbyteaBlock hash
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
last_updated_sequence_idnumericLast update sequence ID
sequence_idnumericSequence identifier

Back to Top

Back to Post Schema

post.feed_tag_summary

Summarizes post tags by feed.

SELECT * FROM `lens-protocol-mainnet.post.feed_tag_summary` LIMIT 1;
ColumnTypeDescription
tagcharacter varyingTag name
feedbyteaFeed identifier
totalintegerUsage count

Back to Top

Back to Post Schema

post.group_mention

Records group mentions in posts.

SELECT * FROM `lens-protocol-mainnet.post.group_mention` LIMIT 1;
ColumnTypeDescription
mention_idintegerUnique identifier
postbyteaPost identifier
groupbyteaMentioned group
timestamptimestamp with time zoneMention time
sequence_idnumericSequence identifier

Back to Top

Back to Post Schema

post.hashtag

Records hashtags used in posts.

Previous was publication.hashtag in Lens V2

SELECT * FROM `lens-protocol-mainnet.post.hashtag` LIMIT 1;
ColumnTypeDescription
postbyteaPost identifier
hashtagcharacter varyingHashtag text

Back to Top

Back to Post Schema

post.metadata

Stores post metadata.

Previous was publication.metadata in Lens V2

SELECT * FROM `lens-protocol-mainnet.post.metadata` LIMIT 1;
ColumnTypeDescription
postbyteaPost identifier
metadata_snapshot_location_urlcharacter varyingMetadata snapshot URL
metadatajsonbStored metadata
metadata_versioncharacterMetadata version
contenttextPost content
content_vectortsvectorContent vector for search
languagecharacterLanguage code
regioncharacterRegion code
content_warningUSER-DEFINEDContent warning type
main_content_focusUSER-DEFINEDMain content focus
tags_vectortsvectorTags vector for search
is_encryptedbooleanWhether content is encrypted
created_attimestamp with time zoneCreation time
appbyteaApp identifier

Back to Top

Back to Post Schema

post.metadata_edited

Records edited post metadata.

SELECT * FROM `lens-protocol-mainnet.post.metadata_edited` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
postbyteaPost identifier
metadata_snapshot_location_urlcharacter varyingMetadata snapshot URL
metadatajsonbStored metadata
metadata_versioncharacterMetadata version
contenttextEdited content
content_vectortsvectorContent vector for search
languagecharacterLanguage code
regioncharacterRegion code
content_warningUSER-DEFINEDContent warning type
main_content_focusUSER-DEFINEDMain content focus
tags_vectortsvectorTags vector for search
is_encryptedbooleanWhether content is encrypted
created_attimestamp with time zoneEdit time

Back to Top

Back to Post Schema

post.reaction

Records reactions to posts.

Previous was publication.reaction in Lens V2

SELECT * FROM `lens-protocol-mainnet.post.reaction` LIMIT 1;
ColumnTypeDescription
postbyteaPost identifier
accountbyteaReacting account
typeUSER-DEFINEDReaction type
action_attimestamp with time zoneReaction time
appbyteaApp identifier

Back to Top

Back to Post Schema

post.reaction_summary

Summarizes reactions to posts.

Previous was global_stats.publication_reaction in Lens V2

SELECT * FROM `lens-protocol-mainnet.post.reaction_summary` LIMIT 1;
ColumnTypeDescription
postbyteaPost identifier
reaction_typeUSER-DEFINEDReaction type
totalintegerReaction count

Back to Top

Back to Post Schema

post.record

Stores post records.

Previous was publication.record in Lens V2

SELECT * FROM `lens-protocol-mainnet.post.record` LIMIT 1;
ColumnTypeDescription
idbyteaPost identifier
feed_local_sequential_idbyteaFeed sequential ID
legacy_idcharacter varyingLegacy post ID
feedbyteaFeed identifier
accountbyteaAuthor account
content_uricharacter varyingContent URI
post_typesJSONPost types
parent_postbyteaParent post
quoted_postbyteaQuoted post
root_postbyteaRoot post
appbyteaApp identifier
metadata_passedbooleanWhether metadata passed validation
is_deletedbooleanWhether post is deleted
is_hidden_by_parentbooleanWhether hidden by parent
is_editedbooleanWhether post is edited
block_hashbyteaBlock hash
tx_hashbyteaTransaction hash
timestamptimestamp with time zonePost time
sequence_idnumericSequence identifier
slugcharacter varyingURL slug

Back to Top

Back to Post Schema

post.rule_config

Stores post rule configurations.

SELECT * FROM `lens-protocol-mainnet.post.rule_config` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
rule_addressbyteaRule address
config_saltbyteaConfiguration salt
typeUSER-DEFINEDRule type
feedbyteaFeed identifier
post_idbyteaPost identifier
raw_config_paramsjsonbRaw config parameters
decoded_config_paramsjsonbDecoded config parameters
timestamptimestamp with time zoneConfiguration time
sequence_idnumericSequence identifier
last_updated_sequence_idnumericLast update sequence ID

Back to Top

Back to Post Schema

post.rule_selector

Stores post rule selectors.

SELECT * FROM `lens-protocol-mainnet.post.rule_selector` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
config_saltbyteaConfiguration salt
selectorUSER-DEFINEDRule selector
is_requiredbooleanWhether rule is required
timestamptimestamp with time zoneConfiguration time
sequence_idnumericSequence identifier
feedbyteaFeed identifier
post_idbyteaPost identifier
rule_addressbyteaRule address

Back to Top

Back to Post Schema

post.summary

Summarizes post statistics.

Previous was global_stats.publication in Lens V2

SELECT * FROM `lens-protocol-mainnet.post.summary` LIMIT 1;
ColumnTypeDescription
postbyteaPost identifier
total_amount_of_collectsintegerTotal collects
total_amount_of_collects_by_flagged_accountsintegerCollects by flagged accounts
total_amount_of_actedintegerTotal actions
total_amount_of_acted_by_flagged_accountsintegerActions by flagged accounts
total_amount_of_repostsintegerTotal reposts
total_amount_of_reposts_by_flagged_accountsintegerReposts by flagged accounts
total_amount_of_commentsintegerTotal comments
total_amount_of_comments_by_flagged_accountsintegerComments by flagged accounts
total_amount_of_comments_hidden_by_authorintegerComments hidden by author
total_amount_of_quotesintegerTotal quotes
total_amount_of_quotes_by_flagged_accountsintegerQuotes by flagged accounts
total_reactionsintegerTotal reactions
total_reactions_by_flagged_accountsintegerReactions by flagged accounts
total_bookmarksintegerTotal bookmarks
total_bookmarks_by_flagged_accountsintegerBookmarks by flagged accounts
total_amount_of_tipsintegerTotal tips
total_amount_of_tips_by_flagged_accountsintegerTips by flagged accounts

Repost/Mirros are not migrated from Lens V2. Total_reposts may not represent the actual numbers from Lens V2

Back to Top

Back to Post Schema

post.tag

Records tags used in posts.

Previous was publication.tag in Lens V2

SELECT * FROM `lens-protocol-mainnet.post.tag` LIMIT 1;
ColumnTypeDescription
postbyteaPost identifier
tagcharacter varyingTag text
tag_vectortsvectorTag vector for search
timestamptimestamp with time zoneTag time
sequence_idnumericSequence identifier

Back to Top

Back to Post Schema

post.tag_summary

Summarizes tag usage.

Previous was global_stats.publication_tag in Lens V2

SELECT * FROM `lens-protocol-mainnet.post.tag_summary` LIMIT 1;
ColumnTypeDescription
tagcharacter varyingTag text
totalintegerUsage count

Back to Top

Back to Post Schema

post.universal_action_config

Stores universal action configurations for posts.

SELECT * FROM `lens-protocol-mainnet.post.universal_action_config` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
action_addressbyteaAction address
typeUSER-DEFINEDAction type
raw_config_paramsjsonbRaw config parameters
decoded_config_paramsjsonbDecoded config parameters
timestamptimestamp with time zoneConfiguration time
sequence_idnumericSequence identifier

Back to Top

Back to Post Schema

Rule Schema

The Rule Schema manages platform rules and their configurations. It tracks rule definitions, configurations, and selectors that determine how rules are applied across different contexts in the platform.

Rule Schema Tables

rule.config

Stores rule configurations.

SELECT * FROM `lens-protocol-mainnet.rule.config` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
rule_addressbyteaRule address
config_saltbyteaConfiguration salt
typeUSER-DEFINEDRule type
primitivebyteaPrimitive address
raw_config_paramsjsonbRaw config parameters
decoded_config_paramsjsonbDecoded config parameters
timestamptimestamp with time zoneConfiguration time
sequence_idnumericSequence identifier
last_updated_sequence_idnumericLast update sequence ID

Back to Top

Back to Rule Schema

rule.selector

Stores rule selectors.

SELECT * FROM `lens-protocol-mainnet.rule.selector` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
config_saltbyteaConfiguration salt
selectorUSER-DEFINEDRule selector
is_requiredbooleanWhether rule is required
timestamptimestamp with time zoneConfiguration time
sequence_idnumericSequence identifier
primitivebyteaPrimitive address
rule_addressbyteaRule address

Back to Top

Back to Rule Schema

Sponsorship Schema

The Sponsorship Schema manages sponsor-related data in the platform. It tracks sponsorships, funds, grants, rate limits, signers, and metadata. This schema enables gas-free transactions and financial support mechanisms in the platform.

Sponsorship Schema Tables

sponsorship.exclusive

Records exclusive sponsorships.

SELECT * FROM `lens-protocol-mainnet.sponsorship.exclusive` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
sponsorshipbyteaSponsorship identifier
labelcharacter varyingSponsorship label
addressbyteaAddress
tx_hashbyteaTransaction hash
block_hashbyteaBlock hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier

Back to Top

Back to Sponsorship Schema

sponsorship.funds_spent

Records spent sponsorship funds.

SELECT * FROM `lens-protocol-mainnet.sponsorship.funds_spent` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
sponsorshipbyteaSponsorship identifier
scoped_grant_idbyteaGrant identifier
amountbyteaAmount spent
tx_hashbyteaTransaction hash
block_hashbyteaBlock hash
timestamptimestamp with time zoneSpending time
sequence_idnumericSequence identifier

Back to Top

Back to Sponsorship Schema

sponsorship.grant_given

Records sponsorship grants.

SELECT * FROM `lens-protocol-mainnet.sponsorship.grant_given` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
sponsorshipbyteaSponsorship identifier
scoped_grant_idbyteaGrant identifier
amountbyteaGrant amount
is_revokebooleanWhether grant is revoked
actioned_bybyteaAccount that performed the action
tx_hashbyteaTransaction hash
block_hashbyteaBlock hash
timestamptimestamp with time zoneGrant time
sequence_idnumericSequence identifier

Back to Top

Back to Sponsorship Schema

sponsorship.metadata

Stores sponsorship metadata.

SELECT * FROM `lens-protocol-mainnet.sponsorship.metadata` LIMIT 1;
ColumnTypeDescription
sponsorshipbyteaSponsorship identifier
metadata_uricharacter varyingMetadata URI
metadata_snapshot_location_urlcharacter varyingMetadata snapshot URL
metadatajsonbStored metadata
namecharacter varyingSponsorship name
descriptioncharacter varyingSponsorship description
metadata_versioncharacterMetadata version
created_ontimestamp with time zoneCreation time

Back to Top

Back to Sponsorship Schema

sponsorship.rate_limit

Records sponsorship rate limits.

SELECT * FROM `lens-protocol-mainnet.sponsorship.rate_limit` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
sponsorshipbyteaSponsorship identifier
global_windowUSER-DEFINEDGlobal time window
global_limitnumericGlobal limit
user_windowUSER-DEFINEDUser time window
user_limitnumericUser limit
tx_hashbyteaTransaction hash
block_hashbyteaBlock hash
timestamptimestamp with time zoneRate limit time
sequence_idnumericSequence identifier
last_updated_sequence_idnumericLast update sequence ID

Back to Top

Back to Sponsorship Schema

sponsorship.record

Stores sponsorship records.

SELECT * FROM `lens-protocol-mainnet.sponsorship.record` LIMIT 1;
ColumnTypeDescription
sponsorshipbyteaSponsorship identifier
block_hashbyteaBlock hash
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier
is_pausedbooleanWhether sponsorship is paused
paused_last_updated_sequence_idnumericPause update sequence ID

Back to Top

Back to Sponsorship Schema

sponsorship.signer

Records sponsorship signers.

SELECT * FROM `lens-protocol-mainnet.sponsorship.signer` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
sponsorshipbyteaSponsorship identifier
labelcharacter varyingSigner label
addressbyteaSigner address
is_lens_backend_signerbooleanWhether signer is Lens backend
block_hashbyteaBlock hash
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneSigner time
sequence_idnumericSequence identifier

Back to Top

Back to Sponsorship Schema

Username Schema

The Username Schema manages username-related data in the platform. It tracks username records, reservations, namespace records, and metadata. This schema ensures unique, human-readable user identifiers across the platform.

Username Schema Tables

username.metadata

Stores username namespace metadata.

SELECT * FROM `lens-protocol-mainnet.username.metadata` LIMIT 1;
ColumnTypeDescription
namespacebyteaNamespace identifier
metadata_uricharacter varyingMetadata URI
metadata_snapshot_location_urlcharacter varyingMetadata snapshot URL
metadatajsonbStored metadata
namecharacter varyingNamespace name
descriptioncharacter varyingNamespace description
metadata_versioncharacterMetadata version
created_ontimestamp with time zoneCreation time

Back to Top

Back to Username Schema

username.namespace_record

Records username namespaces.

Previous was namespace.record in Lens V2

SELECT * FROM `lens-protocol-mainnet.username.namespace_record` LIMIT 1;
ColumnTypeDescription
addressbyteaNamespace address
namespacecharacter varyingNamespace name
block_hashbyteaBlock hash
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier

Back to Top

Back to Username Schema

username.namespace_record_stats

Records namespace statistics.

SELECT * FROM `lens-protocol-mainnet.username.namespace_record_stats` LIMIT 1;
ColumnTypeDescription
namespacebyteaNamespace identifier
usernames_totalintegerTotal usernames count

Back to Top

Back to Username Schema

username.record

Stores username records.

Previous was namespace.handle in Lens V2

SELECT * FROM `lens-protocol-mainnet.username.record` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
namespacebyteaNamespace identifier
local_namecharacter varyingLocal username
accountbyteaAccount address
rule_databyteaRule data
block_hashbyteaBlock hash
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier
is_simple_charsetbooleanWhether simple charset is used
token_idbyteaToken ID
last_transfer_updated_sequence_idnumericLast transfer sequence ID

Back to Top

Back to Username Schema

username.reserved

Records reserved usernames.

SELECT * FROM `lens-protocol-mainnet.username.reserved` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
namespacebyteaNamespace identifier
local_namecharacter varyingReserved username
config_saltbyteaConfiguration salt
block_hashbyteaBlock hash
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneReservation time
sequence_idnumericSequence identifier

Back to Top

Back to Username Schema

Miscellaneous Schema

The Miscellaneous Schema contains tables that don't fit into other categories. It includes currency records, transaction tracking, and extra data storage. These tables support various platform functions that aren't specific to a single domain.

Miscellaneous Schema Tables

currencies.record

Records supported currencies.

Previous was enabled.currency in Lens V2

SELECT * FROM `lens-protocol-mainnet.currencies.record` LIMIT 1;
ColumnTypeDescription
currencybyteaCurrency address
namecharacter varyingCurrency name
pretty_namecharacter varyingFormatted currency name
symbolcharacter varyingCurrency symbol
decimalsintegerDecimal places
verifiedbooleanVerification status
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
sequence_idnumericSequence identifier

Back to Top

Back to Miscellaneous Schema

transaction.known_transactions

Records known transactions.

SELECT * FROM `lens-protocol-mainnet.transaction.known_transactions` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
tx_hashbyteaTransaction hash
indexing_statusUSER-DEFINEDIndexing status
failed_reasoncharacter varyingFailure reason
block_hashbyteaBlock hash
block_timestamptimestamp with time zoneBlock timestamp
sequence_idnumericSequence identifier
operationUSER-DEFINEDOperation type
dependencies_operationsJSONDependent operations

Back to Top

Back to Miscellaneous Schema

extra_data.record

Stores extra data records.

SELECT * FROM `lens-protocol-mainnet.extra_data.record` LIMIT 1;
ColumnTypeDescription
idintegerUnique identifier
keybyteaKey
valuebyteaValue
primitivebyteaPrimitive
block_hashbyteaHash of the block containing this record
tx_hashbyteaTransaction hash
timestamptimestamp with time zoneRecord time
last_updated_sequence_idnumericLast update sequence ID
sequence_idnumericSequence identifier

Back to Top

Back to Miscellaneous Schema