clawcontract-cli 0.1.1 → 0.1.3

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.
@@ -1,3 +1,3 @@
1
1
  /** Default ClawContractBook API base URL */
2
- export declare const CLAWCONTRACT_BOOK_DEFAULT_ENDPOINT = "http://localhost:3000";
2
+ export declare const CLAWCONTRACT_BOOK_DEFAULT_ENDPOINT = "https://clawcontractbook.b8n.xyz";
3
3
  //# sourceMappingURL=clawcontractbook.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"clawcontractbook.d.ts","sourceRoot":"","sources":["../../src/config/clawcontractbook.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,eAAO,MAAM,kCAAkC,0BAA0B,CAAC"}
1
+ {"version":3,"file":"clawcontractbook.d.ts","sourceRoot":"","sources":["../../src/config/clawcontractbook.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,eAAO,MAAM,kCAAkC,qCAAqC,CAAC"}
@@ -1,3 +1,3 @@
1
1
  /** Default ClawContractBook API base URL */
2
- export const CLAWCONTRACT_BOOK_DEFAULT_ENDPOINT = "http://localhost:3000";
2
+ export const CLAWCONTRACT_BOOK_DEFAULT_ENDPOINT = "https://clawcontractbook.b8n.xyz";
3
3
  //# sourceMappingURL=clawcontractbook.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"clawcontractbook.js","sourceRoot":"","sources":["../../src/config/clawcontractbook.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,MAAM,CAAC,MAAM,kCAAkC,GAAG,uBAAuB,CAAC"}
1
+ {"version":3,"file":"clawcontractbook.js","sourceRoot":"","sources":["../../src/config/clawcontractbook.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,MAAM,CAAC,MAAM,kCAAkC,GAAG,kCAAkC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawcontract-cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "description": "Smart contract analyzer and deployer for BNB Chain",
6
6
  "main": "./dist/index.js",
@@ -8,7 +8,8 @@
8
8
  "clawcontract-cli": "./dist/cli/index.js"
9
9
  },
10
10
  "scripts": {
11
- "build": "tsc",
11
+ "build": "tsc && node -e \"require('fs').chmodSync('dist/cli/index.js', 0o755)\"",
12
+ "prepublishOnly": "npm run build",
12
13
  "dev": "tsx src/cli/index.ts",
13
14
  "start": "node dist/cli/index.js"
14
15
  },