backend metadata; approved tokens; logging.toml;

This commit is contained in:
Tim
2024-03-18 18:06:16 -04:00
parent 94839ce37a
commit 91dee5c030
19 changed files with 375 additions and 75 deletions

View File

@@ -80,6 +80,7 @@ def upgrade() -> None:
sa.Column('name', sa.String(), nullable=False),
sa.Column('symbol', sa.String(), nullable=False),
sa.Column('decimals', sa.SMALLINT(), nullable=False),
sa.Column('approved', sa.Boolean(), nullable=False),
sa.PrimaryKeyConstraint('chain', 'address')
)
op.create_table('pool',