Skip to content

Commit

Permalink
fix(types): update TransactionReceipt type
Browse files Browse the repository at this point in the history
- block_number should be number instead of string
  • Loading branch information
dhruvkelawala committed Feb 4, 2022
1 parent d10c32b commit 9f9f6a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export type TransactionReceipt = {
transaction_hash: string;
transaction_index: number;
block_hash: string;
block_number: string;
block_number: number;
l2_to_l1_messages: string[];
events: string[];
};

0 comments on commit 9f9f6a2

Please sign in to comment.