Skip to content

Commit

Permalink
modify seaport column to avoid integer overflow (#1470)
Browse files Browse the repository at this point in the history
  • Loading branch information
sohwak authored Aug 31, 2022
1 parent 5a48cc9 commit 0a0236a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions deprecated-dune-v1-abstractions/polygon/seaport/transactions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ CREATE TABLE IF NOT EXISTS seaport.transactions (
,order_type text
,purchase_method text
,trade_type text
,nft_transfer_count int8
,nft_item_count int8
,nft_transfer_count numeric
,nft_item_count numeric
,seller bytea
,buyer bytea
,original_currency_contract bytea
Expand All @@ -24,10 +24,10 @@ CREATE TABLE IF NOT EXISTS seaport.transactions (
,royalty_amount numeric
,royalty_amount_raw numeric
,royalty_usd_amount numeric
,erc721_transfer_count int8
,erc1155_transfer_count int8
,erc721_item_count int8
,erc1155_item_count int8
,erc721_transfer_count numeric
,erc1155_transfer_count numeric
,erc721_item_count numeric
,erc1155_item_count numeric
,exchange_contract_address bytea
,zone_address bytea
,platform text
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CREATE TABLE IF NOT EXISTS seaport.transfers (
,order_type text
,purchase_method text
,trade_type text
,nft_item_count int8
,nft_item_count numeric
,seller bytea
,buyer bytea
,original_currency_contract bytea
Expand Down

0 comments on commit 0a0236a

Please sign in to comment.