This repository was archived by the owner on Mar 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -213,5 +213,19 @@ declare module '@solana/spl-token' {
213
213
authority : PublicKey ,
214
214
multiSigners : Array < Account > ,
215
215
) : TransactionInstruction ;
216
+ static createFreezeAccountInstruction (
217
+ programId : PublicKey ,
218
+ account : PublicKey ,
219
+ mint : PublicKey ,
220
+ authority : PublicKey ,
221
+ multiSigners : Array < Account > ,
222
+ ) : TransactionInstruction ;
223
+ static createThawAccountInstruction (
224
+ programId : PublicKey ,
225
+ account : PublicKey ,
226
+ mint : PublicKey ,
227
+ authority : PublicKey ,
228
+ multiSigners : Array < Account > ,
229
+ ) : TransactionInstruction ;
216
230
}
217
231
}
Original file line number Diff line number Diff line change @@ -205,5 +205,19 @@ declare module '@solana/spl-token' {
205
205
authority : PublicKey ,
206
206
multiSigners : Array < Account > ,
207
207
) : TransactionInstruction ;
208
+ static createFreezeAccountInstruction (
209
+ programId : PublicKey ,
210
+ account : PublicKey ,
211
+ mint : PublicKey ,
212
+ authority : PublicKey ,
213
+ multiSigners : Array < Account > ,
214
+ ) : TransactionInstruction ;
215
+ static createThawAccountInstruction (
216
+ programId : PublicKey ,
217
+ account : PublicKey ,
218
+ mint : PublicKey ,
219
+ authority : PublicKey ,
220
+ multiSigners : Array < Account > ,
221
+ ) : TransactionInstruction ;
208
222
}
209
223
}
You can’t perform that action at this time.
0 commit comments