Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ccip): CCIPFacet v1.0.0 #542

Draft
wants to merge 27 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
a831dc1
Generate boilerplate
ezynda3 Sep 18, 2023
a4aeab1
Add configuration
ezynda3 Sep 20, 2023
bcaf49a
Merge branch 'main' of github.com:lifinance/contracts into LF-4961-Im…
ezynda3 Sep 21, 2023
2de777e
Merge branch 'main' of github.com:lifinance/contracts into LF-4961-Im…
ezynda3 Sep 22, 2023
77e78ef
Implement CCIP business logic
ezynda3 Sep 22, 2023
3dfae65
Start implementing tests
ezynda3 Sep 25, 2023
fcd85ef
Formatting
ezynda3 Sep 25, 2023
0ec4b5a
Update tests
ezynda3 Sep 25, 2023
041774f
Merge branch 'main' of github.com:lifinance/contracts into LF-4961-Im…
ezynda3 Sep 28, 2023
657c5d8
Add convenience functions
ezynda3 Sep 29, 2023
acd60af
Update deploy scripts
ezynda3 Sep 29, 2023
7727181
Deploy to staging
ezynda3 Sep 29, 2023
6d5ec6f
Create demo script
ezynda3 Oct 3, 2023
9da5958
Add basic documentation
ezynda3 Oct 3, 2023
7376af6
Update demo
ezynda3 Oct 24, 2023
d24ebee
Merge branch 'main' into LF-4961-Implementing-CCIP-support
ezynda3 Oct 25, 2023
972b7b2
Add missing URI
ezynda3 Oct 25, 2023
1d3998f
Merge branch 'main' into LF-4961-Implementing-CCIP-support
ezynda3 Oct 27, 2023
bd5c154
Implement destination calls for CCIP
ezynda3 Oct 27, 2023
bffeaf1
Update demo
ezynda3 Oct 27, 2023
05d6a18
Remove unneeded payload args
ezynda3 Oct 30, 2023
650ae7a
Update demo script
ezynda3 Oct 30, 2023
c3470e4
Redeploy to staging
ezynda3 Oct 30, 2023
fa77981
Revert back to previous version
ezynda3 Oct 30, 2023
f9211b6
Update demo script
ezynda3 Oct 30, 2023
96dc26f
Merge branch 'main' of github.com:lifinance/contracts into LF-4961-Im…
ezynda3 Nov 10, 2023
24806fb
Merge branch 'main' into LF-4961-Implementing-CCIP-support
ezynda3 Jan 18, 2024
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
1 change: 1 addition & 0 deletions .github/workflows/forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
ETH_NODE_URI_GOERLI: ${{ secrets.ETH_NODE_URI_GOERLI }}
ETH_NODE_URI_ARBITRUM: ${{ secrets.ETH_NODE_URI_ARBITRUM }}
ETH_NODE_URI_GNOSIS: ${{ secrets.ETH_NODE_URI_GNOSIS }}
ETH_NODE_URI_BSC_TESTNET: ${{ secrets.ETH_NODE_URI_BSC_TESTNET }}
FORK_NUMBER: ${{ secrets.FORK_NUMBER }}
POLYGON_FORK_NUMBER: ${{ secrets.POLYGON_FORK_NUMBER }}
FORK_NUMBER_POLYGON: 36004499
Expand Down
64 changes: 64 additions & 0 deletions config/ccip.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"routers": {
"mainnet": {
"router": "0xE561d5E02207fb5eB32cca20a699E0d8919a1476"
},
"sepolia": {
"router": "0xD0daae2231E9CB96b94C8512223533293C3693Bf"
},
"optimism": {
"router": "0x261c05167db67B2b619f9d312e0753f3721ad6E8"
},
"avalanche": {
"router": "0x27F39D0af3303703750D4001fCc1844c6491563c"
},
"base": {
"router": "0x673aa85efd75080031d44fca061575d1da427a28"
},
"mumbai": {
"router": "0x70499c328e1E2a3c41108bd3730F6670a44595D1"
},
"polygon": {
"router": "0x3C3D92629A02a8D95D5CB9650fe49C3544f69B43"
},
"bsc-testnet": {
"router": "0x9527e2d01a3064ef6b50c1da1c0cc523803bcff2"
}
},
"chainSelectors": [
{
"chainId": 1,
"selector": 5009297550715157269
},
{
"chainId": 10,
"selector": 3734403246176062136
},
{
"chainId": 43114,
"selector": 6433500567565415381
},
{
"chainId": 137,
"selector": 4051577828743386545
},
{
"chainId": 8453,
"selector": 15971525489660198786
}
],
"testChainSelectors": [
{
"chainId": 11155111,
"selector": 16015286601757825753
},
{
"chainId": 80001,
"selector": 12532609583862916517
},
{
"chainId": 97,
"selector": 13264668187771770619
}
]
}
Loading
Loading