diff --git a/libevm/ethapi/ethapi.go b/libevm/ethapi/ethapi.go index 7882d4364b..5d1ed7aabb 100644 --- a/libevm/ethapi/ethapi.go +++ b/libevm/ethapi/ethapi.go @@ -40,6 +40,11 @@ type ( DebugAPI = ethapi.DebugAPI ) +// Type aliases for types used as arguments or responses to the APIs. +type ( + RPCTransaction = ethapi.RPCTransaction +) + // NewEthereumAPI is identical to [ethapi.NewEthereumAPI]. func NewEthereumAPI(b Backend) *EthereumAPI { return ethapi.NewEthereumAPI(b)