File tree 3 files changed +12
-6
lines changed
3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @tensor-hq/tensor-common" ,
3
- "version" : " 8.3.1 " ,
3
+ "version" : " 8.3.2 " ,
4
4
"description" : " Common utility methods used by Tensor." ,
5
5
"sideEffects" : false ,
6
6
"module" : " ./dist/esm/index.js" ,
Original file line number Diff line number Diff line change 1
- import { PublicKey } from '@solana/web3.js' ;
2
1
import { utils } from '@coral-xyz/anchor' ;
2
+ import { PublicKey , SystemProgram } from '@solana/web3.js' ;
3
3
4
4
export const WNS_PROGRAM_ID = new PublicKey (
5
5
'wns1gDLt8fgLcGhWi5MqAqgXpwEP1JftKE9eZnXS1HM' ,
@@ -50,9 +50,15 @@ export const findWNSExtraMetasPda = (mint: string) => {
50
50
return extraMetasAccount ;
51
51
} ;
52
52
53
- export const findWNSDistributionPda = ( collection : string ) => {
53
+ export const findWNSDistributionPda = (
54
+ collection : string ,
55
+ paymentMint ?: PublicKey ,
56
+ ) => {
54
57
const [ distributionAccount ] = PublicKey . findProgramAddressSync (
55
- [ new PublicKey ( collection ) . toBuffer ( ) ] ,
58
+ [
59
+ new PublicKey ( collection ) . toBuffer ( ) ,
60
+ paymentMint ? paymentMint . toBuffer ( ) : SystemProgram . programId . toBuffer ( ) ,
61
+ ] ,
56
62
WNS_DIST_PROGRAM_ID ,
57
63
) ;
58
64
Original file line number Diff line number Diff line change
1
+ import { Connection } from '@solana/web3.js' ;
1
2
import { expect } from 'chai' ;
2
3
import {
3
4
RetryTxSender ,
4
5
convertTxToLegacy ,
5
6
} from '../../src/solana_contrib/transaction' ;
6
- import { Connection } from '@solana/web3.js' ;
7
7
8
8
describe ( 'Transaction Tests' , ( ) => {
9
9
describe ( 'convertTxToLegacy' , ( ) => {
@@ -58,7 +58,7 @@ describe('Transaction Tests', () => {
58
58
err : null ,
59
59
} ;
60
60
expect ( confirmedTx ) . to . deep . equal ( expected ) ;
61
- } ) . timeout ( 10000 ) ;
61
+ } ) . timeout ( 15000 ) ;
62
62
63
63
it ( 'should cancel confirmation when cancelConfirm is called' , async ( ) => {
64
64
const nonExistentTxSig =
You can’t perform that action at this time.
0 commit comments