diff --git a/data/api/apiESDTSupply.go b/data/api/apiESDTSupply.go new file mode 100644 index 000000000..9488f7b98 --- /dev/null +++ b/data/api/apiESDTSupply.go @@ -0,0 +1,9 @@ +package api + +// ESDTSupply represents the structure for esdt supply that is returned by api routes +type ESDTSupply struct { + InitialMinted string `json:"initialMinted"` + Supply string `json:"supply"` + Burned string `json:"burned"` + Minted string `json:"minted"` +}