liquid-sdk 1.6.2 → 1.6.4

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/AGENT_README.md CHANGED
@@ -54,7 +54,7 @@ Requires wallet. Creates the token, pool, locks LP, and optionally buys tokens a
54
54
  const result = await sdk.deployToken({
55
55
  name: "My Token",
56
56
  symbol: "MTK",
57
- image: "https://example.com/logo.png", // optional
57
+ image: "ipfs://QmYourImageCID", // optional, IPFS recommended
58
58
  metadata: '{"description":"A cool token"}', // optional, JSON string
59
59
  context: '{"platform":"my-app"}', // optional, tracking/attribution
60
60
 
@@ -642,7 +642,7 @@ const sdk = new LiquidSDK({ publicClient, walletClient });
642
642
  const result = await sdk.deployToken({
643
643
  name: "Agent Token",
644
644
  symbol: "AGENT",
645
- image: "https://example.com/logo.png",
645
+ image: "ipfs://QmYourImageCID",
646
646
  metadata: JSON.stringify({ description: "Deployed by an AI agent" }),
647
647
  devBuy: {
648
648
  ethAmount: parseEther("0.01"),
package/dist/index.js CHANGED
@@ -1313,6 +1313,7 @@ var LiquidSDK = class {
1313
1313
  functionName: "deployToken",
1314
1314
  args: [deploymentConfig],
1315
1315
  value: msgValue,
1316
+ gas: 1500000n,
1316
1317
  chain: import_chains2.base,
1317
1318
  account: this.walletClient.account
1318
1319
  });