WEEX交易所API文檔 | WEEX Exchange API Docs

WEEX Trade API v1

Contents

This API allows to trade on the exchange and receive information about the account.

To use this API, you need to create an API key. An API key can be created in your Profile in the API Keys section. After creating an API key you’ll receive a key and a secret. Note that the Secret can be received only during the first hour after the creation of the Key. API key information is used for authentication.

All requests to Trade API come from the following URL: https://weex.nz/tapi

The method name is sent via the POST-parameter method. All method parameters are sent via the POST-parameters. All server responses are received in the JSON format. Each request needs an authentication. You can find out more on authentication in the relevant section of this documentation.

In the case of successful request, the response will be of the following type:

{
  "success": 1,
  "return": {
    # result
  }
}

Response in the case of error:

{
  "success": 0,
  "error": "<error>"
}

In the case of error you may also receive a response not in the JSON format. It usually happens if API limits are exceeded or in the case of unknown errors.


Authentication

Authentication is made by sending the following HTTP headers:
Key — API key. API key examples: 46G9R9D6-WJ77XOIP-XH9HH5VQ-A3XN3YOZ-8T1R8I8T

API keys are created in the Profile in the API keys section.

Sign — Signature. POST-parameters (?nonce=1&param0=val0), signed with a Secret key using HMAC-SHA512

For successful authentication you need to send a POST-parameter nonce with incremental numeric value for each request.

Example of using nonce values:

1 request: nonce=1
2 request: nonce=2
3 request: nonce=10
4 request: nonce=10 — an error will be displayed, because nonce is equal to the previous request
5 request: nonce=11
6 request: nonce=9 — an error will be displayed, because nonce is smaller than the nonce value in the API key

Minimum nonce value – 1, maximum – 4294967294. To reset the nonce value you need to create a new key.


Methods

getInfo

Returns information about the user’s current balance, API-key privileges, the number of open orders and Server Time. To use this method you need a privilege of the key info.
Response is cached for 60 seconds.

Parameters:
None.

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=getInfo&nonce=$NONCE"

Response example:

{
  "success": 1,
  "return": {
    "funds": {
      "usd": 325,
      "btc": 23.998,
      "ltc": 0
       # etc
    },
    "rights": {
      "info": 1,
      "trade": 0,
      "withdraw": 0
    },
    "transaction_count": 0,
    "open_orders": 1,
    "server_time": 1342123547
  }
}

funds: Your account balance available for trading. Doesn’t include funds on your open orders.
rights: The privileges of the current API key. At this time the privilege to withdraw is not used anywhere.
transaction_count: Deprecated, is equal to 0.
open_orders: The number of your open orders.
server_time: Server time (MSK).


Trade

The basic method that can be used for creating orders and trading on the exchange. To use this method you need an API key privilege to trade.

You can only create limit orders using this method, but you can emulate market orders using rate parameters. E.g. using rate=0.1 you can sell at the best market price. Each pair has a different limit on the minimum/maximum amounts, the minimum amount and the number of digits after the decimal point. All limitations can be obtained using the info method in PublicAPI v3.

Parameters:

ParameterDescriptionAssumes value
pairpair“currency_currency”, for example: “btc_usd”
typeorder side“buy” or “sell”
ratethe rate at which you need to buy/sellnumerical, for example “1.4”
modeorder type“market” or “limit” (limit by default)
amountthe amount you need to buy / sell (required if order type is limit)numerical, for example “7566.351”

You can get the list of pairs using the info method in PublicAPI v3.

NONCE="123456" # Next API-key nonce
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=Trade&nonce=$NONCE&pair=btc_usd&type=sell&rate=7566.351&amount=1.4"

Response example:

{
  "success": 1,
  "return": {
    "received": 0.5,
    "remains": 0,
    "order_id": 0,
    "funds": {
      "usd": 325,
      "btc": 2.498,
      "ltc": 0,
      # etc
    }
  }
}

