Skip to content

Commit

Permalink
add missing fields in fireblocks AssetAddress struct (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
ian-shim committed Jul 30, 2024
1 parent 7c76ea7 commit b2e864d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion chainio/clients/fireblocks/get_asset_addresses.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ import (
type AssetAddress struct {
AssetID AssetID `json:"assetId"`
Address string `json:"address"`
Tag string `json:"tag"`
Description string `json:"description"`
Tag string `json:"tag"`
Type string `json:"type"`
CustomerRefID string `json:"customerRefId"`
AddressFormat string `json:"addressFormat"`
LegacyAddress string `json:"legacyAddress"`
EnterpriseAddress string `json:"enterpriseAddress"`
BIP44AddressIndex int `json:"bip44AddressIndex"`
UserDefined bool `json:"userDefined"`
}

Expand Down

0 comments on commit b2e864d

Please sign in to comment.