Closed denisgranha closed 4 years ago
I added the abis using this script, for future reference:
import json
import os
print('makerdao_abis = [')
for filename in os.listdir(os.getcwd()):
with open(os.path.join(os.getcwd(), filename), 'r') as f:
if '.abi' in filename:
abi_parsed = json.loads(f.read())
print(abi_parsed)
print(']')
@lukasschor @tschubotz @rmeissner I think adding all this 128 Abis (https://changelog.makerdao.com/releases/mainnet/1.1.4/abi/mainnet_abi_1.1.4.zip) should cover all the MakerDao related transactions 😁
You can find a file with all the abi's here https://changelog.makerdao.com/releases/mainnet/1.1.4/abi/index.html
And a list of addresses: https://changelog.makerdao.com/releases/mainnet/active/contracts.json