received: The amount of currency bought/sold.
remains: The remaining amount of currency to be bought/sold (and the initial order amount).
order_id: Is equal to 0 if the request was fully “matched” by the opposite orders, otherwise the ID of the executed order will be returned.
funds: Balance after the request.


ActiveOrders

Returns the list of your active orders. To use this method you need a privilege of the info key.

If the order disappears from the list, it was either executed or canceled.

Optional Parameters:

ParameterDescriptionAssumes valueStandard value
pairpair“currency_currency”, for example: “btc_usd”all pairs

You can get the list of pairs using the info method in PublicAPI v3.

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=ActiveOrders&nonce=$NONCE&pair=btc_usd"

Response example:

{
  "success": 1,
  "return": {
    "343152": {
      "pair": "btc_usd",
      "type": "sell",
      "amount": 12.345,
      "rate": 485,
      "timestamp_created": 1342448420,
      "status": 0
    }
    # etc
  }
}

Array key: Order ID.
pair: The pair on which the order was created.
type: Order type, buy/sell.
amount: The amount of currency to be bought/sold.
rate: Sell/Buy price.
timestamp_created: The time when the order was created.
status: Deprecated, is always equal to 0.


OrderInfo

Returns the information on particular order. To use this method you need a privilege of the info key.

Parameters:

ParameterDescriptionAssumes value
order_idorder IDnumerical, for example “343152”

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=OrderInfo&nonce=$NONCE&order_id=343152"

Response example:

{
  "success": 1,
  "return": {
    "343152": {
      "pair": "btc_usd",
      "type": "sell",
      "start_amount": 13.345,
      "amount": 12.345,
      "rate": 485,
      "timestamp_created": 1342448420,
      "status": 0
    }
  }
}

Array key: Order ID.
pair: The pair on which the order was created.
type: Order type, buy/sell.
start_amount: The initial amount at the time of order creation.
amount: The remaining amount of currency to be bought/sold.
rate: Sell/Buy price.
timestamp_created: The time when the order was created.
status: 0 – active, 1 – executed order, 2 – canceled, 3 – canceled, but was partially executed.


CancelOrder

This method is used for order cancellation. To use this method you need a privilege of the trade key.

Parameters:

ParameterDescriptionAssumes value
order_idorder IDnumerical, for example “343154”

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=CancelOrder&nonce=$NONCE&order_id=343154"

Response example:

{
  "success": 1,
  "return": {
    "order_id": 343154,
    "funds": {
      "usd": 325,
      "btc": 24.998,
      "ltc": 0,
      # etc
    }
  }
}

order_id: The ID of canceled order.
funds: Balance upon request.


CancelOrders

This method is used for order/orders cancellation. To cancel more than one order, list them with a comma in the order_id parameter. For example: “1300,1301” To use this method you need a privilege of the trade key.

Parameters:

ParameterDescriptionAssumes value
order_idorder ID or order IDs separated by commasnumerical, for example “1300,1400”

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=CancelOrders&nonce=$NONCE&order_id=1300,1301"

Response example:

{
  "success": 1,
  "return": {
    "cancel_result": {
      1300: {
        "success": 1
      },
      1301: {
        "sucess": 0,
        "error": "invalid status"
      }
    },
    "funds": {
      "btc": 24.998,
      "usd": 325,
      "ltc": 0,
      # etc
    }
  }
}

cancel_result: Order cancel result.
funds: Balance upon request.


TradeHistory

Returns trade history. To use this method you need a privilege of the info key.

Optional Parameters:

ParameterDescriptionAssumes valueStandard value
fromtrade ID, from which the display startsnumerical0
countthe number of trades for displaynumerical1000
from_idtrade ID, from which the display startsnumerical0
end_idtrade ID on which the display endsnumerical
ordersortingASC or DESCDESC
sincethe time to start the displayUNIX time0
endthe time to end the displayUNIX time
pairpair to be displayed“currency_currency” for example: “btc_usd”all pairs

When using parameters since or end, the order parameter automatically assumes the value ASC. When using the since parameter the maximum time that can displayed is 1 week.

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=TradeHistory&nonce=$NONCE&pair=btc_usd"

