# Account Module

# Asset Change Notification

Topic: PRIVATE@ACCOUNT_CHANGE?

Module Type Resource Isolation
Account(ACCOUNT) Query(QUERY) Coin(COIN)

# Subscription Parameters

Parameter Name Description Example Value
COIN Coin name BTC, USDT, etc. Please utilize the RestAPI Spot Coin Configuration interface to retrieve a list of supported coin names

# Message Parameters

Name Type Description
b Decimal Available balance
f Decimal Frozen amount
s String Cryptocurrency
T TransactionType Transaction type
v Long Transaction version
t Long Transaction timestamp

# Subscription Example

{"method":"SUBSCRIBE","subject":"PRIVATE@ACCOUNT_CHANGE?USDT"}

# Sample Message Push

{
	"e":"MESSAGE",
	"s":"PRIVATE@ACCOUNT_CHANGE?USDT",
	"d":{
		"b":48.891,
		"s":"USDT",
		"T":"EXCHANGE",
		"t":1684915495663,
		"f":0,
		"v":36276
	}
}