flipmeme-sdk 1.2.48 → 1.2.49

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
@@ -25,7 +25,6 @@ interface SolanaConfig {
25
25
  interface CollectionParams {
26
26
  sessionId: string;
27
27
  name: string;
28
- symbol: string;
29
28
  tokenUri: string;
30
29
  totalSupply: number;
31
30
  }
package/dist/index.d.ts CHANGED
@@ -25,7 +25,6 @@ interface SolanaConfig {
25
25
  interface CollectionParams {
26
26
  sessionId: string;
27
27
  name: string;
28
- symbol: string;
29
28
  tokenUri: string;
30
29
  totalSupply: number;
31
30
  }
package/dist/index.js CHANGED
@@ -476,10 +476,6 @@ var flipmeme_default = {
476
476
  name: "uri",
477
477
  type: "string"
478
478
  },
479
- {
480
- name: "symbol",
481
- type: "string"
482
- },
483
479
  {
484
480
  name: "total_supply",
485
481
  type: "u32"
@@ -2275,7 +2271,7 @@ var SolanaConnector = class {
2275
2271
  SOLANA_PUBKEYS.STATE_ID
2276
2272
  );
2277
2273
  const collectionID = state.collectionCount;
2278
- const { sessionId, name, tokenUri, totalSupply, symbol } = params;
2274
+ const { sessionId, name, tokenUri, totalSupply } = params;
2279
2275
  const { collectionPda: collectionPda2, collectionNftPda: collectionNftPda2 } = yield getTradingAccounts(
2280
2276
  this.program.programId,
2281
2277
  collectionID.toString(),
@@ -2287,7 +2283,6 @@ var SolanaConnector = class {
2287
2283
  sessionId,
2288
2284
  name,
2289
2285
  tokenUri,
2290
- symbol,
2291
2286
  totalSupply,
2292
2287
  new import_bn.default(1e7),
2293
2288
  new import_bn.default(2e8)