Response example:

{
  "success": 1,
  "return": {
    "166830": {
      "pair": "btc_usd",
      "type": "sell",
      "amount": 1,
      "rate": 450,
      "order_id": 343148,
      "is_your_order": 1,
      "timestamp": 1342445793
    }
  }
}

Array keys: Trade ID.
pair: The pair on which the trade was executed.
type: Trade type, buy/sell.
amount: The amount of currency was bought/sold.
rate: Sell/Buy price.
order_id: Order ID.
is_your_order: Is equal to 1 if order_id is your order, otherwise is equal to 0.
timestamp: Trade execution time.


TransHistory

Returns the history of transactions. To use this method you need a privilege of the info key.

Optional Parameters:

ParameterDescriptionAssumes valueStandard value
fromtransaction ID, from which the display startsnumerical0
countnumber of transaction to be displayednumerical1000
from_idtransaction ID, from which the display startsnumerical0
end_idtransaction ID on which the display endsnumerical
ordersortingASC или DESCDESC
sincethe time to start the displayUNIX time0
endthe time to end the displayUNIX time

When using the parameters since or end, the order parameter automatically assumes the value ASC.

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=TransHistory&nonce=$NONCE"

Response example:

{
  "success": 1,
  "return": {
    "1081672": {
      "type": 1,
      "amount": 1.00000000,
      "currency": "BTC",
      "desc": "BTC Payment",
      "status": 2,
      "timestamp": 1342448420
    }
  }
}

Array keys: Transaction ID.
type: Transaction type. 1/2 – deposit/withdrawal, 4/5 – credit/debit.
amount: Transaction amount.
currency: Transaction currency.
desc: Transaction description.
status: Transaction status. 0 – canceled/failed, 1 – waiting for acceptance, 2 – successful, 3 – not confirmed.
timestamp: Transaction time.


CoinDepositAddress

This method can be used to retrieve the address for depositing crypto-currency.
To use this method, you need the info key privilege.
At present, this method does not generate new addresses. If you have never deposited in a particular crypto-currency and try to retrieve a deposit address, your request will return an error, because this address has not been generated yet.

Obligatory Parameters:

ParameterDescriptionAssumes value
coinNamecoin name“currency”, for example: “BTC”

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=CoinDepositAddress&nonce=$NONCE&coinName=BTC"

Response example:

{
  "success": 1,
  "return": {
    "address": "1BARCQAEjxqp1sKneiFtBVTZzhTHBTYcN5"
  }
}

address: address for deposits.


WithdrawCoin

The method is designed for cryptocurrency withdrawals.

Please note: You need to have the privilege of the Withdraw key to be able to use this method. You can make a request for enabling this privilege by submitting a ticket to Support.
You need to create the API key that you are going to use for this method in advance. Please provide the first 8 characters of the key (e.g. HKG82W66) in your ticket to support. We’ll enable the Withdraw privilege for this key.
When using this method, there will be no additional confirmations of withdrawal. Please note that you are fully responsible for keeping the secret of the API key safe after we have enabled the Withdraw privilege for it.

Parameters:

ParameterDescriptionAssumes value
coinNamecoin name“currency”, for example: “BTC”
amountwithdrawal amountnumerical
addresswithdrawal address“address”

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=WithdrawCoin&nonce=$NONCE&coinName=BTC&amount=0.31&address=1BARCQAEjxqp1sK...eiFtBVTZzhTHBTYcN5"

Response example:

{
  "success": 1,
  "return": {
    "tId": 37832629,
    "amountSent": 0.009,
    "funds": {
      "usd": 325,
      "btc": 24.998,
      "ltc": 0,
      # etc
    }
  }
}

tId: Transaction ID.
amountSent: The amount sent including commission.
funds: Balance after the request.


CreateCoupon

This method allows you to create Coupons.

