@pompafly/sdk 0.1.2 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pompafly/sdk",
3
- "version": "0.1.2",
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",