Skip to content

Commit

Permalink
table_name -> tableName
Browse files Browse the repository at this point in the history
  • Loading branch information
melotik committed Aug 16, 2024
1 parent 4aae4d1 commit f389903
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions schemas/dex-aggregator/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"tables": [
{
"label": "Tokens",
"table_name": "dex_agg_tokens",
"tableName": "dex_agg_tokens",
"aggregation": "none",
"description": "List of tokens supported by the protocol.",
"properties": {
Expand Down Expand Up @@ -33,7 +33,7 @@
},
{
"label": "Token Snapshot",
"table_name": "dex_agg_token_metrics",
"tableName": "dex_agg_token_metrics",
"aggregation": "daily",
"description": "Volume, fees, and incentives data at the token level.",
"properties": {
Expand Down Expand Up @@ -77,7 +77,7 @@
},
{
"label": "Protocol Snapshot",
"table_name": "dex_agg_metrics",
"tableName": "dex_agg_metrics",
"aggregation": "daily",
"description": "Volume and fees data at the protocol level.",
"properties": {
Expand All @@ -101,7 +101,7 @@
},
{
"label": "Trades",
"table_name": "dex_agg_trades",
"tableName": "dex_agg_trades",
"aggregation": "transaction",
"description": "List of trades executed on the protocol.",
"properties": {
Expand Down
22 changes: 11 additions & 11 deletions schemas/dex/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"tables": [
{
"label": "Pools",
"table_name": "dex_pools",
"tableName": "dex_pools",
"aggregation": "none",
"description": "List of LP pools in this protocol (one entry per token in a pool).",
"properties": {
Expand Down Expand Up @@ -61,7 +61,7 @@
},
{
"label": "LP Position Snapshot",
"table_name": "lp_position_snapshot",
"tableName": "lp_position_snapshot",
"aggregation": "none",
"description": "Snapshot of LP positions.",
"properties": {
Expand Down Expand Up @@ -105,7 +105,7 @@
},
{
"label": "Pool Snapshot",
"table_name": "pool_snapshot",
"tableName": "pool_snapshot",
"aggregation": "none",
"description": "Snapshot of pool states.",
"properties": {
Expand Down Expand Up @@ -169,7 +169,7 @@
},
{
"label": "Trades (All DEX Types)",
"table_name": "dex_trades",
"tableName": "dex_trades",
"aggregation": "none",
"description": "All trades across different types of DEXs.",
"properties": {
Expand Down Expand Up @@ -245,7 +245,7 @@
},
{
"label": "User Score Snapshot",
"table_name": "user_score_snapshot",
"tableName": "user_score_snapshot",
"aggregation": "none",
"description": "Snapshot of user scores.",
"properties": {
Expand Down Expand Up @@ -281,7 +281,7 @@
},
{
"label": "V2 Mints",
"table_name": "v2_mints",
"tableName": "v2_mints",
"aggregation": "none",
"description": "Mint events for V2.",
"properties": {
Expand Down Expand Up @@ -341,7 +341,7 @@
},
{
"label": "V2 Burns",
"table_name": "v2_burns",
"tableName": "v2_burns",
"aggregation": "none",
"description": "Burn events for V2.",
"properties": {
Expand Down Expand Up @@ -409,7 +409,7 @@
},
{
"label": "V2 Syncs",
"table_name": "v2_syncs",
"tableName": "v2_syncs",
"aggregation": "none",
"description": "Sync events for V2.",
"properties": {
Expand Down Expand Up @@ -457,7 +457,7 @@
},
{
"label": "V2 Transfers",
"table_name": "v2_transfers",
"tableName": "v2_transfers",
"aggregation": "none",
"description": "Transfer events for V2.",
"properties": {
Expand Down Expand Up @@ -505,7 +505,7 @@
},
{
"label": "V3 Events",
"table_name": "v3_events",
"tableName": "v3_events",
"aggregation": "none",
"description": "Events for V3.",
"properties": {
Expand Down Expand Up @@ -589,7 +589,7 @@
},
{
"label": "V3 Transfers",
"table_name": "v3_transfers",
"tableName": "v3_transfers",
"aggregation": "none",
"description": "Transfer events for V3.",
"properties": {
Expand Down
6 changes: 3 additions & 3 deletions schemas/lending/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"tables": [
{
"label": "Pools",
"table_name": "lending_pools",
"tableName": "lending_pools",
"aggregation": "none",
"description": "List of pools in the lending protocol.",
"properties": {
Expand Down Expand Up @@ -49,7 +49,7 @@
},
{
"label": "Position Snapshot",
"table_name": "lending_position_snapshot",
"tableName": "lending_position_snapshot",
"aggregation": "daily",
"description": "Snapshot of user positions in the lending protocol.",
"properties": {
Expand Down Expand Up @@ -105,7 +105,7 @@
},
{
"label": "Pool Snapshot",
"table_name": "lending_pool_snapshot",
"tableName": "lending_pool_snapshot",
"aggregation": "daily",
"description": "Snapshot of the pool's state in the lending protocol.",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/nft/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"tables": [
{
"label": "NFT Transfers",
"table_name": "nft_transfers",
"tableName": "nft_transfers",
"aggregation": "transaction",
"description": "List of NFT transfers.",
"properties": {
Expand Down

0 comments on commit f389903

Please sign in to comment.