Skip to main content

MoveAuthenticatorDigestInterface

type MoveAuthenticatorDigestInterface

The digest of a `MoveAuthenticator`.

type MoveAuthenticatorDigestInterface interface {
// Returns the next digest in byte-increasing order.
NextLexicographical() *MoveAuthenticatorDigest
// Returns the next digest in byte-increasing order, or `None` if
// the result would overflow.
NextLexicographicalOpt() **MoveAuthenticatorDigest
ToBase58() string
ToBytes() []byte
}