Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AN = roxe.AN
View Source
var ActN = roxe.ActN
View Source
var PN = roxe.PN
Functions ¶
func NewTransfer ¶
Types ¶
type Create ¶
type Create struct {
Issuer roxe.AccountName `json:"issuer"`
MaximumSupply roxe.Asset `json:"maximum_supply"`
}
Create represents the `create` struct on the `roxe.token` contract.
type Issue ¶
type Issue struct {
To roxe.AccountName `json:"to"`
Quantity roxe.Asset `json:"quantity"`
Memo string `json:"memo"`
}
Issue represents the `issue` struct on the `roxe.token` contract.
type Transfer ¶
type Transfer struct {
From roxe.AccountName `json:"from"`
To roxe.AccountName `json:"to"`
Quantity roxe.Asset `json:"quantity"`
Memo string `json:"memo"`
}
Transfer represents the `transfer` struct on `roxe.token` contract.
Click to show internal directories.
Click to hide internal directories.