Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollupmetadata #34

Merged
merged 2 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.1",
"version": "1.3.2",
"description": "blockchain data indexer",
"type": "module",
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions schemas/bridge_assets.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ message Networks {
uint32 destination = 2;
}

message RollupMetaData {
message RollUpMetaData {
string bridgeContractAddress = 1;
string globalExitRootManager = 2;
Networks networks = 3;
Expand All @@ -26,7 +26,7 @@ message ExitRoots {

message BridgeAssets {
message BridgeEvent {
RollupMetaData rollupMetaData = 1;
RollUpMetaData rollUpMetaData = 1;
string transactionHash = 2;
TokenInfo tokenInfo = 3;
string receiver = 4;
Expand Down
2 changes: 1 addition & 1 deletion schemas/claim_assets.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import public "bridge_assets.proto";

message ClaimAssets {
message ClaimEvent {
RollupMetaData rollupMetaData = 1;
RollUpMetaData rollUpMetaData = 1;
string transactionHash = 2;
TokenInfo tokenInfo = 3;
string receiver = 4;
Expand Down
Loading