SignedTransaction
public struct SignedTransaction : Codable
The structure for a SignedTransaction
.
-
The serialized transaction, as
Data
. This may be different from the transaction requested if the transaction was modified by the signature provider.Declaration
Swift
public var serializedTransaction: Data
-
Serialized context free data. This may be different from the transaction requested if the context free data was modified by the signature provider.
Declaration
Swift
public var serializedContextFreeData: Data
-
An array of signatures as
String
s.Declaration
Swift
public var signatures: [String]
-
Initializer for the
SignedTransaction
.Declaration
Swift
public init()