Class SignTransactionRequest
APIV1POSTTransactionSignRequest is the request for POST /v1/transaction/sign
Inheritance
SignTransactionRequest
Assembly: Algorand.dll
Syntax
public class SignTransactionRequest
Properties
|
Edit this page
View Source
Public_key
Declaration
[JsonProperty("public_key", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public byte[] Public_key { get; set; }
Property Value
|
Edit this page
View Source
Transaction
Base64 encoding of msgpack encoding of a Transaction object
Note: SDK and goal usually generate SignedTxn objects
in that case, the field txn / Transaction of the
generated SignedTxn object needs to be used
Declaration
[JsonProperty("transaction", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public byte[] Transaction { get; set; }
Property Value
|
Edit this page
View Source
Wallet_handle_token
Declaration
[JsonProperty("wallet_handle_token", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Wallet_handle_token { get; set; }
Property Value
|
Edit this page
View Source
Wallet_password
Declaration
[JsonProperty("wallet_password", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Wallet_password { get; set; }
Property Value
Methods
|
Edit this page
View Source
FromJson(string)
Declaration
public static SignTransactionRequest FromJson(string data)
Parameters
| Type |
Name |
Description |
| string |
data |
|
Returns
|
Edit this page
View Source
ToJson()
Declaration
Returns