We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a meta issue to track progress of ABI Encoder/Decoder to support ABI version 1.1.
The text was updated successfully, but these errors were encountered:
Missing will be encoding/decoding to/from bin <-> Go structs for variants.
Proposed addition:
type MaStruct struct { Memo string Key VariantNameUint32 } type VariantNameUint32 struct { EOS_Variant int Uint32Val uint32 Name Name } func (v *VariantNameUint32) SetUint32(bob uint32) { v.EOS_Variant = 0 v.Uint32Val = bob } func (v *VariantNameUint32) SetName(bob eos.Name) { v.EOS_Variant = 1 v.Name = bob }
or something similar. Feedback welcome.
Sorry, something went wrong.
Started initial approach in the library the supports binary + JSON format, see https://github.com/eoscanada/eos-go/blob/master/types.go#L1087.
Usage example: BlockSigningAuthority
No branches or pull requests
This is a meta issue to track progress of ABI Encoder/Decoder to support ABI version 1.1.
The text was updated successfully, but these errors were encountered: