Transfer

public struct Transfer : OperationType, Equatable

Transfers assets from one account to another.

  • Account name of the sender.

    Declaration

    Swift

    public var from: String
  • to

    Account name of the reciever.

    Declaration

    Swift

    public var to: String
  • Amount to transfer.

    Declaration

    Swift

    public var amount: Asset
  • Note attached to transaction.

    Declaration

    Swift

    public var memo: String
  • Declaration

    Swift

    public init(from: String, to: String, amount: Asset, memo: String = "")