Skip to content

Commit

Permalink
Updated package
Browse files Browse the repository at this point in the history
Changed table schema to use new type
  • Loading branch information
RaekwonIII committed Feb 16, 2023
1 parent 208c285 commit 7b029aa
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@subsquid/archive-registry": "^2.1.4",
"@subsquid/big-decimal": "^0.0.0",
"@subsquid/evm-processor": "^0.3.2",
"@subsquid/file-store-csv": "^0.1.0",
"@subsquid/file-store-csv": "^0.2.0",
"dotenv": "^16.0.0",
"ethers": "^5.6.4"
},
Expand Down
2 changes: 1 addition & 1 deletion src/tables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const Transfers = new Table(
'transfers.csv',
{
blockNumber: Column(Types.Integer()),
timestamp: Column(Types.DateTime()),
timestamp: Column(Types.Timestamp()),
contractAddress: Column(Types.String()),
from: Column(Types.String()),
to: Column(Types.String()),
Expand Down

0 comments on commit 7b029aa

Please sign in to comment.