Skip to content

Commit

Permalink
Merge pull request #1133 from moonstream-to/game7-mainnet-migration
Browse files Browse the repository at this point in the history
Game7 mainnet tables migration
  • Loading branch information
kompotkot authored Oct 14, 2024
2 parents fcd4daf + 1fc774b commit b27a9d4
Show file tree
Hide file tree
Showing 7 changed files with 203 additions and 1 deletion.
2 changes: 2 additions & 0 deletions moonstreamdb-v3/moonstreamdbv3/alembic/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
BlastLabel,
BlastSepoliaLabel,
EthereumLabel,
Game7Label,
Game7OrbitArbitrumSepoliaLabel,
Game7TestnetLabel,
ImxZkevmLabel,
Expand Down Expand Up @@ -71,6 +72,7 @@ def include_symbol(tablename, schema):
ArbitrumNovaLabel.__tablename__,
ArbitrumOneLabel.__tablename__,
ArbitrumSepoliaLabel.__tablename__,
Game7Label.__tablename__,
Game7OrbitArbitrumSepoliaLabel.__tablename__,
Game7TestnetLabel.__tablename__,
XaiLabel.__tablename__,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
"""Add Game7 mainnet labels
Revision ID: d816689b786a
Revises: 1d53afc1eff4
Create Date: 2024-10-14 15:58:21.374247
"""
from typing import Sequence, Union

from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import postgresql

