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