File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19
19
20
20
### Security
21
21
22
+ ## @meteora-ag/dlmm [ 1.3.8] - PR #144
23
+
24
+ ### Fixed
25
+
26
+ - Fix ` getOrCreateATAInstruction ` to use ` createAssociatedTokenAccountIdempotentInstruction `
27
+
22
28
## @meteora-ag/dlmm [ 1.3.7] - PR #143
23
29
24
30
### Fixed
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @meteora-ag/dlmm" ,
3
- "version" : " 1.3.7 " ,
3
+ "version" : " 1.3.8 " ,
4
4
"description" : " " ,
5
5
"main" : " ./dist/index.js" ,
6
6
"module" : " ./dist/index.mjs" ,
Original file line number Diff line number Diff line change 4
4
TOKEN_PROGRAM_ID ,
5
5
TokenAccountNotFoundError ,
6
6
TokenInvalidAccountOwnerError ,
7
+ createAssociatedTokenAccountIdempotentInstruction ,
7
8
createAssociatedTokenAccountInstruction ,
8
9
createCloseAccountInstruction ,
9
10
getAccount ,
@@ -111,7 +112,7 @@ export const getOrCreateATAInstruction = async (
111
112
e instanceof TokenAccountNotFoundError ||
112
113
e instanceof TokenInvalidAccountOwnerError
113
114
) {
114
- const ix = createAssociatedTokenAccountInstruction (
115
+ const ix = createAssociatedTokenAccountIdempotentInstruction (
115
116
payer ,
116
117
toAccount ,
117
118
owner ,
You can’t perform that action at this time.
0 commit comments