@aibtc/mcp-server 1.28.0 → 1.28.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/dist/config/networks.js +1 -1
- package/package.json +1 -1
- package/skill/SKILL.md +1 -1
package/dist/config/networks.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const NETWORK = process.env.NETWORK === "
|
|
1
|
+
export const NETWORK = process.env.NETWORK === "testnet" ? "testnet" : "mainnet";
|
|
2
2
|
export const API_URL = process.env.API_URL || "https://x402.biwas.xyz";
|
|
3
3
|
export function getStacksNetwork(network) {
|
|
4
4
|
return network === "mainnet" ? "mainnet" : "testnet";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aibtc/mcp-server",
|
|
3
|
-
"version": "1.28.
|
|
3
|
+
"version": "1.28.1",
|
|
4
4
|
"description": "Bitcoin-native MCP server for AI agents: BTC/STX wallets, DeFi yield, sBTC peg, NFTs, and x402 payments.",
|
|
5
5
|
"mcpName": "io.github.aibtcdev/mcp-server",
|
|
6
6
|
"type": "module",
|
package/skill/SKILL.md
CHANGED
|
@@ -4,7 +4,7 @@ description: Bitcoin L1 wallet for agents - check balances, send BTC, manage UTX
|
|
|
4
4
|
license: MIT
|
|
5
5
|
metadata:
|
|
6
6
|
author: aibtcdev
|
|
7
|
-
version: 1.28.
|
|
7
|
+
version: 1.28.1 # x-release-please-version
|
|
8
8
|
npm: "@aibtc/mcp-server"
|
|
9
9
|
github: https://github.com/aibtcdev/aibtc-mcp-server
|
|
10
10
|
---
|