mantle-agent-kit-sdk 1.0.0 → 1.0.1
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/.env.example +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/.env.example
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
# Your unique APP_ID for the Mantle Agent Kit
|
|
3
3
|
APP_ID=your_app_id_here
|
|
4
4
|
|
|
5
|
-
# Optional: Custom platform URL (defaults to https://mantle-
|
|
6
|
-
# PLATFORM_URL=https://mantle-
|
|
5
|
+
# Optional: Custom platform URL (defaults to https://mantle-devkit.vercel.app)
|
|
6
|
+
# PLATFORM_URL=https://mantle-devkit.vercel.app
|
|
7
7
|
|
|
8
8
|
# Your wallet private key (for agent initialization)
|
|
9
9
|
PRIVATE_KEY=0xYOUR_PRIVATE_KEY_HERE
|
package/dist/index.cjs
CHANGED
|
@@ -1197,7 +1197,7 @@ var getSwapQuote = async (agent, from, to, amount, slippagePercentage) => {
|
|
|
1197
1197
|
};
|
|
1198
1198
|
|
|
1199
1199
|
// src/utils/x402/index.ts
|
|
1200
|
-
var DEFAULT_PLATFORM_URL = "https://mantle-
|
|
1200
|
+
var DEFAULT_PLATFORM_URL = "https://mantle-devkit.vercel.app";
|
|
1201
1201
|
var cachedConfig = null;
|
|
1202
1202
|
var validationPromise = null;
|
|
1203
1203
|
function getPlatformBaseUrl() {
|