Skip to content

Commit 0370d37

Browse files
committed
initial: sender - no token transfers
1 parent 621e406 commit 0370d37

27 files changed

+3524
-54
lines changed

chains/solana/contracts/Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chains/solana/contracts/programs/example-ccip-receiver/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,10 @@ pub struct CcipReceive<'info> {
147147
bump,
148148
)]
149149
pub approved_sender: Account<'info, ApprovedSender>, // if PDA does not exist, the message sender and/or source chain are not approved
150+
#[account(
151+
seeds = [b"state"],
152+
bump,
153+
)]
150154
pub state: Account<'info, BaseState>,
151155
}
152156

chains/solana/contracts/programs/example-ccip-sender/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ default = []
1919
solana-program = "1.17.25" # pin solana to 1.17
2020
anchor-lang = { version = "0.29.0", features = [] }
2121
anchor-spl = "0.29.0"
22+
fee_quoter = { version = "0.1.0-dev", path = "../fee-quoter", features = ["no-entrypoint"]}

0 commit comments

Comments
 (0)