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 +2 -2
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/skills/deploy-token.md +30 -1
- package/skills/sdk-overview.md +39 -2
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: "
|
|
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: "
|
|
645
|
+
image: "ipfs://QmYourImageCID",
|
|
646
646
|
metadata: JSON.stringify({ description: "Deployed by an AI agent" }),
|
|
647
647
|
devBuy: {
|
|
648
648
|
ethAmount: parseEther("0.01"),
|