Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ExecuteSendMsg ¶
type ExecuteSendMsg struct {
Send ExecuteSendTypeMsg `json:"send"`
}
type ExecuteSendTypeMsg ¶
type ExecuteSendTypeMsg struct {
Contract msg.AccAddress `json:"contract"`
Amount string `json:"amount"`
Msg []byte `json:"msg"`
}
type ExecuteTransferMsg ¶
type ExecuteTransferMsg struct {
Transfer ExecuteTransferTypeMsg `json:"transfer"`
}
type ExecuteTransferTypeMsg ¶
type ExecuteTransferTypeMsg struct {
Amount string `json:"amount"`
Recipient msg.AccAddress `json:"recipient"`
}
type InitialBalanceMsg ¶
type InitialBalanceMsg struct {
Address msg.AccAddress `json:"address"`
Amount string `json:"amount"`
}
type InstantiateMsg ¶
type InstantiateMsg struct {
Name string `json:"name"`
Symbol string `json:"symbol"`
Decimals int `json:"decimals"`
InitialBalances []InitialBalanceMsg `json:"initial_balances"`
}
Click to show internal directories.
Click to hide internal directories.