@pompafly/sdk 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -40,6 +40,12 @@ interface Pool {
40
40
  totalVolumeSol: string;
41
41
  holderCount: number;
42
42
  createdAt: string;
43
+ imageUrl: string;
44
+ description: string;
45
+ website: string;
46
+ twitter: string;
47
+ telegram: string;
48
+ instagram: string;
43
49
  }
44
50
  interface PoolPrice {
45
51
  currentPrice: string;
@@ -97,6 +103,7 @@ interface User {
97
103
  wallet: string;
98
104
  xHandle: string;
99
105
  xVerified: boolean;
106
+ isXVerified: boolean;
100
107
  isCreator: boolean;
101
108
  totalTrades: number;
102
109
  totalVolumeSol: string;
package/dist/index.d.ts CHANGED
@@ -40,6 +40,12 @@ interface Pool {
40
40
  totalVolumeSol: string;
41
41
  holderCount: number;
42
42
  createdAt: string;
43
+ imageUrl: string;
44
+ description: string;
45
+ website: string;
46
+ twitter: string;
47
+ telegram: string;
48
+ instagram: string;
43
49
  }
44
50
  interface PoolPrice {
45
51
  currentPrice: string;
@@ -97,6 +103,7 @@ interface User {
97
103
  wallet: string;
98
104
  xHandle: string;
99
105
  xVerified: boolean;
106
+ isXVerified: boolean;
100
107
  isCreator: boolean;
101
108
  totalTrades: number;
102
109
  totalVolumeSol: string;
package/dist/index.js CHANGED
@@ -235,6 +235,8 @@ var PompaflyClient = class {
235
235
  ];
236
236
  if (prioritySigner) {
237
237
  keys.push({ pubkey: prioritySigner.publicKey, isSigner: true, isWritable: false });
238
+ } else {
239
+ keys.push({ pubkey: this.publicKey, isSigner: false, isWritable: false });
238
240
  }
239
241
  keys.push(
240
242
  { pubkey: import_spl_token2.TOKEN_PROGRAM_ID, isSigner: false, isWritable: false },
package/dist/index.mjs CHANGED
@@ -204,6 +204,8 @@ var PompaflyClient = class {
204
204
  ];
205
205
  if (prioritySigner) {
206
206
  keys.push({ pubkey: prioritySigner.publicKey, isSigner: true, isWritable: false });
207
+ } else {
208
+ keys.push({ pubkey: this.publicKey, isSigner: false, isWritable: false });
207
209
  }
208
210
  keys.push(
209
211
  { pubkey: TOKEN_PROGRAM_ID2, isSigner: false, isWritable: false },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pompafly/sdk",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "TypeScript SDK for the Pompafly token launchpad on Solana",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",