Skip to content
Closed
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
e2fd7f3
(commit from remote subtree): Add Solana USDC Token Pool for CCIP uti…
devin-ai-integration[bot] May 21, 2025
34fce83
(commit from remote subtree): Add mock of CCTP message_transmitter So…
devin-ai-integration[bot] May 21, 2025
1f61a8c
On the way to a first working quickstart of bare cctp
toblich May 12, 2025
1450c68
Receive USDC via CCTP, and successful depositForBurn getting an attes…
toblich May 16, 2025
2798b0a
Tiny cleanup and derive nonce from msg
toblich May 16, 2025
a42c5a0
Tiny improvement to outputs
toblich May 19, 2025
70e12c2
(commit from remote subtree): Fix usdc pool compilation issues
toblich May 23, 2025
de6866e
(commit from remote subtree): Add mock of CCTP token-messenger-minter…
devin-ai-integration[bot] May 23, 2025
799d42c
(commit from remote subtree): USDC pool & mocks compile now. Still no…
toblich May 23, 2025
28ac33b
(commit from remote subtree): Make message-minter mock have more simi…
toblich May 26, 2025
b6f4f87
(commit from remote subtree): Make mocks more similar to actual programs
toblich May 26, 2025
338c80d
(commit from remote subtree): Change mocks for actual CCTP contracts …
toblich May 28, 2025
e250d62
(commit from remote subtree): Pool CCTP integration PoC (#5)
toblich Jun 3, 2025
ae589d7
(commit from remote subtree): Unskip other pool integration tests
toblich Jun 3, 2025
6e4ba20
(commit from remote subtree): CCTP pool context fixes: make it more s…
toblich Jun 3, 2025
db42db7
(commit from remote subtree): Change chain_selector<>domain mapping f…
toblich Jun 3, 2025
e051500
(commit from remote subtree): Add reclaim_event_account method to CCT…
devin-ai-integration[bot] Jun 4, 2025
49a973d
(commit from remote subtree): Change MessageSent PDA to use full_nonc…
toblich Jun 6, 2025
f69fdc6
(commit from remote subtree): Proxying tokens through TP ATA (#9)
toblich Jun 6, 2025
3047ac0
(commit from remote subtree): Add event for offchain discoverability …
toblich Jun 10, 2025
4d18daf
(commit from remote subtree): Make dest caller configurable (#11)
toblich Jun 10, 2025
8abeb5f
(commit from remote subtree): Fix test TODOs
toblich Jun 10, 2025
2dfd8e9
Add vendored CCTP contract binaries
toblich Jun 10, 2025
08ddcd0
Tp initialized
toblich Jun 10, 2025
ae3e31f
Rename nonces fields, and remove temporary setter method
toblich Jun 13, 2025
29caf1a
Set pool returned dest_pool_data + improvements for offchain handling
toblich Jun 13, 2025
eebd522
Devnet config fixes
toblich Jun 13, 2025
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
3 changes: 3 additions & 0 deletions chains/solana/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
contracts/target/*
!contracts/target/idl/
!contracts/target/types/
!contracts/target/vendor/
!contracts/target/vendor/*
contracts/programs/*/target
contracts/.anchor
# keypair used by anchor/anchor test
Expand All @@ -28,3 +30,4 @@ eslint-report.json
override*.toml
# go work files
go.work*
devnet.config.yaml
3 changes: 3 additions & 0 deletions chains/solana/contracts/Anchor.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ test_ccip_receiver = "EvhgrPhTDt4LcSPS2kfJgH6T6XWZ6wT3X9ncDGLT1vui"
test_token_pool = "JuCcZ4smxAYv9QHJ36jshA7pA3FuQ3vQeWLUeAtZduJ"
timelock = "DoajfR5tK24xVw51fWcawUZWhAXD8yrBJVacc13neVQA"
ping_pong_demo = "PPbZmYFf5SPAM9Jhm9mNmYoCwT7icPYVKAfJoMCQovU"
cctp_message_transmitter = "CCTPmbSD7gX1bxKPAmg77w8oFzNFpaQiQUWD43TKaecd"
cctp_token_messenger_minter = "CCTPiPYPc6AsJuwueEnWgSgucamXDZwBd53dQ11YiKX3"
cctp_token_pool = "CCitPr8yZbN8zEBEdwju8bnGgKMYcz6XSTbU61CMedj"

[registry]
url = "https://anchor.projectserum.com"
Expand Down
Loading
Loading