Please note: In order to use this method, you need the Coupon key privilege. You can make a request to enable it by submitting a ticket to Support.
You need to create the API key that you are going to use for this method in advance. Please provide the first 8 characters of the key (e.g. HKG82W66) in your ticket to support. We’ll enable the Coupon privilege for this key.
You must also provide us the IP-addresses from which you will be accessing the API.
When using this method, there will be no additional confirmations of transactions. Please note that you are fully responsible for keeping the secret of the API key safe after we have enabled the Withdraw privilege for it.

Parameters:

ParameterDescriptionAssumes value
coinNamecoin name“currency”, for example: “BTC”
amountwithdrawal amountnumerical
receivername of user who is allowed to redeem the codeusername

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=CreateCoupon&nonce=$NONCE&coinName=BTC&amount=0.11&receiver=admin"

Response example:

{
  "success": 1,
  "return": {
    "coupon": "WEEXUSD69AA4BBX1UAZ32BPLKBR0QZTX5AENVNFWNZHNQDZ",
    "transID": 37832629,
    "funds": {
      "usd": 325,
      "btc": 24.998,
      "ltc": 0,
      # etc
    }
  }
}

coupon: Generated coupon.
transID: Transaction ID.
funds: Balance after the request.


RedeemCoupon

This method is used to redeem coupons.

Please note: In order to use this method, you need the Coupon key privilege. You can make a request to enable it by submitting a ticket to Support.
You need to create the API key that you are going to use for this method in advance. Please provide the first 8 characters of the key (e.g. HKG82W66) in your ticket to support. We’ll enable the Coupon privilege for this key.
You must also provide us the IP-addresses from which you will be accessing the API.
When using this method, there will be no additional confirmations of transactions. Please note that you are fully responsible for keeping the secret of the API key safe after we have enabled the Withdraw privilege for it.

Parameters:

ParameterDescriptionAssumes value
couponcouponWEEXUSD… (example)

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=RedeemCoupon&nonce=$NONCE&coupon=WEEXUSD...NZHNQDZ"

Response example:

{
  "success": 1,
  "return": {
    "couponAmount": "1",
    "couponCurrency": "USD",
    "transID": 37832629,
    "funds": {
      "usd": 325,
      "btc": 24.998,
      "ltc": 0,
      # etc
    }
  }
}

couponAmount: The amount that has been redeemed.
couponCurrency: The currency of the coupon that has been redeemed.
transID: Transaction ID.
funds: Balance after the request.


WEEX API Libraries

Most of the examples have been created by our users. We are not responsible for their performance and do not provide support for them. You can use them at your own risk.

If you want to see your example here, please create a ticket titled “API example for documentation”.

Pythonhttps://github.com/madmis/weexapi by madmis
C#: https://github.com/Falweek/WeexAPI by Falweek
C#: https://github.com/multiprogramm/WeexAPI by multiprogramm
Excel/VBA: https://github.com/krijnsent/crypto_vba by Koen Rijnsent

Deprecated:

PHP: http://pastebin.com/8fbMCguM
PHP: https://github.com/marinu666/PHP-btce-api
Python: http://pastebin.com/ec11hxcP
Python: https://github.com/alanmcintyre/btce-api
Python: https://github.com/t0pep0/btc-e.api.python
Python: https://github.com/acidvegas/btc-e
Java: http://pastebin.com/jyd9tACF
Java: https://github.com/alexandersjn/btc_e_assist_api
Java: https://github.com/Yocairo/BTCE_API_Lib
C#: https://github.com/DmT021/BtceApi
С# .NET: https://bitbucket.org/EldarG/btceapi
C++/CLI: http://pastebin.com/YvxmCRL9
C++11: https://github.com/halcyonx/btc-e-API
VB.NET: http://pastebin.com/JmJZSsd7
Objective-C: https://github.com/backmeupplz/BTCEBot
Ruby: https://github.com/cgore/ruby-btce
Swift: https://bitbucket.org/MaximSh/yawzabot-btce-bot
Go: https://github.com/alexpantyukhin/btceapi
Node.js: https://www.npmjs.com/package/btc-e3

WEEX唯客官網:www.weex.com

