8 lines
135 B
Go
8 lines
135 B
Go
|
package bank
|
||
|
|
||
|
const (
|
||
|
// DenomEthereum defines the single coin type/denomination supported in
|
||
|
// Ethermint.
|
||
|
DenomEthereum = "ETH"
|
||
|
)
|