@nuno1026/bithumb-cli 0.1.5 → 0.1.6
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/{chunk-6NIRYFQU.js → chunk-DXX5FHRF.js} +11 -11
- package/dist/chunk-DXX5FHRF.js.map +1 -0
- package/dist/{config-3DKXMP6T.js → config-VZKZANVL.js} +2 -2
- package/dist/{deposit-2DPI346C.js → deposit-JGPZ7YIP.js} +2 -2
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-6NIRYFQU.js.map +0 -1
- /package/dist/{config-3DKXMP6T.js.map → config-VZKZANVL.js.map} +0 -0
- /package/dist/{deposit-2DPI346C.js.map → deposit-JGPZ7YIP.js.map} +0 -0
|
@@ -1836,7 +1836,7 @@ function registerTradeTools() {
|
|
|
1836
1836
|
{
|
|
1837
1837
|
name: "trade_place_order",
|
|
1838
1838
|
module: "trade",
|
|
1839
|
-
description: '\uC8FC\uBB38\uC744 \uC0DD\uC131\uD569\uB2C8\uB2E4. Place a new spot order on Bithumb. Use when: user asks to buy/sell a single market at a specific price or quantity. Do NOT use: for multiple orders at once (use trade_batch_place); for time-weighted execution (use twap_place). Field: order_type \u2208 {limit, price, market}. limit: price+volume required. price(\uC2DC\uC7A5\uAC00 \uB9E4\uC218): only price (total KRW). market(\uC2DC\uC7A5\uAC00 \uB9E4\uB3C4): only volume (coin qty). CLI flag: --order-type (alias: --ord-type, deprecated). Response field `ord_type` is preserved as Bithumb upstream. Example call: {"market":"KRW-BTC","side":"bid","order_type":"limit","price":"50000000","volume":"0.0001"}',
|
|
1839
|
+
description: '\uC8FC\uBB38\uC744 \uC0DD\uC131\uD569\uB2C8\uB2E4. Place a new spot order on Bithumb. Use when: user asks to buy/sell a single market at a specific price or quantity. Do NOT use: for multiple orders at once (use trade_batch_place); for time-weighted execution (use twap_place). Field: order_type \u2208 {limit, price, market}. limit: price+volume required. price(\uC2DC\uC7A5\uAC00 \uB9E4\uC218): only price (total KRW). market(\uC2DC\uC7A5\uAC00 \uB9E4\uB3C4): only volume (coin qty). CLI flag: --order-type (alias: --ord-type, deprecated). Response field `ord_type` is preserved as Bithumb upstream. \u26A0\uFE0F REQUIRES EXPLICIT USER CONFIRMATION before executing: show the user market, side, order_type, price, volume, and total notional, then wait for explicit approval. Do NOT place the order without user confirmation. Example call: {"market":"KRW-BTC","side":"bid","order_type":"limit","price":"50000000","volume":"0.0001"}',
|
|
1840
1840
|
isWrite: true,
|
|
1841
1841
|
inputSchema: {
|
|
1842
1842
|
type: "object",
|
|
@@ -1891,7 +1891,7 @@ function registerTradeTools() {
|
|
|
1891
1891
|
{
|
|
1892
1892
|
name: "trade_cancel_order",
|
|
1893
1893
|
module: "trade",
|
|
1894
|
-
description: "\uC8FC\uBB38\uC744 \uCDE8\uC18C\uD569\uB2C8\uB2E4. Cancel an order by order_id or client_order_id.",
|
|
1894
|
+
description: "\uC8FC\uBB38\uC744 \uCDE8\uC18C\uD569\uB2C8\uB2E4. Cancel an order by order_id or client_order_id. \u26A0\uFE0F REQUIRES EXPLICIT USER CONFIRMATION before executing: show the user the order details (uuid or client_order_id) and wait for explicit approval. Do NOT cancel without user confirmation.",
|
|
1895
1895
|
isWrite: true,
|
|
1896
1896
|
inputSchema: {
|
|
1897
1897
|
type: "object",
|
|
@@ -1924,7 +1924,7 @@ function registerTradeTools() {
|
|
|
1924
1924
|
{
|
|
1925
1925
|
name: "trade_batch_place",
|
|
1926
1926
|
module: "trade",
|
|
1927
|
-
description: '\uB2E4\uAC74 \uC8FC\uBB38\uC744 \uC694\uCCAD\uD569\uB2C8\uB2E4. Place multiple orders in a single batch (max 20). Use when: user asks for multiple orders at once (e.g., grid orders, simultaneous BTC+ETH limit buys). Do NOT use: for a single order (use trade_place_order); for time-sliced execution (use twap_place). Each order item field: `order_type` (canonical). Legacy `ord_type` is auto-normalized to `order_type` by the CLI; MCP callers should always send `order_type`. Partial-failure semantics: each item may succeed or fail independently. Do NOT auto-retry failed items; surface them to the user. Example call: {"batch_orders":[{"market":"KRW-BTC","side":"bid","order_type":"limit","price":"50000000","volume":"0.0001"},{"market":"KRW-ETH","side":"bid","order_type":"limit","price":"4500000","volume":"0.001"}]}',
|
|
1927
|
+
description: '\uB2E4\uAC74 \uC8FC\uBB38\uC744 \uC694\uCCAD\uD569\uB2C8\uB2E4. Place multiple orders in a single batch (max 20). Use when: user asks for multiple orders at once (e.g., grid orders, simultaneous BTC+ETH limit buys). Do NOT use: for a single order (use trade_place_order); for time-sliced execution (use twap_place). Each order item field: `order_type` (canonical). Legacy `ord_type` is auto-normalized to `order_type` by the CLI; MCP callers should always send `order_type`. Partial-failure semantics: each item may succeed or fail independently. Do NOT auto-retry failed items; surface them to the user. \u26A0\uFE0F REQUIRES EXPLICIT USER CONFIRMATION before executing: read all orders back to the user (market, side, order_type, price, volume for each) and wait for explicit approval. Do NOT place any order without user confirmation. Example call: {"batch_orders":[{"market":"KRW-BTC","side":"bid","order_type":"limit","price":"50000000","volume":"0.0001"},{"market":"KRW-ETH","side":"bid","order_type":"limit","price":"4500000","volume":"0.001"}]}',
|
|
1928
1928
|
isWrite: true,
|
|
1929
1929
|
inputSchema: {
|
|
1930
1930
|
type: "object",
|
|
@@ -1969,7 +1969,7 @@ function registerTradeTools() {
|
|
|
1969
1969
|
{
|
|
1970
1970
|
name: "trade_batch_cancel",
|
|
1971
1971
|
module: "trade",
|
|
1972
|
-
description: "\uB2E4\uAC74 \uC8FC\uBB38\uC744 \uCDE8\uC18C\uD569\uB2C8\uB2E4. Cancel multiple orders (max 30). Provide order_ids or client_order_ids.",
|
|
1972
|
+
description: "\uB2E4\uAC74 \uC8FC\uBB38\uC744 \uCDE8\uC18C\uD569\uB2C8\uB2E4. Cancel multiple orders (max 30). Provide order_ids or client_order_ids. \u26A0\uFE0F REQUIRES EXPLICIT USER CONFIRMATION before executing: show the user all order IDs to be cancelled and wait for explicit approval. Do NOT cancel without user confirmation.",
|
|
1973
1973
|
isWrite: true,
|
|
1974
1974
|
inputSchema: {
|
|
1975
1975
|
type: "object",
|
|
@@ -2238,7 +2238,7 @@ function registerTwapTools() {
|
|
|
2238
2238
|
{
|
|
2239
2239
|
name: "twap_place_order",
|
|
2240
2240
|
module: "twap",
|
|
2241
|
-
description: "TWAP \uC8FC\uBB38\uC744 \uC694\uCCAD\uD569\uB2C8\uB2E4. Place a TWAP (Time-Weighted Average Price) order.",
|
|
2241
|
+
description: "TWAP \uC8FC\uBB38\uC744 \uC694\uCCAD\uD569\uB2C8\uB2E4. Place a TWAP (Time-Weighted Average Price) order. \u26A0\uFE0F REQUIRES EXPLICIT USER CONFIRMATION before executing: show the user market, side, price/volume, duration, frequency, and computed slice count (duration \xF7 frequency), then wait for explicit approval. Do NOT place the order without user confirmation.",
|
|
2242
2242
|
isWrite: true,
|
|
2243
2243
|
inputSchema: {
|
|
2244
2244
|
type: "object",
|
|
@@ -2349,7 +2349,7 @@ function registerTwapTools() {
|
|
|
2349
2349
|
{
|
|
2350
2350
|
name: "twap_cancel_order",
|
|
2351
2351
|
module: "twap",
|
|
2352
|
-
description: "TWAP \uC8FC\uBB38\uC744 \uCDE8\uC18C\uD569\uB2C8\uB2E4. Cancel a TWAP order.",
|
|
2352
|
+
description: "TWAP \uC8FC\uBB38\uC744 \uCDE8\uC18C\uD569\uB2C8\uB2E4. Cancel a TWAP order. \u26A0\uFE0F REQUIRES EXPLICIT USER CONFIRMATION before executing: show the user the TWAP order ID and wait for explicit approval. Do NOT cancel without user confirmation.",
|
|
2353
2353
|
isWrite: true,
|
|
2354
2354
|
inputSchema: {
|
|
2355
2355
|
type: "object",
|
|
@@ -2649,7 +2649,7 @@ function registerWithdrawTools() {
|
|
|
2649
2649
|
{
|
|
2650
2650
|
name: "withdraw_krw",
|
|
2651
2651
|
module: "withdraw",
|
|
2652
|
-
description: "\uB4F1\uB85D\uB41C \uACC4\uC88C\uB85C \uC6D0\uD654\uB97C \uCD9C\uAE08\uD569\uB2C8\uB2E4.
|
|
2652
|
+
description: "\uB4F1\uB85D\uB41C \uACC4\uC88C\uB85C \uC6D0\uD654\uB97C \uCD9C\uAE08\uD569\uB2C8\uB2E4. \uC774 \uC791\uC5C5\uC740 \uB418\uB3CC\uB9B4 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. Withdraw KRW to registered bank account. This action is IRREVERSIBLE. Requires 2FA (Kakao). \u26A0\uFE0F REQUIRES EXPLICIT USER CONFIRMATION before executing: show the user the withdrawal amount and wait for explicit approval. Do NOT withdraw without user confirmation.",
|
|
2653
2653
|
isWrite: true,
|
|
2654
2654
|
inputSchema: {
|
|
2655
2655
|
type: "object",
|
|
@@ -2682,7 +2682,7 @@ function registerWithdrawTools() {
|
|
|
2682
2682
|
{
|
|
2683
2683
|
name: "withdraw_cancel_coin",
|
|
2684
2684
|
module: "withdraw",
|
|
2685
|
-
description: "\uAC00\uC0C1 \uC790\uC0B0 \uCD9C\uAE08\uC744 \uCDE8\uC18C\uD569\uB2C8\uB2E4. Cancel a cryptocurrency withdrawal.",
|
|
2685
|
+
description: "\uAC00\uC0C1 \uC790\uC0B0 \uCD9C\uAE08\uC744 \uCDE8\uC18C\uD569\uB2C8\uB2E4. Cancel a cryptocurrency withdrawal. \u26A0\uFE0F REQUIRES EXPLICIT USER CONFIRMATION before executing: show the user the withdrawal ID and wait for explicit approval. Do NOT cancel without user confirmation.",
|
|
2686
2686
|
isWrite: true,
|
|
2687
2687
|
inputSchema: {
|
|
2688
2688
|
type: "object",
|
|
@@ -2887,7 +2887,7 @@ function registerDepositTools() {
|
|
|
2887
2887
|
{
|
|
2888
2888
|
name: "deposit_krw",
|
|
2889
2889
|
module: "deposit",
|
|
2890
|
-
description: "\uC6D0\uD654 \uC785\uAE08\uC744 \uC694\uCCAD\uD569\uB2C8\uB2E4. 2\uCC28 \uC778\uC99D(\uCE74\uCE74\uC624)\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Request KRW deposit. Requires 2FA (Kakao).",
|
|
2890
|
+
description: "\uC6D0\uD654 \uC785\uAE08\uC744 \uC694\uCCAD\uD569\uB2C8\uB2E4. 2\uCC28 \uC778\uC99D(\uCE74\uCE74\uC624)\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Request KRW deposit. Requires 2FA (Kakao). \u26A0\uFE0F REQUIRES EXPLICIT USER CONFIRMATION before executing: show the user the deposit amount and wait for explicit approval. Do NOT request deposit without user confirmation.",
|
|
2891
2891
|
isWrite: true,
|
|
2892
2892
|
inputSchema: {
|
|
2893
2893
|
type: "object",
|
|
@@ -2920,7 +2920,7 @@ function registerDepositTools() {
|
|
|
2920
2920
|
{
|
|
2921
2921
|
name: "deposit_generate_address",
|
|
2922
2922
|
module: "deposit",
|
|
2923
|
-
description: "\uC785\uAE08 \uC8FC\uC18C\uB97C \uC0DD\uC131\uD569\uB2C8\uB2E4. Generate a new deposit address.",
|
|
2923
|
+
description: "\uC785\uAE08 \uC8FC\uC18C\uB97C \uC0DD\uC131\uD569\uB2C8\uB2E4. Generate a new deposit address. \u26A0\uFE0F REQUIRES EXPLICIT USER CONFIRMATION before executing: show the user the currency and network type, then wait for explicit approval. Do NOT generate without user confirmation.",
|
|
2924
2924
|
isWrite: true,
|
|
2925
2925
|
inputSchema: {
|
|
2926
2926
|
type: "object",
|
|
@@ -3479,4 +3479,4 @@ smol-toml/dist/index.js:
|
|
|
3479
3479
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3480
3480
|
*)
|
|
3481
3481
|
*/
|
|
3482
|
-
//# sourceMappingURL=chunk-
|
|
3482
|
+
//# sourceMappingURL=chunk-DXX5FHRF.js.map
|