# Issue ## State ### Issue Interface ```go= type Issue interface { GetIssueID() string SetIssueID(string) GetCustodian() sdk.AccAddress SetCustodian(sdk.AccAddress) GetName() string SetName(string) GetDescription() string SetDescription(string) GetDenom() string SetDenom(string) GetDecimals() string SetDecimals(string) IsFreezeDisabled() bool SetFreezeDisabled(bool) String() string } ``` ### Coin Issue Info ```go= type CoinIssueInfo struct { IssueID string `json:"issue_id"` Custodian sdk.AccAddress `json:"custodian_address"` Name string `json:"name"` Denom string `json:"denom"` Decimals uint `json:"decimals"` Description string `json:"description"` FreezeDisabled bool `json:"freeze_disabled"` } ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up