Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Contract ¶
type Contract struct { ID ContractID AccountID *AccountID `json:"account_id"` ProjectID *ProjectID `json:"project_id"` Name string `json:"contract_name"` LowercaseName string `json:"lowercase_contract_name"` Abi string `json:"abi"` Bytecode string `json:"bytecode"` SourceMap string `json:"source_map"` Source string `json:"source"` NumberOfExceptions int `json:"number_of_exceptions"` LastEventOccurredAt *time.Time `json:"last_event_occurred_at"` DeploymentInformation DeploymentInformation `json:"deployment_information"` VerificationDate time.Time `json:"verification_date"` CreatedAt time.Time `json:"created_at"` }
type ContractAddress ¶
type ContractAddress string
type ContractID ¶
type ContractID string
type DeploymentInformation ¶
type DeploymentInformation struct { NetworkID NetworkID `json:"network_id"` Address ContractAddress `json:"address"` }
type ProjectPermissions ¶ added in v0.5.4
type ProjectPermissions struct {
AddContract bool `json:"add_contract"`
}
type StateObject ¶ added in v0.6.0
type TransactionState ¶ added in v0.6.0
type TransactionState struct { GasUsed uint64 `json:"-"` Status bool `json:"-"` Headers []*Header `json:"headers"` StateObjects []*StateObject `json:"state_objects"` }
Click to show internal directories.
Click to hide internal directories.