From f3cf1c722e3b797972ef9974350cca89e3087518 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Thu, 17 Mar 2022 10:18:21 +0100 Subject: [PATCH] Export JSON conversions Invoking JsonRpcProvider.send() requires conversion of arguments to JSON and conversion of result from JSON. --- ethers/providers/jsonrpc.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/ethers/providers/jsonrpc.nim b/ethers/providers/jsonrpc.nim index 097216a..b9e26ab 100644 --- a/ethers/providers/jsonrpc.nim +++ b/ethers/providers/jsonrpc.nim @@ -10,6 +10,7 @@ import ./jsonrpc/conversions export basics export provider +export conversions push: {.upraises: [].}