> For the complete documentation index, see [llms.txt](https://bitlong.gitbook.io/api-doc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bitlong.gitbook.io/api-doc/tapd-api/assetbalancebackup.md).

# AssetBalanceBackup

### 1.上传余额哈希

*每次备份成功后调用*

```go
func UploadAssetBalanceBackupHash(token string) string
```

#### 参数

`token` <mark style="color:orange;">string</mark> token

#### 响应

```json
{"success":true,"error":"","code":200,"data":"74234e98afe7498fb5daf1f36ac2d78acc339464f950703b8c019892f982b90b"}
```

### 2.检查是否需要备份

*定时循环调用*

```go
func CheckBackup(token string) string
```

#### 参数

`token` <mark style="color:orange;">string</mark> token

#### 响应

* `true` 需要备份
* `false` 无需备份

```json
{"success":true,"error":"","code":200,"data":false}
```
