shll-skills 2.0.10 → 2.0.12
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.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
- package/src/index.ts +4 -4
package/dist/index.js
CHANGED
|
@@ -503,11 +503,11 @@ var PolicyClient = class {
|
|
|
503
503
|
var import_viem2 = require("viem");
|
|
504
504
|
var import_accounts2 = require("viem/accounts");
|
|
505
505
|
var import_chains2 = require("viem/chains");
|
|
506
|
-
var DEFAULT_NFA = "
|
|
507
|
-
var DEFAULT_GUARD = "
|
|
506
|
+
var DEFAULT_NFA = "0xE98DCdbf370D7b52c9A2b88F79bEF514A5375a2b";
|
|
507
|
+
var DEFAULT_GUARD = "0x25d17eA0e3Bcb8CA08a2BFE917E817AFc05dbBB3";
|
|
508
508
|
var DEFAULT_RPC = "https://bsc-dataseed1.binance.org";
|
|
509
509
|
var DEFAULT_LISTING_MANAGER = "0x1f9CE85bD0FF75acc3D92eB79f1Eb472f0865071";
|
|
510
|
-
var DEFAULT_LISTING_ID = "
|
|
510
|
+
var DEFAULT_LISTING_ID = "0x733e9d959da5c1745fa507df6b47537f0945012eff3ceb4b684cd4482f2bc4d3";
|
|
511
511
|
var PANCAKE_V2_ROUTER = "0x10ED43C718714eb63d5aA57B78B54704E256024E";
|
|
512
512
|
var WBNB = "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c";
|
|
513
513
|
var TOKEN_REGISTRY = {
|
|
@@ -1467,7 +1467,7 @@ configCmd.action(async (opts) => {
|
|
|
1467
1467
|
process.exit(1);
|
|
1468
1468
|
}
|
|
1469
1469
|
});
|
|
1470
|
-
var DEFAULT_INDEXER = "https://indexer.shll.run";
|
|
1470
|
+
var DEFAULT_INDEXER = "https://indexer-mainnet.shll.run";
|
|
1471
1471
|
var listingsCmd = new import_commander.Command("listings").description("List all available agent templates for rent").option("--indexer <url>", "Indexer API URL", DEFAULT_INDEXER).action(async (opts) => {
|
|
1472
1472
|
try {
|
|
1473
1473
|
const indexerUrl = opts.indexer || DEFAULT_INDEXER;
|
package/dist/index.mjs
CHANGED
|
@@ -513,11 +513,11 @@ import {
|
|
|
513
513
|
} from "viem";
|
|
514
514
|
import { privateKeyToAccount as privateKeyToAccount2, generatePrivateKey } from "viem/accounts";
|
|
515
515
|
import { bsc as bsc2 } from "viem/chains";
|
|
516
|
-
var DEFAULT_NFA = "
|
|
517
|
-
var DEFAULT_GUARD = "
|
|
516
|
+
var DEFAULT_NFA = "0xE98DCdbf370D7b52c9A2b88F79bEF514A5375a2b";
|
|
517
|
+
var DEFAULT_GUARD = "0x25d17eA0e3Bcb8CA08a2BFE917E817AFc05dbBB3";
|
|
518
518
|
var DEFAULT_RPC = "https://bsc-dataseed1.binance.org";
|
|
519
519
|
var DEFAULT_LISTING_MANAGER = "0x1f9CE85bD0FF75acc3D92eB79f1Eb472f0865071";
|
|
520
|
-
var DEFAULT_LISTING_ID = "
|
|
520
|
+
var DEFAULT_LISTING_ID = "0x733e9d959da5c1745fa507df6b47537f0945012eff3ceb4b684cd4482f2bc4d3";
|
|
521
521
|
var PANCAKE_V2_ROUTER = "0x10ED43C718714eb63d5aA57B78B54704E256024E";
|
|
522
522
|
var WBNB = "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c";
|
|
523
523
|
var TOKEN_REGISTRY = {
|
|
@@ -1477,7 +1477,7 @@ configCmd.action(async (opts) => {
|
|
|
1477
1477
|
process.exit(1);
|
|
1478
1478
|
}
|
|
1479
1479
|
});
|
|
1480
|
-
var DEFAULT_INDEXER = "https://indexer.shll.run";
|
|
1480
|
+
var DEFAULT_INDEXER = "https://indexer-mainnet.shll.run";
|
|
1481
1481
|
var listingsCmd = new Command("listings").description("List all available agent templates for rent").option("--indexer <url>", "Indexer API URL", DEFAULT_INDEXER).action(async (opts) => {
|
|
1482
1482
|
try {
|
|
1483
1483
|
const indexerUrl = opts.indexer || DEFAULT_INDEXER;
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -16,11 +16,11 @@ import { privateKeyToAccount, generatePrivateKey } from "viem/accounts";
|
|
|
16
16
|
import { bsc } from "viem/chains";
|
|
17
17
|
|
|
18
18
|
// ── BSC Mainnet defaults ────────────────────────────────
|
|
19
|
-
const DEFAULT_NFA = "
|
|
20
|
-
const DEFAULT_GUARD = "
|
|
19
|
+
const DEFAULT_NFA = "0xE98DCdbf370D7b52c9A2b88F79bEF514A5375a2b";
|
|
20
|
+
const DEFAULT_GUARD = "0x25d17eA0e3Bcb8CA08a2BFE917E817AFc05dbBB3";
|
|
21
21
|
const DEFAULT_RPC = "https://bsc-dataseed1.binance.org";
|
|
22
22
|
const DEFAULT_LISTING_MANAGER = "0x1f9CE85bD0FF75acc3D92eB79f1Eb472f0865071";
|
|
23
|
-
const DEFAULT_LISTING_ID = "
|
|
23
|
+
const DEFAULT_LISTING_ID = "0x733e9d959da5c1745fa507df6b47537f0945012eff3ceb4b684cd4482f2bc4d3";
|
|
24
24
|
const PANCAKE_V2_ROUTER = "0x10ED43C718714eb63d5aA57B78B54704E256024E";
|
|
25
25
|
const WBNB = "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c";
|
|
26
26
|
|
|
@@ -1242,7 +1242,7 @@ configCmd.action(async (opts) => {
|
|
|
1242
1242
|
});
|
|
1243
1243
|
|
|
1244
1244
|
// -- Subcommand: listings (query available agent templates) --------
|
|
1245
|
-
const DEFAULT_INDEXER = "https://indexer.shll.run";
|
|
1245
|
+
const DEFAULT_INDEXER = "https://indexer-mainnet.shll.run";
|
|
1246
1246
|
|
|
1247
1247
|
const listingsCmd = new Command("listings")
|
|
1248
1248
|
.description("List all available agent templates for rent")
|