mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-04 06:33:07 +00:00
remove fq typename
This commit is contained in:
parent
484f18a215
commit
3a9338d9f2
@ -1,7 +1,7 @@
|
|||||||
import std/tables
|
import std/tables
|
||||||
import std/uri
|
import std/uri
|
||||||
import pkg/chronicles
|
import pkg/chronicles
|
||||||
import pkg/eth/common/eth_types except Block, Log, Address
|
import pkg/eth/common/eth_types except Block, Log, Address, Transaction
|
||||||
import pkg/json_rpc/rpcclient
|
import pkg/json_rpc/rpcclient
|
||||||
import pkg/json_rpc/errors
|
import pkg/json_rpc/errors
|
||||||
import pkg/serde
|
import pkg/serde
|
||||||
@ -136,7 +136,7 @@ method getBlock*(
|
|||||||
|
|
||||||
method call*(
|
method call*(
|
||||||
provider: JsonRpcProvider,
|
provider: JsonRpcProvider,
|
||||||
tx: transaction.Transaction,
|
tx: Transaction,
|
||||||
blockTag = BlockTag.latest): Future[seq[byte]] {.async: (raises:[ProviderError]).} =
|
blockTag = BlockTag.latest): Future[seq[byte]] {.async: (raises:[ProviderError]).} =
|
||||||
|
|
||||||
convertError:
|
convertError:
|
||||||
@ -197,7 +197,7 @@ method getLogs*(
|
|||||||
|
|
||||||
method estimateGas*(
|
method estimateGas*(
|
||||||
provider: JsonRpcProvider,
|
provider: JsonRpcProvider,
|
||||||
transaction: transaction.Transaction,
|
transaction: Transaction,
|
||||||
blockTag = BlockTag.latest): Future[UInt256] {.async: (raises:[ProviderError]).} =
|
blockTag = BlockTag.latest): Future[UInt256] {.async: (raises:[ProviderError]).} =
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@ -324,7 +324,7 @@ method signMessage*(
|
|||||||
|
|
||||||
method sendTransaction*(
|
method sendTransaction*(
|
||||||
signer: JsonRpcSigner,
|
signer: JsonRpcSigner,
|
||||||
transaction: transaction.Transaction): Future[TransactionResponse]
|
transaction: Transaction): Future[TransactionResponse]
|
||||||
{.async: (raises:[SignerError, ProviderError]).} =
|
{.async: (raises:[SignerError, ProviderError]).} =
|
||||||
|
|
||||||
convertError:
|
convertError:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user