# revision identifiers, used by Alembic.
revision: str = 'd816689b786a'
down_revision: Union[str, None] = '1d53afc1eff4'
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.create_table('game7_labels',
sa.Column('id', sa.UUID(), nullable=False),
sa.Column('label', sa.VARCHAR(length=256), nullable=False),
sa.Column('transaction_hash', sa.VARCHAR(length=128), nullable=False),
sa.Column('log_index', sa.Integer(), nullable=True),
sa.Column('block_number', sa.BigInteger(), nullable=False),
sa.Column('block_hash', sa.VARCHAR(length=256), nullable=False),
sa.Column('block_timestamp', sa.BigInteger(), nullable=False),
sa.Column('caller_address', sa.LargeBinary(), nullable=True),
sa.Column('origin_address', sa.LargeBinary(), nullable=True),
sa.Column('address', sa.LargeBinary(), nullable=False),
sa.Column('label_name', sa.Text(), nullable=True),
sa.Column('label_type', sa.VARCHAR(length=64), nullable=True),
sa.Column('label_data', postgresql.JSONB(astext_type=sa.Text()), nullable=True),
sa.Column('created_at', sa.DateTime(timezone=True), server_default=sa.text("TIMEZONE('utc', statement_timestamp())"), nullable=False),
sa.PrimaryKeyConstraint('id', name=op.f('pk_game7_labels')),
sa.UniqueConstraint('id', name=op.f('uq_game7_labels_id'))
)
op.create_index('ix_game7_labels_addr_block_num', 'game7_labels', ['address', 'block_number'], unique=False)
op.create_index('ix_game7_labels_addr_block_ts', 'game7_labels', ['address', 'block_timestamp'], unique=False)
op.create_index(op.f('ix_game7_labels_address'), 'game7_labels', ['address'], unique=False)
op.create_index(op.f('ix_game7_labels_block_number'), 'game7_labels', ['block_number'], unique=False)
op.create_index(op.f('ix_game7_labels_caller_address'), 'game7_labels', ['caller_address'], unique=False)
op.create_index(op.f('ix_game7_labels_label'), 'game7_labels', ['label'], unique=False)
op.create_index(op.f('ix_game7_labels_label_name'), 'game7_labels', ['label_name'], unique=False)
op.create_index(op.f('ix_game7_labels_label_type'), 'game7_labels', ['label_type'], unique=False)
op.create_index(op.f('ix_game7_labels_origin_address'), 'game7_labels', ['origin_address'], unique=False)
op.create_index(op.f('ix_game7_labels_transaction_hash'), 'game7_labels', ['transaction_hash'], unique=False)
op.create_index('uk_game7_labels_tx_hash_log_idx_evt', 'game7_labels', ['transaction_hash', 'log_index'], unique=True, postgresql_where=sa.text("label='seer' and label_type='event'"))
op.create_index('uk_game7_labels_tx_hash_log_idx_evt_raw', 'game7_labels', ['transaction_hash', 'log_index'], unique=True, postgresql_where=sa.text("label='seer-raw' and label_type='event'"))
op.create_index('uk_game7_labels_tx_hash_tx_call', 'game7_labels', ['transaction_hash'], unique=True, postgresql_where=sa.text("label='seer' and label_type='tx_call'"))
op.create_index('uk_game7_labels_tx_hash_tx_call_raw', 'game7_labels', ['transaction_hash'], unique=True, postgresql_where=sa.text("label='seer-raw' and label_type='tx_call'"))
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.drop_index('uk_game7_labels_tx_hash_tx_call_raw', table_name='game7_labels', postgresql_where=sa.text("label='seer-raw' and label_type='tx_call'"))
op.drop_index('uk_game7_labels_tx_hash_tx_call', table_name='game7_labels', postgresql_where=sa.text("label='seer' and label_type='tx_call'"))
op.drop_index('uk_game7_labels_tx_hash_log_idx_evt_raw', table_name='game7_labels', postgresql_where=sa.text("label='seer-raw' and label_type='event'"))
op.drop_index('uk_game7_labels_tx_hash_log_idx_evt', table_name='game7_labels', postgresql_where=sa.text("label='seer' and label_type='event'"))
op.drop_index(op.f('ix_game7_labels_transaction_hash'), table_name='game7_labels')
op.drop_index(op.f('ix_game7_labels_origin_address'), table_name='game7_labels')
op.drop_index(op.f('ix_game7_labels_label_type'), table_name='game7_labels')
op.drop_index(op.f('ix_game7_labels_label_name'), table_name='game7_labels')
op.drop_index(op.f('ix_game7_labels_label'), table_name='game7_labels')
op.drop_index(op.f('ix_game7_labels_caller_address'), table_name='game7_labels')
op.drop_index(op.f('ix_game7_labels_block_number'), table_name='game7_labels')
op.drop_index(op.f('ix_game7_labels_address'), table_name='game7_labels')
op.drop_index('ix_game7_labels_addr_block_ts', table_name='game7_labels')
op.drop_index('ix_game7_labels_addr_block_num', table_name='game7_labels')
op.drop_table('game7_labels')
# ### end Alembic commands ###
4 changes: 4 additions & 0 deletions moonstreamdb-v3/moonstreamdbv3/alembic_indexes/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,12 @@
EthereumLogIndex,
EthereumReorgs,
EthereumTransactionIndex,
Game7BlockIndex,
Game7OrbitArbitrumSepoliaBlockIndex,
Game7OrbitArbitrumSepoliaLogIndex,
Game7OrbitArbitrumSepoliaReorgs,
Game7OrbitArbitrumSepoliaTransactionIndex,
Game7Reorgs,
Game7TestnetBlockIndex,
Game7TestnetLogIndex,
Game7TestnetReorgs,
Expand Down Expand Up @@ -113,6 +115,8 @@ def include_symbol(tablename, schema):
Game7OrbitArbitrumSepoliaTransactionIndex.__tablename__,
Game7OrbitArbitrumSepoliaLogIndex.__tablename__,
Game7OrbitArbitrumSepoliaReorgs.__tablename__,
Game7BlockIndex.__tablename__,
Game7Reorgs.__tablename__,
Game7TestnetBlockIndex.__tablename__,
Game7TestnetTransactionIndex.__tablename__,
Game7TestnetLogIndex.__tablename__,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
"""Add Game7 mainnet indexes
Revision ID: c1bc596631f9
Revises: 6807bdf6f417
Create Date: 2024-10-14 16:10:27.757094
"""
from typing import Sequence, Union

