@@ -24,14 +24,6 @@ pub struct Transfer<'info> {
24
24
25
25
pub config : NotPausedConfig < ' info > ,
26
26
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
-
35
27
#[ account(
36
28
mut ,
37
29
address = config. mint,
@@ -42,8 +34,9 @@ pub struct Transfer<'info> {
42
34
#[ account(
43
35
mut ,
44
36
token:: mint = mint,
45
- token:: authority = sender
46
37
) ]
38
+ /// CHECK: the spl token program will check that the session_authority
39
+ /// account can spend these tokens.
47
40
pub from : InterfaceAccount < ' info , token_interface:: TokenAccount > ,
48
41
49
42
pub token_program : Interface < ' info , token_interface:: TokenInterface > ,
@@ -111,7 +104,7 @@ pub struct TransferBurn<'info> {
111
104
#[ account(
112
105
seeds = [
113
106
crate :: SESSION_AUTHORITY_SEED ,
114
- common. sender . key ( ) . as_ref( ) ,
107
+ common. from . owner . as_ref( ) ,
115
108
args. keccak256( ) . as_ref( )
116
109
] ,
117
110
bump,
@@ -151,7 +144,7 @@ pub fn transfer_burn(ctx: Context<TransferBurn>, args: TransferArgs) -> Result<(
151
144
} ,
152
145
& [ & [
153
146
crate :: SESSION_AUTHORITY_SEED ,
154
- accs. common . sender . key ( ) . as_ref ( ) ,
147
+ accs. common . from . owner . as_ref ( ) ,
155
148
args. keccak256 ( ) . as_ref ( ) ,
156
149
& [ ctx. bumps . session_authority ] ,
157
150
] ] ,
@@ -198,7 +191,7 @@ pub struct TransferLock<'info> {
198
191
#[ account(
199
192
seeds = [
200
193
crate :: SESSION_AUTHORITY_SEED ,
201
- common. sender . key ( ) . as_ref( ) ,
194
+ common. from . owner . as_ref( ) ,
202
195
args. keccak256( ) . as_ref( )
203
196
] ,
204
197
bump,
@@ -245,7 +238,7 @@ pub fn transfer_lock(ctx: Context<TransferLock>, args: TransferArgs) -> Result<(
245
238
} ,
246
239
& [ & [
247
240
crate :: SESSION_AUTHORITY_SEED ,
248
- accs. common . sender . key ( ) . as_ref ( ) ,
241
+ accs. common . from . owner . as_ref ( ) ,
249
242
args. keccak256 ( ) . as_ref ( ) ,
250
243
& [ ctx. bumps . session_authority ] ,
251
244
] ] ,
@@ -296,7 +289,7 @@ fn insert_into_outbox(
296
289
297
290
common. outbox_item . set_inner ( OutboxItem {
298
291
amount : trimmed_amount,
299
- sender : common. sender . key ( ) ,
292
+ sender : common. from . owner ,
300
293
recipient_chain,
301
294
recipient_ntt_manager,
302
295
recipient_address,
0 commit comments