-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrey
committed
Aug 5, 2024
1 parent
58e42f9
commit 912f3e4
Showing
20 changed files
with
626 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Moonstream library and API version. | ||
""" | ||
|
||
MOONSTREAMAPI_VERSION = "0.4.6" | ||
MOONSTREAMAPI_VERSION = "0.4.7" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
195 changes: 195 additions & 0 deletions
195
moonstreamdb-v3/moonstreamdbv3/alembic/versions/db9559f9566c_add_game7_testnet.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
"""Add game7 testnet | ||
Revision ID: db9559f9566c | ||
Revises: 211646463e9f | ||
Create Date: 2024-08-05 16:24:26.159323 | ||
""" | ||
|
||
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 = "db9559f9566c" | ||
down_revision: Union[str, None] = "211646463e9f" | ||
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_testnet_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_testnet_labels")), | ||
sa.UniqueConstraint("id", name=op.f("uq_game7_testnet_labels_id")), | ||
) | ||
op.create_index( | ||
"ix_game7_testnet_labels_addr_block_num", | ||
"game7_testnet_labels", | ||
["address", "block_number"], | ||
unique=False, | ||
) | ||
op.create_index( | ||
"ix_game7_testnet_labels_addr_block_ts", | ||
"game7_testnet_labels", | ||
["address", "block_timestamp"], | ||
unique=False, | ||
) | ||
op.create_index( | ||
op.f("ix_game7_testnet_labels_address"), | ||
"game7_testnet_labels", | ||
["address"], | ||
unique=False, | ||
) | ||
op.create_index( | ||
op.f("ix_game7_testnet_labels_block_number"), | ||
"game7_testnet_labels", | ||
["block_number"], | ||
unique=False, | ||
) | ||
op.create_index( | ||
op.f("ix_game7_testnet_labels_caller_address"), | ||
"game7_testnet_labels", | ||
["caller_address"], | ||
unique=False, | ||
) | ||
op.create_index( | ||
op.f("ix_game7_testnet_labels_label"), | ||
"game7_testnet_labels", | ||
["label"], | ||
unique=False, | ||
) | ||
op.create_index( | ||
op.f("ix_game7_testnet_labels_label_name"), | ||
"game7_testnet_labels", | ||
["label_name"], | ||
unique=False, | ||
) | ||
op.create_index( | ||
op.f("ix_game7_testnet_labels_label_type"), | ||
"game7_testnet_labels", | ||
["label_type"], | ||
unique=False, | ||
) | ||
op.create_index( | ||
op.f("ix_game7_testnet_labels_origin_address"), | ||
"game7_testnet_labels", | ||
["origin_address"], | ||
unique=False, | ||
) | ||
op.create_index( | ||
op.f("ix_game7_testnet_labels_transaction_hash"), | ||
"game7_testnet_labels", | ||
["transaction_hash"], | ||
unique=False, | ||
) | ||
op.create_index( | ||
"uk_game7_testnet_labels_tx_hash_log_idx_evt", | ||
"game7_testnet_labels", | ||
["transaction_hash", "log_index"], | ||
unique=True, | ||
postgresql_where=sa.text("label='seer' and label_type='event'"), | ||
) | ||
op.create_index( | ||
"uk_game7_testnet_labels_tx_hash_log_idx_evt_raw", | ||
"game7_testnet_labels", | ||
["transaction_hash", "log_index"], | ||
unique=True, | ||
postgresql_where=sa.text("label='seer-raw' and label_type='event'"), | ||
) | ||
op.create_index( | ||
"uk_game7_testnet_labels_tx_hash_tx_call", | ||
"game7_testnet_labels", | ||
["transaction_hash"], | ||
unique=True, | ||
postgresql_where=sa.text("label='seer' and label_type='tx_call'"), | ||
) | ||
op.create_index( | ||
"uk_game7_testnet_labels_tx_hash_tx_call_raw", | ||
"game7_testnet_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_testnet_labels_tx_hash_tx_call_raw", | ||
table_name="game7_testnet_labels", | ||
postgresql_where=sa.text("label='seer-raw' and label_type='tx_call'"), | ||
) | ||
op.drop_index( | ||
"uk_game7_testnet_labels_tx_hash_tx_call", | ||
table_name="game7_testnet_labels", | ||
postgresql_where=sa.text("label='seer' and label_type='tx_call'"), | ||
) | ||
op.drop_index( | ||
"uk_game7_testnet_labels_tx_hash_log_idx_evt_raw", | ||
table_name="game7_testnet_labels", | ||
postgresql_where=sa.text("label='seer-raw' and label_type='event'"), | ||
) | ||
op.drop_index( | ||
"uk_game7_testnet_labels_tx_hash_log_idx_evt", | ||
table_name="game7_testnet_labels", | ||
postgresql_where=sa.text("label='seer' and label_type='event'"), | ||
) | ||
op.drop_index( | ||
op.f("ix_game7_testnet_labels_transaction_hash"), | ||
table_name="game7_testnet_labels", | ||
) | ||
op.drop_index( | ||
op.f("ix_game7_testnet_labels_origin_address"), | ||
table_name="game7_testnet_labels", | ||
) | ||
op.drop_index( | ||
op.f("ix_game7_testnet_labels_label_type"), table_name="game7_testnet_labels" | ||
) | ||
op.drop_index( | ||
op.f("ix_game7_testnet_labels_label_name"), table_name="game7_testnet_labels" | ||
) | ||
op.drop_index( | ||
op.f("ix_game7_testnet_labels_label"), table_name="game7_testnet_labels" | ||
) | ||
op.drop_index( | ||
op.f("ix_game7_testnet_labels_caller_address"), | ||
table_name="game7_testnet_labels", | ||
) | ||
op.drop_index( | ||
op.f("ix_game7_testnet_labels_block_number"), table_name="game7_testnet_labels" | ||
) | ||
op.drop_index( | ||
op.f("ix_game7_testnet_labels_address"), table_name="game7_testnet_labels" | ||
) | ||
op.drop_index( | ||
"ix_game7_testnet_labels_addr_block_ts", table_name="game7_testnet_labels" | ||
) | ||
op.drop_index( | ||
"ix_game7_testnet_labels_addr_block_num", table_name="game7_testnet_labels" | ||
) | ||
op.drop_table("game7_testnet_labels") | ||
# ### end Alembic commands ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.