-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate EVM typegen to new codec (#261)
- Loading branch information
Showing
18 changed files
with
627 additions
and
882 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
common/changes/@subsquid/evm-abi/new-evm-typegen_2024-05-03-08-59.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@subsquid/evm-abi", | ||
"comment": "Added types for event arguments, function parameters and return values", | ||
"type": "minor" | ||
} | ||
], | ||
"packageName": "@subsquid/evm-abi" | ||
} |
10 changes: 10 additions & 0 deletions
10
common/changes/@subsquid/evm-typegen/new-evm-typegen_2024-05-03-08-59.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@subsquid/evm-typegen", | ||
"comment": "Migrate typegen to new codec; Drop dependency to ethers.js", | ||
"type": "major" | ||
} | ||
], | ||
"packageName": "@subsquid/evm-typegen" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
export { ContractBase } from './contract-base' | ||
|
||
export { indexed } from './indexed' | ||
export { fun, AbiFunction } from './abi-components/function' | ||
export { event, AbiEvent, type EventRecord } from './abi-components/event' | ||
export { fun, AbiFunction, type FunctionReturn, type FunctionArguments } from './abi-components/function' | ||
export { event, AbiEvent, type EventRecord, type EventParams } from './abi-components/event' | ||
import keccak256 from 'keccak256' | ||
export { keccak256 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.