ProductName: Mac OS X
ProductVersion: 10.15.6
BuildVersion: 19G2021
When playing around with mcd to learn about the Maker system I noticed the following odd looking output:
./bin/mcd --chain mainnet --ilk=ETH-A --urn=0xF949272B728F32Ea6CB5543Fe0DCcE8aBF6fEe4B gem balance
vat 0.000000000000000000 Unlocked collateral (WETH
UNI-V2
UNI-V2
UNI-V2
UNI-V2
UNI-V2
UNI-V2)
ink 0.000000000000000000 Locked collateral (WETH
UNI-V2
UNI-V2
UNI-V2
UNI-V2
UNI-V2
UNI-V2)
hevm: could not parse abi argument: : address
CallStack (from HasCallStack):
error, called at src/EVM/ABI.hs:485:8 in hevm-0.48.0-JFbaB4z3V2D4yuHF1ql3y4:EVM.ABI
ext External account balance (WETH
UNI-V2
UNI-V2
UNI-V2
UNI-V2
UNI-V2
UNI-V2)
I added a start-of-line anchor to sed to eliminate the multiline matching of GEMs (first commit), but then that left the issue of "bad argument address" when ETH_FROM is not set. I added a guard as a second commit to eliminate the Callstack dump, so now if ETH_FROM is unset you get
Hi, my platform is
When playing around with
mcd
to learn about the Maker system I noticed the following odd looking output:I added a start-of-line anchor to sed to eliminate the multiline matching of GEMs (first commit), but then that left the issue of "bad argument
address
" whenETH_FROM
is not set. I added a guard as a second commit to eliminate theCallstack
dump, so now ifETH_FROM
is unset you getand when it's set you'll get the following output:
Happy to revise if there are any issues or I've overlooked something.