你也可以在 CMCCoingecko非小號X(Twitter)YoutubeFacebookLinkedin微博 上關注我们,第一时间获取更多投資導航和福利活動!了解平台幣 WXT 最新資訊請訪問 WXT專區

在線諮詢:

WEEX唯客中文交流群:https://t.me/weex_group

WEEX唯客英文交流群:https://t.me/Weex_Global

讚! (0)
Previous 2025年 4月 28日 下午11:49
Next 2025年 5月 7日 下午2:37

相關推薦

  • 一紙批文引爆市場! WEEX視角解讀:國泰君安暴漲背後的加密合規新週期

    就在昨天(6月24日),香港證監會正式批准國泰君安國際提供加密資產交易服務。受此影響,其母公司港股(1788,HKG)在24小時內股價暴漲198%,成為當日市場最受矚目的標的之一。這不僅是一張紙牌照帶來的利好,更是整個亞洲虛擬資產格局的一次「制度級震盪」。這起事件釋放出強烈訊號:傳統金融巨頭正加速入局加密產業,合規交易新時代已全面展開。從2023年起,香港便加快虛擬資產監管框架搭建步伐,歷經平台牌照政策發布、穩定幣監管草案徵詢、公示透明度提升等多個階段,終於在2025年夏天,完成與傳統金融機構融合的關鍵一環——首次批准中資券商經營加密資產交易業務。 國泰君安國際股價暴漲198%,市場嗅到了什麼? 國泰君安國際的大漲不是偶然事件,而是市場對「傳統金融 x 加密產業」未來空間的正面回饋。投資人普遍看好券商介入帶來的三大變化: 有人說,這是一張改變遊戲規則的「通行證」;也有人說,這是港版MiCA(歐盟加密法規)正式進入兌現階段的標誌性事件。那麼,這紙批文背後,究竟透露出哪些市場趨勢呢?而對數位資產產業而言,這是否意味著下半年將開啟全新的合規週期?國泰君安事件不僅意味著香港金融開放的信號明確,更重要的是讓加密資產不再是“邊緣投資品”,而是逐步進入主流金融體系。 亞洲合規化潮流:不只香港在動 別忽略,這不是孤例。放眼整個亞洲,2025年以來多個國家正在加快「加密資產合法接入金融系統」的進度: 也就是說,在過去幾年歐美因FTX事件收緊監管的同時,亞洲地區卻在逐步構建出一套更清晰的“監管沙盒”,並釋放出對優質平台的牌照傾斜。 WEEX視角:合規大潮下,我們早已在路上 對WEEX唯客交易所而言,傳統金融機構的入局並不意味著威脅,反而是驗證了我們在過去幾年堅持「合規優先、全球化穩健」的路徑是正確的。WEEX交易所自2021年啟動全球合規策略以來,始終將合規性、風控能力與產品穩定性作為核心建造方向。目前,WEEX唯客交易所總部設於阿聯酋杜拜,已在亞太、拉丁美洲、歐美、中東等區域完成在地化運營,並持續關注各國監管脈絡的變動。在穩定幣支援、交易深度建設與衍生性商品優化方面,WEEX唯客交易所長期投入,確保用戶在牛熊週期中都能獲得流暢、透明、安全的交易體驗。合規的盡頭是信任,而信任的建立則需要時間和透明。 WEEX唯客始終相信,數位資產的未來,不只屬於一部分圈內人,而是屬於全球每一位普通投資者。 接下來3–6個月,值得投資者重點關注:

    2025年 6月 25日
    60
  • 企業囤幣潮再起!Metaplanet、Strategy 等巨頭加碼比特幣,總持倉逼近特斯拉|2025 最新動態

    關鍵事實:2025年6月23日,隨著地緣政治緊張局勢加劇,企業紛紛增持比特幣,比特幣鞏固了其作為首選資產的地位。日本的Metaplanet領銜增持了1,111枚比特幣,使其總持倉量達到11,111枚,接近特斯拉的11,509枚比特幣。美國Strategy公司增加了245枚比特幣,使其總持倉量達到592,100枚比特幣,價值超過640億美元。 Méliuz Bitcoin和Locate Technologies分別增持了596枚比特幣和4枚比特幣。區塊鏈集團也加入其中,以690萬歐元的價格購買了75枚比特幣,使其持倉量增加至1,728枚比特幣,年初至今的收益率為1,231.7%。 來源:Bitcoin For Corps/X 儘管地緣政治存在不確定性,企業仍囤積比特幣儲備 一些企業對比特幣作為財務資產表現出了非凡的信心,即使在地緣政治緊張局勢和市場波動加劇的情況下,它們仍於2025年6月23日星期一大幅增持了比特幣儲備。今天,「企業比特幣」社群成員宣布了大量比特幣收購,這表明企業將投資多元化到這一領先加密貨幣的趨勢強勁。 今日:企業比特幣聯盟的成員 正忙於囤積#比特幣,以充實他們的國庫儲備。 ➤Metaplanet JP:+1,111 比特幣 ➤ Meliuz:+596 比特幣 ➤ Locate Technologies:+4 比特幣 ➤ Strategy:+245 比特幣 來源 🇯🇵 Metaplanet 加碼 1,111 枚比特幣,持倉即將超越特斯拉 根據 Cointelegraph 於 2025 年 6 月 23 日披露的監管文件顯示,總部位於日本的 Metaplanet 近期購入了 1,111 枚比特幣,使其總持幣量達到 11,111 枚。此次收購價值約 172.6 億日圓(約 1.17 億美元),平均每枚比特幣的價格略低於 105,500 美元。此舉使 Metaplanet 的持幣量與特斯拉目前的 11,509 枚比特幣持幣量僅相差 398 枚。 Metaplanet 的積極進取策略使其成為第八大比特幣持有企業,超越了挖礦公司 Hut 8,並計劃在月底前超越特斯拉。 🇺🇸 Strategy 續增 245 枚比特幣,鞏固企業領先地位 總部位於維吉尼亞州的軟體公司 Strategy 是企業比特幣領域的主導者,該公司已增持 245 個比特幣。 Strategy 目前持有 592,100 個比特幣,價值超過 640 億美元。這項收購展現了其在地緣政治緊張局勢加劇(包括近期以色列和伊朗之間的飛彈交火)下的韌性。此次收購的時機,加上 STRD 優先股的發行——這是一款在納斯達克上市的比特幣支持證券,旨在融資 2.5 億美元——凸顯了 Strategy 抓住市場機會的戰略部署。該公司近期斥資 10.8 億美元收購比特幣,進一步鞏固了其在企業比特幣應用領域的領先地位。 📊 其他企業持倉動態:Méliuz、Locate Technologies 亦加碼 Méliuz 增持了 596 個比特幣,而 Locate Technologies 則增持了 4 個比特幣。這些舉措反映出,即使在市場波動的情況下,各大公司也都在努力利用比特幣來增強企業資產負債表。比特幣雜誌 (Bitcoin Magazine) 也表達了同樣的看法,並在今天早些時候的 X 文章中指出,“比特幣繼續證明其作為對沖不確定性工具的價值”,並以 Metaplanet 的最新收購為例。 🇪🇺 歐洲企業持倉上升:The Blockchain Group 入場增持 更廣泛的市場背景顯示,年初至今 (YTD) 比特幣收益率為 1,231.7%。區塊鏈集團 (The Blockchain Group) 最近以約 690 萬歐元的價格收購了 75 個比特幣,使其總持倉量達到 1,728 個比特幣,正如「企業比特幣」(Bitcoin For Corporates) 所強調的那樣。此次收購進一步增強了歐洲企業建立穩健比特幣儲備的趨勢。 展望未來:企業持幣競賽加速升溫 隨著企業持續持有比特幣,這種加密貨幣在企業財務中的作用日益凸顯。隨著 Metaplanet 盯上特斯拉的持股,以及 Strategy 不斷擴大其主導地位,未來幾週,企業比特幣持有者的排名可能會發生重大變化。 在這個不斷發展的行業中,比特幣的價值主張持續吸引企業的興趣。截至本報告撰寫之時,即2025年6月23日下午6:59(西太平洋時間),加密貨幣市場仍是投資者和企業關注的焦點,BTC價格上漲3.16%,至102,756美元。

    2025年 6月 24日
    73
  • WEEX合約將上線ERT U本位合約- 6/24 17:00(UTC 8)

    我們很高興的宣布,WEEX合約將於2025年6月24日17:00(UTC 8)上線ERT U本位合約。 合約以美元穩定幣為計價單位,支持多種槓桿,以滿足不同投資者的需求。您可以通過網頁、APP進行交易,歡迎您體驗! 新增加的幣對包括: ERT/USDT 其他信息: WEEX 手續費 風險提示: 數字資產合約交易是高風險的創新產品,需要專業知識。請您理性判斷,審慎做出交易決策。 WEEX唯客團隊 註冊WEEX唯客 >>> 在Twitter上關注WEEX >>> 加入WEEX唯客社群 >>> 更多交易機會 >>> 【收錄平台】: CoinMarketCap | CryptoWisser.com | Coingecko | Coincarp

    2025年 6月 24日
    45
  • WEEX新上線:ERC69 (Expansive Rectal Coin) 現貨即將上線!

    尊敬的WEEX用戶, 充值時間:TBD 交易時間:2025-06-23 14:00 (UTC 8) 提現時間:TBD 交易現貨鏈接: ERC69/USDT 【ERC69 (Expansive Rectal Coin) 簡介】 我們來這裡是為了拓展meme 幣的極限—— 沒有開發者轉儲,沒有VC 洩漏,只有原始的、未經審查的社區力量。 其它信息 ERC69-USDT 官網 ERC69-USDT X WEEX 手續費 感謝您對WEEX的支持! WEEX Team 立即註冊WEEX 賬戶 >>> X 社媒關注WEEX動態 >>> 加入社區 >>> 查看更多上新>>> (Supported Platforms): CoinMarketCap | 非小號feixiaohao | Cryptowisser.com

    2025年 6月 23日
    32
  • WEEX合約將上線UPTOP U本位合約- 6/23 17:05(UTC 8)

    我們很高興的宣布,WEEX合約將於2025年6月23日17:05(UTC 8)上線UPTOP U本位合約。 合約以美元穩定幣為計價單位,支持多種槓桿,以滿足不同投資者的需求。您可以通過網頁、APP進行交易,歡迎您體驗! 新增加的幣對包括: UPTOP/USDT 其他信息: WEEX 手續費 風險提示: 數字資產合約交易是高風險的創新產品,需要專業知識。請您理性判斷,審慎做出交易決策。 WEEX唯客團隊 註冊WEEX唯客 >>> 在Twitter上關注WEEX >>> 加入WEEX唯客社群 >>> 更多交易機會 >>> 【收錄平台】: CoinMarketCap | CryptoWisser.com | Coingecko | Coincarp

    2025年 6月 23日
    36
  • WEEX合約將上線DMC U本位合約- 6/24 19:10(UTC 8)

    我們很高興的宣布,WEEX合約將於2025年6月24日19:10(UTC 8)上線DMC U本位合約。 合約以美元穩定幣為計價單位,支持多種槓桿,以滿足不同投資者的需求。您可以通過網頁、APP進行交易,歡迎您體驗! 新增加的幣對包括: DMC/USDT 其他信息: WEEX 手續費 風險提示: 數字資產合約交易是高風險的創新產品,需要專業知識。請您理性判斷,審慎做出交易決策。 WEEX唯客團隊 註冊WEEX唯客 >>> 在Twitter上關注WEEX >>> 加入WEEX唯客社群 >>> 更多交易機會 >>> 【收錄平台】: CoinMarketCap | CryptoWisser.com | Coingecko | Coincarp

    2025年 6月 23日
    29
zh-TW 繁體中文
內容目錄