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

     1  // returns the list of coins owned by the address
     2  GetCoins(addr Address) (dst Coins)
     3  
     4  // sends coins from one address to another
     5  SendCoins(from, to Address, amt Coins)
     6  
     7  // returns the total supply of the coin
     8  TotalCoin(denom string) int64
     9  
    10  // issues coins to the address
    11  IssueCoin(addr Address, denom string, amount int64)
    12  
    13  // burns coins from the address
    14  RemoveCoin(addr Address, denom string, amount int64)