Skip to content

Commit

Permalink
Merge pull request #564 from eqlabs/docs_starknet_abi
Browse files Browse the repository at this point in the history
docs: describe Starknet L1 ABI update process
  • Loading branch information
Mirko-von-Leipzig committed Sep 5, 2022
2 parents 8a7199b + 5a9dce8 commit 30ed930
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions crates/pathfinder/src/ethereum/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,15 @@ mod tests {
// Checks that Starknet's core proxy contract still points to the same
// core implementation contract. If this address changes, we should
// update the address and more importantly, the ABI.
//
// ** Updating the ABI **
// The new ABI can be retrieved from etherscan by visiting the new contract's
// address and navigating to the `Contract -> Code` tab. Scrolling down will then
// show the contract's ABI. e.g.
// https://goerli.etherscan.io/address/0x70c8a579ad08339cca19d77d8646f4b6f0fd098a#code
//
// The ABI diff should be inspected for any changes that impact us -- currently restricted to
// log changes as read these. In particular, any of the `XXX_EVENT` consts.

// The current address of Starknet's core contract implementation.
const CORE_IMPL_ADDR: &str = "0x70c8a579ad08339cca19d77d8646f4b6f0fd098a";
Expand Down

0 comments on commit 30ed930

Please sign in to comment.