Documentation ¶
Index ¶
Constants ¶
View Source
const Handle = "tezos"
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Address ¶ added in v1.0.0
type Address struct {
Tz string `json:"tz"`
}
Address is a Tezos address object
type Client ¶ added in v1.0.0
Client is used to request data from the Tezos blockchain over the TzScan API.
type Manager ¶ added in v1.0.0
type Manager struct { Kind string `json:"kind"` Src Address `json:"src"` Operations []Operation `json:"operations"` }
Manager contains transfer operations
type Operation ¶ added in v1.0.0
type Operation struct { Kind string `json:"kind"` Src Address `json:"src"` Dest Address `json:"destination"` Amount blockatlas.Amount `json:"amount"` Failed bool `json:"failed"` Internal bool `json:"internal"` Burn int `json:"burn"` Counter int `json:"counter"` Fee blockatlas.Amount `json:"fee"` GasLimit string `json:"gas_limit"` StorageLimit string `json:"storage_limit"` OpLevel uint64 `json:"op_level"` Timestamp string `json:"timestamp"` }
Operation is a Tezos transfer operation
type Platform ¶ added in v1.0.0
type Platform struct {
// contains filtered or unexported fields
}
func (*Platform) GetTxsByAddress ¶ added in v1.0.0
func (p *Platform) GetTxsByAddress(address string) (blockatlas.TxPage, error)
Click to show internal directories.
Click to hide internal directories.