> 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/fairlaunch/fairlaunch-follow.md).

# FairLaunch Follow

### 1.关注公平发射资产

```go
func FollowFairLaunchAsset(token string, fairLaunchInfoId int, assetId string, deviceId string) string
```

#### 参数

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

`fairLaunchInfoId` <mark style="color:orange;">int</mark> 公平发射ID

`assetId`<mark style="color:orange;">string</mark> 资产ID

`deviceId`<mark style="color:orange;">string</mark> 设备ID

#### 响应

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

### 2.取消关注公平发射资产

```go
func UnfollowFairLaunchAsset(token string, assetId string) string
```

#### 参数

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

`assetId`<mark style="color:orange;">string</mark> 资产ID

#### 响应

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

### 3.查询是否已经关注公平发射资产

```go
func QueryIsFairLaunchFollowed(token string, assetId string) string
```

#### 参数

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

`assetId`<mark style="color:orange;">string</mark> 资产ID

#### 响应

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