Skip to content

Commit

Permalink
update gethwrappers for missing example contract
Browse files Browse the repository at this point in the history
  • Loading branch information
jhweintraub committed Jul 15, 2024
1 parent b4b7cd5 commit 9d6199b
Show file tree
Hide file tree
Showing 5 changed files with 4,509 additions and 585 deletions.
1 change: 1 addition & 0 deletions contracts/scripts/native_solc_compile_all_ccip
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ compileContract ccip/offRamp/EVM2EVMMultiOffRamp.sol
compileContract ccip/applications/internal/PingPongDemo.sol
compileContract ccip/applications/internal/SelfFundedPingPong.sol
compileContract ccip/applications/external/CCIPClient.sol
compileContract ccip/applications/external/CCIPClientWithACK.sol
compileContract ccip/applications/external/CCIPReceiver.sol
compileContract ccip/applications/external/CCIPReceiverWithACK.sol
compileContract ccip/applications/external/CCIPSender.sol
Expand Down
2,931 changes: 2,931 additions & 0 deletions core/gethwrappers/ccip/generated/ccipClientWithACK/ccipClientWithACK.go

Large diffs are not rendered by default.

2,160 changes: 1,575 additions & 585 deletions core/gethwrappers/ccip/generated/ccipReceiverWithAck/ccipReceiverWithAck.go

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ burn_mint_token_pool: ../../../contracts/solc/v0.8.24/BurnMintTokenPool/BurnMint
burn_mint_token_pool_and_proxy: ../../../contracts/solc/v0.8.24/BurnMintTokenPoolAndProxy/BurnMintTokenPoolAndProxy.abi ../../../contracts/solc/v0.8.24/BurnMintTokenPoolAndProxy/BurnMintTokenPoolAndProxy.bin c7efa00d2be62a97a814730c8e13aa70794ebfdd38a9f3b3c11554a5dfd70478
burn_with_from_mint_token_pool: ../../../contracts/solc/v0.8.24/BurnWithFromMintTokenPool/BurnWithFromMintTokenPool.abi ../../../contracts/solc/v0.8.24/BurnWithFromMintTokenPool/BurnWithFromMintTokenPool.bin a0728e186af74968101135a58a483320ced9ab79b22b1b24ac6994254ee79097
ccipClient: ../../../contracts/solc/v0.8.24/CCIPClient/CCIPClient.abi ../../../contracts/solc/v0.8.24/CCIPClient/CCIPClient.bin 3f0dfdc726b764afa0dca19c1974a2d50e785423ff2035023f4ca7cf7933e4a6
ccipClientWithACK: ../../../contracts/solc/v0.8.24/CCIPClientWithACK/CCIPClientWithACK.abi ../../../contracts/solc/v0.8.24/CCIPClientWithACK/CCIPClientWithACK.bin 446a05c235e14f263764f126ce06602c7035aab4bb984b204d40c89646cd7b09
ccipReceiver: ../../../contracts/solc/v0.8.24/CCIPReceiver/CCIPReceiver.abi ../../../contracts/solc/v0.8.24/CCIPReceiver/CCIPReceiver.bin 0d7d496ff6aaf37fcf8db25c708b6977c841650027a2028c864f7a0e17fa7b08
ccipReceiverWithACK: ../../../contracts/solc/v0.8.24/CCIPReceiverWithACK/CCIPReceiverWithACK.abi ../../../contracts/solc/v0.8.24/CCIPReceiverWithACK/CCIPReceiverWithACK.bin e6bfb15f1f320cceb76435f49b43c90bfcfc69b4561c811c4b938a6356a23566
ccipSender: ../../../contracts/solc/v0.8.24/CCIPSender/CCIPSender.abi ../../../contracts/solc/v0.8.24/CCIPSender/CCIPSender.bin e142b529faf36c9dbc55be72947493f235e1d6ac2d76658a2273ac8e53ac4f5e
Expand Down
1 change: 1 addition & 0 deletions core/gethwrappers/ccip/go_generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ package ccip
// Audited Reference Contracts
//go:generate go run ../generation/generate/wrap.go ../../../contracts/solc/v0.8.24/CCIPReceiver/CCIPReceiver.abi ../../../contracts/solc/v0.8.24/CCIPReceiver/CCIPReceiver.bin CCIPReceiver ccipReceiver
//go:generate go run ../generation/generate/wrap.go ../../../contracts/solc/v0.8.24/CCIPClient/CCIPClient.abi ../../../contracts/solc/v0.8.24/CCIPClient/CCIPClient.bin CCIPClient ccipClient
//go:generate go run ../generation/generate/wrap.go ../../../contracts/solc/v0.8.24/CCIPClientWithACK/CCIPClientWithACK.abi ../../../contracts/solc/v0.8.24/CCIPClientWithACK/CCIPClientWithACK.bin CCIPClientWithACK ccipClientWithACK
//go:generate go run ../generation/generate/wrap.go ../../../contracts/solc/v0.8.24/CCIPSender/CCIPSender.abi ../../../contracts/solc/v0.8.24/CCIPSender/CCIPSender.bin CCIPSender ccipSender
//go:generate go run ../generation/generate/wrap.go ../../../contracts/solc/v0.8.24/CCIPReceiverWithACK/CCIPReceiverWithACK.abi ../../../contracts/solc/v0.8.24/CCIPReceiverWithACK/CCIPReceiverWithACK.bin CCIPReceiverWithACK ccipReceiverWithACK

Expand Down

0 comments on commit 9d6199b

Please sign in to comment.