14 lines
667 B
Nim
Raw Normal View History

2022-01-24 17:29:25 +01:00
proc net_version(): string
2022-01-18 12:42:58 +01:00
proc eth_accounts: seq[Address]
2022-01-18 14:26:41 +01:00
proc eth_blockNumber: UInt256
proc eth_call(transaction: Transaction, blockTag: BlockTag): seq[byte]
2022-01-24 12:12:52 +01:00
proc eth_gasPrice(): UInt256
proc eth_getBlockByNumber(blockTag: BlockTag, includeTransactions: bool): ?Block
2022-01-24 12:14:31 +01:00
proc eth_getTransactionCount(address: Address, blockTag: BlockTag): UInt256
2022-01-24 14:40:47 +01:00
proc eth_estimateGas(transaction: Transaction): UInt256
2022-01-24 17:29:25 +01:00
proc eth_chainId(): UInt256
2022-01-25 15:07:16 +01:00
proc eth_sendTransaction(transaction: Transaction): array[32, byte]
2022-01-26 11:21:28 +01:00
proc eth_sign(account: Address, message: seq[byte]): seq[byte]
2022-05-16 14:51:39 +02:00
proc eth_subscribe(name: string, filter = Filter.none): JsonNode
proc eth_unsubscribe(id: JsonNode): bool