We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b500ad4 commit ad1c9e4Copy full SHA for ad1c9e4
internal/handlers/token_handlers.go
@@ -23,6 +23,7 @@ type HolderModel struct {
23
HolderAddress string `json:"holder_address" ch:"owner"`
24
TokenId string `json:"token_id" ch:"token_id"`
25
Balance string `json:"balance" ch:"balance"`
26
+ TokenType string `json:"token_type" ch:"token_type"`
27
}
28
29
// @Summary Get token balances of an address by type
@@ -286,5 +287,6 @@ func serializeHolder(holder common.TokenBalance) HolderModel {
286
287
288
return ""
289
}(),
290
+ TokenType: holder.TokenType,
291
292
0 commit comments