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(java.math.BigInteger nonce,
java.math.BigInteger gasPrice,
java.math.BigInteger gasLimit,
java.lang.String to,
java.math.BigInteger value,
java.lang.String data,
java.math.BigInteger gasPremium,
java.math.BigInteger feeCap) |
| 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(java.math.BigInteger nonce,
java.math.BigInteger gasLimit,
java.lang.String to,
java.math.BigInteger value,
java.math.BigInteger gasPremium,
java.math.BigInteger feeCap) |
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.math.BigInteger value,
java.lang.String data,
java.math.BigInteger gasPremium,
java.math.BigInteger feeCap) |
static RawTransaction |
createTransaction(java.math.BigInteger nonce,
java.math.BigInteger gasPrice,
java.math.BigInteger gasLimit,
java.lang.String to,
java.lang.String data) |
java.lang.String |
getData() |
java.math.BigInteger |
getFeeCap() |
java.math.BigInteger |
getGasLimit() |
java.math.BigInteger |
getGasPremium() |
java.math.BigInteger |
getGasPrice() |
java.math.BigInteger |
getNonce() |
java.lang.String |
getTo() |
java.math.BigInteger |
getValue() |
boolean |
isEIP1559Transaction() |
boolean |
isLegacyTransaction() |
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(java.math.BigInteger nonce,
java.math.BigInteger gasPrice,
java.math.BigInteger gasLimit,
java.lang.String to,
java.math.BigInteger value,
java.lang.String data,
java.math.BigInteger gasPremium,
java.math.BigInteger feeCap)
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(java.math.BigInteger nonce, java.math.BigInteger gasLimit, java.lang.String to, java.math.BigInteger value, java.math.BigInteger gasPremium, java.math.BigInteger feeCap)
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(java.math.BigInteger nonce, java.math.BigInteger gasPrice, java.math.BigInteger gasLimit, java.lang.String to, java.math.BigInteger value, java.lang.String data, java.math.BigInteger gasPremium, java.math.BigInteger feeCap)
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 java.math.BigInteger getGasPremium()
public java.math.BigInteger getFeeCap()
public boolean isLegacyTransaction()
public boolean isEIP1559Transaction()