from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision: str = 'c1bc596631f9'
down_revision: Union[str, None] = '6807bdf6f417'
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.create_table('game7_blocks',
sa.Column('l1_block_number', sa.BigInteger(), nullable=False),
sa.Column('block_number', sa.BigInteger(), nullable=False),
sa.Column('block_hash', sa.VARCHAR(length=256), nullable=False),
sa.Column('block_timestamp', sa.BigInteger(), nullable=False),
sa.Column('parent_hash', sa.VARCHAR(length=256), nullable=False),
sa.Column('row_id', sa.BigInteger(), nullable=False),
sa.Column('path', sa.Text(), nullable=False),
sa.Column('transactions_indexed_at', sa.DateTime(timezone=True), nullable=True),
sa.Column('logs_indexed_at', sa.DateTime(timezone=True), nullable=True),
sa.Column('indexed_at', sa.DateTime(timezone=True), server_default=sa.text("TIMEZONE('utc', statement_timestamp())"), nullable=False),
sa.PrimaryKeyConstraint('block_number', name=op.f('pk_game7_blocks'))
)
op.create_index(op.f('ix_game7_blocks_block_number'), 'game7_blocks', ['block_number'], unique=False)
op.create_index(op.f('ix_game7_blocks_block_timestamp'), 'game7_blocks', ['block_timestamp'], unique=False)
op.create_table('game7_reorgs',
sa.Column('id', sa.UUID(), nullable=False),
sa.Column('block_number', sa.BigInteger(), nullable=False),
sa.Column('block_hash', sa.VARCHAR(length=256), nullable=False),
sa.PrimaryKeyConstraint('id', name=op.f('pk_game7_reorgs'))
)
op.create_index(op.f('ix_game7_reorgs_block_hash'), 'game7_reorgs', ['block_hash'], unique=False)
op.create_index(op.f('ix_game7_reorgs_block_number'), 'game7_reorgs', ['block_number'], unique=False)
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.drop_index(op.f('ix_game7_reorgs_block_number'), table_name='game7_reorgs')
op.drop_index(op.f('ix_game7_reorgs_block_hash'), table_name='game7_reorgs')
op.drop_table('game7_reorgs')
op.drop_index(op.f('ix_game7_blocks_block_timestamp'), table_name='game7_blocks')
op.drop_index(op.f('ix_game7_blocks_block_number'), table_name='game7_blocks')
op.drop_table('game7_blocks')
# ### end Alembic commands ###
45 changes: 45 additions & 0 deletions moonstreamdb-v3/moonstreamdbv3/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1289,6 +1289,51 @@ class ImxZkevmSepoliaLabel(EvmBasedLabel): # type: ignore
)


class Game7Label(EvmBasedLabel): # type: ignore
__tablename__ = "game7_labels"

__table_args__ = (
Index(
"ix_game7_labels_addr_block_num",
"address",
"block_number",
unique=False,
),
Index(
"ix_game7_labels_addr_block_ts",
"address",
"block_timestamp",
unique=False,
),
Index(
"uk_game7_labels_tx_hash_tx_call",
"transaction_hash",
unique=True,
postgresql_where=text("label='seer' and label_type='tx_call'"),
),
Index(
"uk_game7_labels_tx_hash_log_idx_evt",
"transaction_hash",
"log_index",
unique=True,
postgresql_where=text("label='seer' and label_type='event'"),
),
Index(
"uk_game7_labels_tx_hash_tx_call_raw",
"transaction_hash",
unique=True,
postgresql_where=text("label='seer-raw' and label_type='tx_call'"),
),
Index(
"uk_game7_labels_tx_hash_log_idx_evt_raw",
"transaction_hash",
"log_index",
unique=True,
postgresql_where=text("label='seer-raw' and label_type='event'"),
),
)


class Game7TestnetLabel(EvmBasedLabel): # type: ignore
__tablename__ = "game7_testnet_labels"

Expand Down
19 changes: 19 additions & 0 deletions moonstreamdb-v3/moonstreamdbv3/models_indexes.py
Original file line number Diff line number Diff line change
Expand Up @@ -727,6 +727,22 @@ class ImxZkevmSepoliaReorgs(EvmBasedReorgs):
__tablename__ = "imx_zkevm_sepolia_reorgs"


# Game7


class Game7BlockIndex(EvmBasedBlocks):
__tablename__ = "game7_blocks"

l1_block_number = Column(BigInteger, nullable=False)


class Game7Reorgs(EvmBasedReorgs):
__tablename__ = "game7_reorgs"


# Game7 Testnet


class Game7TestnetBlockIndex(EvmBasedBlocks):
__tablename__ = "game7_testnet_blocks"

Expand Down Expand Up @@ -775,6 +791,9 @@ class Game7TestnetReorgs(EvmBasedReorgs):
__tablename__ = "game7_testnet_reorgs"


# B3


class B3BlockIndex(EvmBasedBlocks):
__tablename__ = "b3_blocks"

Expand Down
2 changes: 1 addition & 1 deletion moonstreamdb-v3/moonstreamdbv3/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.19
0.0.20

0 comments on commit b27a9d4

Please sign in to comment.