Table of Contents

Class Body24

Namespace
Thirdweb.Api
Assembly
Thirdweb.dll

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

IDictionary<string, object>

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

ChainId5

SignedTransaction

Base64 encoded signed transaction to broadcast to the Solana network.

[JsonProperty("signedTransaction", Required = Required.Always)]
[Required]
public string SignedTransaction { get; set; }

Property Value

string