@@ -98,19 +98,16 @@ type Gateway interface {
98
98
FilecoinAddressToEthAddress (ctx context.Context , p jsonrpc.RawParams ) (ethtypes.EthAddress , error )
99
99
EthAccounts (ctx context.Context ) ([]ethtypes.EthAddress , error )
100
100
EthBlockNumber (ctx context.Context ) (ethtypes.EthUint64 , error )
101
- EthGetBlockTransactionCountByNumber (ctx context.Context , blkNum ethtypes. EthUint64 ) (ethtypes.EthUint64 , error )
101
+ EthGetBlockTransactionCountByNumber (ctx context.Context , blkNum string ) (ethtypes.EthUint64 , error )
102
102
EthGetBlockTransactionCountByHash (ctx context.Context , blkHash ethtypes.EthHash ) (ethtypes.EthUint64 , error )
103
103
EthGetBlockByHash (ctx context.Context , blkHash ethtypes.EthHash , fullTxInfo bool ) (ethtypes.EthBlock , error )
104
104
EthGetBlockByNumber (ctx context.Context , blkNum string , fullTxInfo bool ) (ethtypes.EthBlock , error )
105
105
EthGetTransactionByHash (ctx context.Context , txHash * ethtypes.EthHash ) (* ethtypes.EthTx , error )
106
- EthGetTransactionByHashLimited (ctx context.Context , txHash * ethtypes.EthHash , limit abi.ChainEpoch ) (* ethtypes.EthTx , error )
107
106
EthGetTransactionHashByCid (ctx context.Context , cid cid.Cid ) (* ethtypes.EthHash , error )
108
107
EthGetMessageCidByTransactionHash (ctx context.Context , txHash * ethtypes.EthHash ) (* cid.Cid , error )
109
108
EthGetTransactionCount (ctx context.Context , sender ethtypes.EthAddress , blkParam ethtypes.EthBlockNumberOrHash ) (ethtypes.EthUint64 , error )
110
109
EthGetTransactionReceipt (ctx context.Context , txHash ethtypes.EthHash ) (* EthTxReceipt , error )
111
- EthGetTransactionReceiptLimited (ctx context.Context , txHash ethtypes.EthHash , limit abi.ChainEpoch ) (* EthTxReceipt , error )
112
110
EthGetBlockReceipts (ctx context.Context , blkParam ethtypes.EthBlockNumberOrHash ) ([]* EthTxReceipt , error )
113
- EthGetBlockReceiptsLimited (ctx context.Context , blkParam ethtypes.EthBlockNumberOrHash , limit abi.ChainEpoch ) ([]* EthTxReceipt , error )
114
111
EthGetCode (ctx context.Context , address ethtypes.EthAddress , blkParam ethtypes.EthBlockNumberOrHash ) (ethtypes.EthBytes , error )
115
112
EthGetStorageAt (ctx context.Context , address ethtypes.EthAddress , position ethtypes.EthBytes , blkParam ethtypes.EthBlockNumberOrHash ) (ethtypes.EthBytes , error )
116
113
EthGetBalance (ctx context.Context , address ethtypes.EthAddress , blkParam ethtypes.EthBlockNumberOrHash ) (ethtypes.EthBigInt , error )
0 commit comments