Documentation ¶
Index ¶
- Constants
- func INSCONSTRUCTOR_New(data []byte) ([]byte, []byte, error)
- func INSMETHOD_AddDeposit(object []byte, data []byte) ([]byte, []byte, error)
- func INSMETHOD_FindDeposit(object []byte, data []byte) ([]byte, []byte, error)
- func INSMETHOD_GetAccount(object []byte, data []byte) ([]byte, []byte, error)
- func INSMETHOD_GetBalance(object []byte, data []byte) ([]byte, []byte, error)
- func INSMETHOD_GetCode(object []byte, data []byte) ([]byte, []byte, error)
- func INSMETHOD_GetDeposits(object []byte, data []byte) ([]byte, []byte, error)
- func INSMETHOD_GetPrototype(object []byte, data []byte) ([]byte, []byte, error)
- func INSMETHOD_Transfer(object []byte, data []byte) ([]byte, []byte, error)
- func INS_META_INFO() []map[string]string
- func Initialize() XXX_insolar.ContractWrapper
- type Wallet
- func (w *Wallet) AddDeposit(txId string, deposit insolar.Reference) error
- func (w *Wallet) FindDeposit(transactionHash string) (bool, *insolar.Reference, error)
- func (w *Wallet) GetAccount(assetName string) (*insolar.Reference, error)
- func (w *Wallet) GetBalance(assetName string) (string, error)
- func (w *Wallet) GetDeposits() (map[string]interface{}, error)
- func (w *Wallet) Transfer(rootDomainRef insolar.Reference, assetName string, amountStr string, ...) (interface{}, error)
Constants ¶
View Source
const XNS = "XNS"
Variables ¶
This section is empty.
Functions ¶
func INSMETHOD_AddDeposit ¶
func INSMETHOD_FindDeposit ¶
func INSMETHOD_GetAccount ¶
func INSMETHOD_GetBalance ¶
func INSMETHOD_GetDeposits ¶
func INSMETHOD_GetPrototype ¶
func INSMETHOD_Transfer ¶
func INS_META_INFO ¶
func Initialize ¶
func Initialize() XXX_insolar.ContractWrapper
Types ¶
type Wallet ¶
type Wallet struct { foundation.BaseContract Accounts foundation.StableMap Deposits foundation.StableMap }
Wallet - basic wallet contract.
func (*Wallet) AddDeposit ¶
AddDeposit method stores deposit reference in member it belongs to
func (*Wallet) FindDeposit ¶
FindDeposit finds deposit for this wallet with this transaction hash. ins:immutable
func (*Wallet) GetAccount ¶
func (*Wallet) GetBalance ¶
GetBalance gets balance by asset name.
func (*Wallet) GetDeposits ¶
GetDeposits get all deposits for this wallet ins:immutable
Click to show internal directories.
Click to hide internal directories.