github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/docs/assets/reference/standard-library/std-2.gno (about)

     1  type Coin struct {
     2  	Denom  string `json:"denom"`  // the symbol of the coin
     3  	Amount int64  `json:"amount"` // the quantity of the coin
     4  }