Skip to content

Commit 169c80b

Browse files
committed
solana: remove sender, just compute from the token account owner
1 parent 87f1bfa commit 169c80b

File tree

3 files changed

+7
-17
lines changed

3 files changed

+7
-17
lines changed

solana/programs/example-native-token-transfers/src/instructions/transfer.rs

+7-14
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,6 @@ pub struct Transfer<'info> {
2424

2525
pub config: NotPausedConfig<'info>,
2626

27-
/// This account will be encoded in the outbox.
28-
/// CHECK: the sender is the owner of the from account, and the session
29-
/// authority is seeded by this account.
30-
/// This means that while the sender doesn't sign this current
31-
/// transaction, they signed an approval (to the session authority),
32-
/// encoding their intent about where the tokens should go.
33-
sender: AccountInfo<'info>,
34-
3527
#[account(
3628
mut,
3729
address = config.mint,
@@ -42,8 +34,9 @@ pub struct Transfer<'info> {
4234
#[account(
4335
mut,
4436
token::mint = mint,
45-
token::authority = sender
4637
)]
38+
/// CHECK: the spl token program will check that the session_authority
39+
/// account can spend these tokens.
4740
pub from: InterfaceAccount<'info, token_interface::TokenAccount>,
4841

4942
pub token_program: Interface<'info, token_interface::TokenInterface>,
@@ -111,7 +104,7 @@ pub struct TransferBurn<'info> {
111104
#[account(
112105
seeds = [
113106
crate::SESSION_AUTHORITY_SEED,
114-
common.sender.key().as_ref(),
107+
common.from.owner.as_ref(),
115108
args.keccak256().as_ref()
116109
],
117110
bump,
@@ -151,7 +144,7 @@ pub fn transfer_burn(ctx: Context<TransferBurn>, args: TransferArgs) -> Result<(
151144
},
152145
&[&[
153146
crate::SESSION_AUTHORITY_SEED,
154-
accs.common.sender.key().as_ref(),
147+
accs.common.from.owner.as_ref(),
155148
args.keccak256().as_ref(),
156149
&[ctx.bumps.session_authority],
157150
]],
@@ -198,7 +191,7 @@ pub struct TransferLock<'info> {
198191
#[account(
199192
seeds = [
200193
crate::SESSION_AUTHORITY_SEED,
201-
common.sender.key().as_ref(),
194+
common.from.owner.as_ref(),
202195
args.keccak256().as_ref()
203196
],
204197
bump,
@@ -245,7 +238,7 @@ pub fn transfer_lock(ctx: Context<TransferLock>, args: TransferArgs) -> Result<(
245238
},
246239
&[&[
247240
crate::SESSION_AUTHORITY_SEED,
248-
accs.common.sender.key().as_ref(),
241+
accs.common.from.owner.as_ref(),
249242
args.keccak256().as_ref(),
250243
&[ctx.bumps.session_authority],
251244
]],
@@ -296,7 +289,7 @@ fn insert_into_outbox(
296289

297290
common.outbox_item.set_inner(OutboxItem {
298291
amount: trimmed_amount,
299-
sender: common.sender.key(),
292+
sender: common.from.owner,
300293
recipient_chain,
301294
recipient_ntt_manager,
302295
recipient_address,

solana/programs/example-native-token-transfers/tests/sdk/instructions/transfer.rs

-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ fn common(ntt: &NTT, transfer: &Transfer) -> example_native_token_transfers::acc
8484
config: NotPausedConfig {
8585
config: ntt.config(),
8686
},
87-
sender: transfer.from_authority,
8887
mint: transfer.mint,
8988
from: transfer.from,
9089
token_program: Token::id(),

solana/ts/sdk/ntt.ts

-2
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,6 @@ export class NTT {
312312
config: { config: this.configAccountAddress() },
313313
mint,
314314
from: args.from,
315-
sender: args.fromAuthority,
316315
outboxItem: args.outboxItem,
317316
outboxRateLimit: this.outboxRateLimitAccountAddress()
318317
},
@@ -362,7 +361,6 @@ export class NTT {
362361
config: { config: this.configAccountAddress() },
363362
mint,
364363
from: args.from,
365-
sender: args.fromAuthority,
366364
tokenProgram: await this.tokenProgram(config),
367365
outboxItem: args.outboxItem,
368366
outboxRateLimit: this.outboxRateLimitAccountAddress()

0 commit comments

Comments
 (0)