File tree Expand file tree Collapse file tree 15 files changed +42
-24
lines changed
src/generated/instructions
src/generated/instructions Expand file tree Collapse file tree 15 files changed +42
-24
lines changed Original file line number Diff line number Diff line change 5757 },
5858 "clients/orca-whirlpools" : {
5959 "name" : " @macalinao/clients-orca-whirlpools" ,
60- "version" : " 0.4.4 " ,
60+ "version" : " 0.4.5 " ,
6161 "devDependencies" : {
6262 "@macalinao/coda" : " workspace:^" ,
6363 "@macalinao/eslint-config" : " catalog:" ,
133133 },
134134 "clients/voter-stake-registry" : {
135135 "name" : " @macalinao/clients-voter-stake-registry" ,
136- "version" : " 0.2.1 " ,
136+ "version" : " 0.2.2 " ,
137137 "devDependencies" : {
138138 "@macalinao/coda" : " workspace:^" ,
139139 "@macalinao/eslint-config" : " catalog:" ,
148148 },
149149 "packages/coda" : {
150150 "name" : " @macalinao/coda" ,
151- "version" : " 0.4.7 " ,
151+ "version" : " 0.4.8 " ,
152152 "bin" : {
153153 "coda" : " ./dist/bin/cli.js" ,
154154 },
Original file line number Diff line number Diff line change 11# @macalinao/clients-orca-whirlpools
22
3+ ## 0.4.5
4+
5+ ### Patch Changes
6+
7+ - 9d147c5: Fix bug where ATA program had the wrong default value
8+
39## 0.4.4
410
511### Patch Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @macalinao/clients-orca-whirlpools" ,
3- "version" : " 0.4.4 " ,
3+ "version" : " 0.4.5 " ,
44 "description" : " TypeScript client for Orca Whirlpools program" ,
55 "type" : " module" ,
66 "sideEffects" : false ,
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export type InitializePositionBundleInstruction<
6363 | AccountMeta = "SysvarRent111111111111111111111111111111111" ,
6464 TAccountAssociatedTokenProgram extends
6565 | string
66- | AccountMeta = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " ,
66+ | AccountMeta = "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " ,
6767 TRemainingAccounts extends readonly AccountMeta [ ] = [ ] ,
6868> = Instruction < TProgram > &
6969 InstructionWithData < ReadonlyUint8Array > &
@@ -239,7 +239,7 @@ export function getInitializePositionBundleInstruction<
239239 }
240240 if ( ! accounts . associatedTokenProgram . value ) {
241241 accounts . associatedTokenProgram . value =
242- "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " as Address < "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " > ;
242+ "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " as Address < "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " > ;
243243 }
244244
245245 const getAccountMeta = getAccountMetaFactory ( programAddress , "programId" ) ;
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export type InitializePositionBundleWithMetadataInstruction<
6565 | AccountMeta = "SysvarRent111111111111111111111111111111111" ,
6666 TAccountAssociatedTokenProgram extends
6767 | string
68- | AccountMeta = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " ,
68+ | AccountMeta = "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " ,
6969 TAccountMetadataProgram extends
7070 | string
7171 | AccountMeta = "metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s" ,
@@ -280,7 +280,7 @@ export function getInitializePositionBundleWithMetadataInstruction<
280280 }
281281 if ( ! accounts . associatedTokenProgram . value ) {
282282 accounts . associatedTokenProgram . value =
283- "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " as Address < "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " > ;
283+ "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " as Address < "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " > ;
284284 }
285285 if ( ! accounts . metadataProgram . value ) {
286286 accounts . metadataProgram . value =
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export type OpenPositionInstruction<
7575 | AccountMeta = "SysvarRent111111111111111111111111111111111" ,
7676 TAccountAssociatedTokenProgram extends
7777 | string
78- | AccountMeta = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " ,
78+ | AccountMeta = "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " ,
7979 TRemainingAccounts extends readonly AccountMeta [ ] = [ ] ,
8080> = Instruction < TProgram > &
8181 InstructionWithData < ReadonlyUint8Array > &
@@ -272,7 +272,7 @@ export function getOpenPositionInstruction<
272272 }
273273 if ( ! accounts . associatedTokenProgram . value ) {
274274 accounts . associatedTokenProgram . value =
275- "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " as Address < "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " > ;
275+ "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " as Address < "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " > ;
276276 }
277277
278278 const getAccountMeta = getAccountMetaFactory ( programAddress , "programId" ) ;
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export type OpenPositionWithMetadataInstruction<
7575 | AccountMeta = "SysvarRent111111111111111111111111111111111" ,
7676 TAccountAssociatedTokenProgram extends
7777 | string
78- | AccountMeta = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " ,
78+ | AccountMeta = "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " ,
7979 TAccountMetadataProgram extends
8080 | string
8181 | AccountMeta = "metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s" ,
@@ -315,7 +315,7 @@ export function getOpenPositionWithMetadataInstruction<
315315 }
316316 if ( ! accounts . associatedTokenProgram . value ) {
317317 accounts . associatedTokenProgram . value =
318- "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " as Address < "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " > ;
318+ "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " as Address < "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " > ;
319319 }
320320 if ( ! accounts . metadataProgram . value ) {
321321 accounts . metadataProgram . value =
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export type OpenPositionWithTokenExtensionsInstruction<
6565 | AccountMeta = "11111111111111111111111111111111" ,
6666 TAccountAssociatedTokenProgram extends
6767 | string
68- | AccountMeta = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " ,
68+ | AccountMeta = "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " ,
6969 TAccountMetadataUpdateAuth extends string | AccountMeta = string ,
7070 TRemainingAccounts extends readonly AccountMeta [ ] = [ ] ,
7171> = Instruction < TProgram > &
@@ -268,7 +268,7 @@ export function getOpenPositionWithTokenExtensionsInstruction<
268268 }
269269 if ( ! accounts . associatedTokenProgram . value ) {
270270 accounts . associatedTokenProgram . value =
271- "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " as Address < "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA " > ;
271+ "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " as Address < "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL " > ;
272272 }
273273
274274 const getAccountMeta = getAccountMetaFactory ( programAddress , "programId" ) ;
Original file line number Diff line number Diff line change 11# @macalinao/clients-voter-stake-registry
22
3+ ## 0.2.2
4+
5+ ### Patch Changes
6+
7+ - 9d147c5: Fix bug where ATA program had the wrong default value
8+
39## 0.2.1
410
511### Patch Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @macalinao/clients-voter-stake-registry" ,
3- "version" : " 0.2.1 " ,
3+ "version" : " 0.2.2 " ,
44 "description" : " TypeScript client for the SPL Governance Voter Stake Registry program" ,
55 "type" : " module" ,
66 "sideEffects" : false ,
You can’t perform that action at this time.
0 commit comments