Interface UnsignedPrivateMarkerTransaction
public interface UnsignedPrivateMarkerTransaction
The interface Unsigned private marker transaction.
-
Method Summary
Modifier and TypeMethodDescriptionlongGets gas limit.Optional<? extends org.hyperledger.besu.datatypes.Quantity> Gets gas price.longgetNonce()Gets nonce.org.apache.tuweni.bytes.BytesGets payload.Optional<? extends org.hyperledger.besu.datatypes.Address> getTo()Gets to address.org.hyperledger.besu.datatypes.TransactionTypegetType()Gets type.org.hyperledger.besu.datatypes.QuantitygetValue()Gets value.
-
Method Details
-
getType
org.hyperledger.besu.datatypes.TransactionType getType()Gets type.- Returns:
- the type
-
getNonce
long getNonce()Gets nonce.- Returns:
- the nonce
-
getGasPrice
Optional<? extends org.hyperledger.besu.datatypes.Quantity> getGasPrice()Gets gas price.- Returns:
- the gas price
-
getGasLimit
long getGasLimit()Gets gas limit.- Returns:
- the gas limit
-
getTo
Optional<? extends org.hyperledger.besu.datatypes.Address> getTo()Gets to address.- Returns:
- the to address
-
getValue
org.hyperledger.besu.datatypes.Quantity getValue()Gets value.- Returns:
- the value
-
getPayload
org.apache.tuweni.bytes.Bytes getPayload()Gets payload.- Returns:
- the payload
-