Skip to content

Commit

Permalink
Update CLMM types in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
hieuh25 committed Oct 4, 2024
1 parent 7b0a184 commit 63baaf9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tradingstrategy/clmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ def get_pyarrow_schema(cls) -> pa.Schema:
schema = pa.schema([
("pair_id", pa.int32()),
("bucket", pa.timestamp("s")),
("open_tick", pa.uint32()),
("close_tick", pa.uint32()),
("high_tick", pa.uint32()),
("low_tick", pa.uint32()),
("open_tick", pa.int32()),
("close_tick", pa.int32()),
("high_tick", pa.int32()),
("low_tick", pa.int32()),
("current_liquidity", pa.decimal256(76)),
("net_amount0", pa.decimal256(76)),
("net_amount1", pa.decimal256(76)),
Expand Down

0 comments on commit 63baaf9

Please sign in to comment.