Authority

public struct Authority : SteemCodable, Equatable

Type representing a Steem authority.

Authorities are a collection of accounts and keys that need to sign a message for it to be considered valid.

  • A type representing a key or account auth and its weight.

    See more

    Declaration

    Swift

    public struct Auth<T> : Equatable where T : SteemEncodable, T : Decodable, T : Equatable
  • Minimum signing threshold.

    Declaration

    Swift

    public var weightThreshold: UInt32
  • Account auths.

    Declaration

    Swift

    public var accountAuths: [Auth<String>]
  • Key auths.

    Declaration

    Swift

    public var keyAuths: [Auth<PublicKey>]