Skip to content

Commit

Permalink
Remove AccessList
Browse files Browse the repository at this point in the history
  • Loading branch information
zolting committed Nov 26, 2024
1 parent 627144a commit 13e655b
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions proto/starknet.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ option go_package = "github.com/streamingfast/firehose-starknet/pb/sf/starknet/t
message EventsOutput {
repeated Block blocks = 1;
repeated Transaction transactions = 2;
repeated AccessList access_lists = 3;
repeated Events events = 4;
repeated Call calls = 5;
}
Expand Down Expand Up @@ -90,23 +89,6 @@ message Transaction {
string revert_reason = 52;
}

message AccessList {
// clock
google.protobuf.Timestamp block_time = 1;
uint64 block_number = 2;
string block_date = 3;
string block_hash = 4;

// transaction
string tx_hash = 5;
bool tx_success = 6;
uint32 index = 7; // Index of the access list entry in the transaction

// access list
string address = 8;
repeated string storage_keys = 9;
}

message Events {
// clock
google.protobuf.Timestamp block_time = 1;
Expand Down

0 comments on commit 13e655b

Please sign in to comment.