Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 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
7 changes: 5 additions & 2 deletions bindings/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ bindings: \
morph-standard-erc20-factory-bindings \
morph-wrapped-ether-bindings \
erc20-bindings \
l2-wst-eth-bindings
l2-wst-eth-bindings \
l2-erc20-price-oracle-bindings
version:
forge --version
abigen --version
Expand Down Expand Up @@ -118,6 +119,8 @@ l2-to-l1-message-passer-bindings: compile
./gen_bindings.sh contracts/l2/system/L2ToL1MessagePasser.sol:L2ToL1MessagePasser $(pkg)
l2-tx-fee-vault-bindings: compile
./gen_bindings.sh contracts/l2/system/L2TxFeeVault.sol:L2TxFeeVault $(pkg)
l2-erc20-price-oracle-bindings: compile
./gen_bindings.sh contracts/l2/system/ERC20PriceOracle.sol:ERC20PriceOracle $(pkg)

# Staking
l2-gov-bindings: compile
Expand Down Expand Up @@ -191,7 +194,7 @@ more: compile-forge
go run ./gen/main.go \
-artifacts ../contracts/artifacts \
-out ./bindings \
-contracts ProxyAdmin,TransparentUpgradeableProxy,L1MessageQueueWithGasPriceOracle,L1USDCGateway,L1Staking,L1CrossDomainMessenger,L1StandardERC20Gateway,L1ETHGateway,L1ERC20Gateway,L1GatewayRouter,L1WETHGateway,L1LidoGateway,Rollup,MultipleVersionRollupVerifier,L2CrossDomainMessenger,GasPriceOracle,L2ToL1MessagePasser,L2TxFeeVault,Sequencer,Gov,Distribute,L2Staking,Record,L2ETHGateway,L2StandardERC20Gateway,L2GatewayRouter,L2WETHGateway,L2ERC20Gateway,L2ERC721Gateway,L2ERC1155Gateway,L2LidoGateway,MorphToken,MorphStandardERC20,MorphStandardERC20Factory,WrappedEther,L2USDCGateway,EnforcedTxGateway,L1ERC721Gateway,L1ERC1155Gateway,L1ReverseCustomGateway,L2WithdrawLockERC20Gateway,L2ReverseCustomGateway,Whitelist,ZkEvmVerifierV1,L2WstETHToken \
-contracts ProxyAdmin,TransparentUpgradeableProxy,ERC20PriceOracle,L1MessageQueueWithGasPriceOracle,L1USDCGateway,L1Staking,L1CrossDomainMessenger,L1StandardERC20Gateway,L1ETHGateway,L1ERC20Gateway,L1GatewayRouter,L1WETHGateway,L1LidoGateway,Rollup,MultipleVersionRollupVerifier,L2CrossDomainMessenger,GasPriceOracle,L2ToL1MessagePasser,L2TxFeeVault,Sequencer,Gov,Distribute,L2Staking,Record,L2ETHGateway,L2StandardERC20Gateway,L2GatewayRouter,L2WETHGateway,L2ERC20Gateway,L2ERC721Gateway,L2ERC1155Gateway,L2LidoGateway,MorphToken,MorphStandardERC20,MorphStandardERC20Factory,WrappedEther,L2USDCGateway,EnforcedTxGateway,L1ERC721Gateway,L1ERC1155Gateway,L1ReverseCustomGateway,L2WithdrawLockERC20Gateway,L2ReverseCustomGateway,Whitelist,ZkEvmVerifierV1,L2WstETHToken \
-package bindings

mkdir:
Expand Down
1 change: 1 addition & 0 deletions bindings/bin/erc20priceoracle_deployed.hex

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bindings/bin/l2staking_deployed.hex

Large diffs are not rendered by default.

2,542 changes: 2,542 additions & 0 deletions bindings/bindings/erc20priceoracle.go

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions bindings/bindings/erc20priceoracle_more.go

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions bindings/bindings/l2staking.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bindings/bindings/l2staking_more.go

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions bindings/predeploys/addresses.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const (
L2ReverseCustomGateway = "0x5300000000000000000000000000000000000018"
L2WithdrawLockERC20Gateway = "0x5300000000000000000000000000000000000019"
L2USDCGateway = "0x5300000000000000000000000000000000000020"
L2ERC20Registry = "0x5300000000000000000000000000000000000021"
Comment thread
Kukoomomo marked this conversation as resolved.
Outdated
)

var (
Expand Down
Loading
Loading