Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Type ¶
type Type uint
Type is an enumeration for data type
const ( // TxData is equal to Bytes data type but uses transaction data to store the data TxData Type = iota // String stored in Ethereum storage String Type = iota // Bytes stored in Ethereum storage Bytes Type = iota // Address stored in Ethereum storage Address Type = iota // Uint stored in Ethereum storage Uint Type = iota // Int stored in Ethereum storage Int Type = iota // Bool stored in Ethereum storage Bool Type = iota // IPFS hash stored in Ethereum storage, data stored in IPFS IPFS Type = iota )
func TypeString ¶
TypeString retrieves an enum value from the enum constants string name. Throws an error if the param is not part of the enum.
Click to show internal directories.
Click to hide internal directories.