Class Body24
Request payload for broadcasting a signed Solana transaction. Use the signedTransaction output from /v1/solana/sign-transaction.
public class Body24
- Inheritance
-
Body24
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
ChainId
Solana network the signed transaction targets. Use solana:mainnet or solana:devnet.
[JsonProperty("chainId", Required = Required.Always)]
public ChainId5 ChainId { get; set; }
Property Value
SignedTransaction
Base64 encoded signed transaction to broadcast to the Solana network.
[JsonProperty("signedTransaction", Required = Required.Always)]
[Required]
public string SignedTransaction { get; set; }