@0xward/aetheros-core 1.0.7 → 1.1.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/index.js +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
// Elite network intelligence platform on Stacks (Bitcoin L2)
|
|
3
3
|
// Groq-powered AI analysis bound to Clarity smart contract state
|
|
4
4
|
|
|
5
|
-
const STACKS_API_URL =
|
|
5
|
+
const STACKS_API_URL = Buffer.from('aHR0cHM6Ly9hcGkuaGlyby5zbw==', 'base64').toString('utf8');
|
|
6
6
|
const NETWORK_CONFIGS = {
|
|
7
|
-
mainnet: { api:
|
|
8
|
-
testnet: { api:
|
|
7
|
+
mainnet: { api: Buffer.from('aHR0cHM6Ly9hcGkuaGlyby5zbw==', 'base64').toString('utf8'), chain: "Stacks Mainnet", chainId: 1 },
|
|
8
|
+
testnet: { api: Buffer.from('aHR0cHM6Ly9hcGkudGVzdG5ldC5oaXJvLnNv', 'base64').toString('utf8'), chain: "Stacks Testnet", chainId: 2147483648 },
|
|
9
9
|
};
|
|
10
10
|
|
|
11
11
|
const INTELLIGENCE_MODES = {
|
package/package.json
CHANGED