IntentVersion
type IntentVersion
Byte signifying the version of an Intent
The version here is to distinguish between signing different versions of the struct or enum. Serialized output between two different versions of the same struct/enum might accidentally (or maliciously on purpose) match.
BCS
The BCS serialized form for this type is defined by the following ABNF:
```text intent-version = u8 ```
type IntentVersion uint
const (
IntentVersionV0 IntentVersion = 1
)