Saving and reading state
The contract state
#Writing to the state
Set(key []byte, pb proto.Message) error#Reading from the state
Has(key []byte) boolGet(key []byte, pb proto.Message) error#Deleting a key
Delete(key []byte)Last updated