public class RawTransaction
extends java.lang.Object
Modifier | Constructor and Description |
---|---|
protected |
RawTransaction(java.math.BigInteger nonce,
java.math.BigInteger gasPrice,
java.math.BigInteger gasLimit,
java.lang.String to,
java.math.BigInteger value,
java.lang.String data) |
protected |
RawTransaction(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
static RawTransaction |
createContractTransaction(java.math.BigInteger nonce,
java.math.BigInteger gasPrice,
java.math.BigInteger gasLimit,
java.math.BigInteger value,
java.lang.String init) |
static RawTransaction |
createEtherTransaction(java.math.BigInteger nonce,
java.math.BigInteger gasPrice,
java.math.BigInteger gasLimit,
java.lang.String to,
java.math.BigInteger value) |
static RawTransaction |
createEtherTransaction(long chainId,
java.math.BigInteger nonce,
java.math.BigInteger gasLimit,
java.lang.String to,
java.math.BigInteger value,
java.math.BigInteger maxPriorityFeePerGas,
java.math.BigInteger maxFeePerGas) |
static RawTransaction |
createTransaction(java.math.BigInteger nonce,
java.math.BigInteger gasPrice,
java.math.BigInteger gasLimit,
java.lang.String to,
java.math.BigInteger value,
java.lang.String data) |
static RawTransaction |
createTransaction(java.math.BigInteger nonce,
java.math.BigInteger gasPrice,
java.math.BigInteger gasLimit,
java.lang.String to,
java.lang.String data) |
static RawTransaction |
createTransaction(long chainId,
java.math.BigInteger nonce,
java.math.BigInteger gasLimit,
java.lang.String to,
java.math.BigInteger value,
java.lang.String data,
java.math.BigInteger maxPriorityFeePerGas,
java.math.BigInteger maxFeePerGas) |
java.lang.String |
getData() |
java.math.BigInteger |
getGasLimit() |
java.math.BigInteger |
getGasPrice() |
java.math.BigInteger |
getNonce() |
java.lang.String |
getTo() |
ITransaction |
getTransaction() |
TransactionType |
getType() |
java.math.BigInteger |
getValue() |
protected RawTransaction(ITransaction transaction)
protected RawTransaction(java.math.BigInteger nonce, java.math.BigInteger gasPrice, java.math.BigInteger gasLimit, java.lang.String to, java.math.BigInteger value, java.lang.String data)
public static RawTransaction createContractTransaction(java.math.BigInteger nonce, java.math.BigInteger gasPrice, java.math.BigInteger gasLimit, java.math.BigInteger value, java.lang.String init)
public static RawTransaction createEtherTransaction(java.math.BigInteger nonce, java.math.BigInteger gasPrice, java.math.BigInteger gasLimit, java.lang.String to, java.math.BigInteger value)
public static RawTransaction createEtherTransaction(long chainId, java.math.BigInteger nonce, java.math.BigInteger gasLimit, java.lang.String to, java.math.BigInteger value, java.math.BigInteger maxPriorityFeePerGas, java.math.BigInteger maxFeePerGas)
public static RawTransaction createTransaction(java.math.BigInteger nonce, java.math.BigInteger gasPrice, java.math.BigInteger gasLimit, java.lang.String to, java.lang.String data)
public static RawTransaction createTransaction(java.math.BigInteger nonce, java.math.BigInteger gasPrice, java.math.BigInteger gasLimit, java.lang.String to, java.math.BigInteger value, java.lang.String data)
public static RawTransaction createTransaction(long chainId, java.math.BigInteger nonce, java.math.BigInteger gasLimit, java.lang.String to, java.math.BigInteger value, java.lang.String data, java.math.BigInteger maxPriorityFeePerGas, java.math.BigInteger maxFeePerGas)
public java.math.BigInteger getNonce()
public java.math.BigInteger getGasPrice()
public java.math.BigInteger getGasLimit()
public java.lang.String getTo()
public java.math.BigInteger getValue()
public java.lang.String getData()
public TransactionType getType()
public ITransaction getTransaction()