Skip to content

Commit

Permalink
use string type for tokenIds on pos
Browse files Browse the repository at this point in the history
  • Loading branch information
py-zoid committed Apr 24, 2024
1 parent cc4d1fc commit 70bbbd5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@maticnetwork/chain-indexer-framework",
"version": "1.3.5",
"version": "1.3.6",
"description": "blockchain data indexer",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/depositblock.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ message DepositBlock {
required string depositReceiver = 5;
required string rootToken = 6;
repeated string amounts = 7;
repeated uint64 tokenIds = 8;
repeated string tokenIds = 8;
string rootTunnelAddress = 9;
bool refuel = 10;
string nonce = 11;
Expand Down
2 changes: 1 addition & 1 deletion schemas/withdrawblock.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ message WithdrawBlock {
uint64 burnTransactionBlockNumber = 6;
string transactionType = 7;
repeated string amounts = 8;
repeated uint64 tokenIds = 9;
repeated string tokenIds = 9;
required bool isDecoded = 10;
required string rootToken = 11;
string rootTunnel = 12;
Expand Down

0 comments on commit 70bbbd5

Please sign in to comment.