2022-09-15 10:38:25 +00:00
|
|
|
import std/strutils
|
|
|
|
import pkg/ethers
|
|
|
|
|
2022-09-20 11:24:47 +00:00
|
|
|
proc revertReason*(e: ref ProviderError): string =
|
2022-09-15 10:38:25 +00:00
|
|
|
try:
|
2022-09-20 10:18:01 +00:00
|
|
|
var msg = e.msg
|
2022-09-15 10:38:25 +00:00
|
|
|
const revertPrefixes = @[
|
|
|
|
# hardhat
|
|
|
|
"Error: VM Exception while processing transaction: reverted with " &
|
|
|
|
"reason string ",
|
|
|
|
# ganache
|
|
|
|
"VM Exception while processing transaction: revert "
|
|
|
|
]
|
|
|
|
for prefix in revertPrefixes.items:
|
|
|
|
msg = msg.replace(prefix)
|
|
|
|
msg = msg.replace("\'")
|
|
|
|
return msg
|
|
|
|
except JsonParsingError:
|
|
|
|
return ""
|
|
|
|
|
2022-09-20 07:53:28 +00:00
|
|
|
proc reverts*[T](call: Future[T]): Future[bool] {.async.} =
|
|
|
|
try:
|
|
|
|
when T is void:
|
|
|
|
await call
|
|
|
|
else:
|
|
|
|
discard await call # TODO test this
|
|
|
|
return false
|
2022-09-20 11:24:47 +00:00
|
|
|
except ProviderError:
|
2022-09-20 10:18:01 +00:00
|
|
|
return true
|
2022-09-15 10:38:25 +00:00
|
|
|
|
2022-09-20 07:53:28 +00:00
|
|
|
proc reverts*[T](call: Future[T], reason: string): Future[bool] {.async.} =
|
|
|
|
try:
|
|
|
|
when T is void:
|
|
|
|
await call
|
|
|
|
else:
|
|
|
|
discard await call # TODO test this
|
|
|
|
return false
|
2022-09-20 11:24:47 +00:00
|
|
|
except ProviderError as error:
|
2022-09-20 07:53:28 +00:00
|
|
|
return reason == error.revertReason
|