Commit 4abdca9f authored by Noah Zinsmeister's avatar Noah Zinsmeister Committed by GitHub

fix: improve calldata formatting (#4352)

improve calldata formatting
parent 99ef9366
...@@ -16,6 +16,7 @@ export const COMMON_CONTRACT_NAMES: Record<number, { [address: string]: string } ...@@ -16,6 +16,7 @@ export const COMMON_CONTRACT_NAMES: Record<number, { [address: string]: string }
[GOVERNANCE_BRAVO_ADDRESSES[SupportedChainId.MAINNET]]: 'Governance', [GOVERNANCE_BRAVO_ADDRESSES[SupportedChainId.MAINNET]]: 'Governance',
'0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e': 'ENS Registry', '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e': 'ENS Registry',
'0x4976fb03C32e5B8cfe2b6cCB31c09Ba78EBaBa41': 'ENS Public Resolver', '0x4976fb03C32e5B8cfe2b6cCB31c09Ba78EBaBa41': 'ENS Public Resolver',
'0xf754A7E347F81cFdc70AF9FbCCe9Df3D826360FA': 'Franchiser Factory',
}, },
} }
......
...@@ -117,6 +117,9 @@ const FOUR_BYTES_DIR: { [sig: string]: string } = { ...@@ -117,6 +117,9 @@ const FOUR_BYTES_DIR: { [sig: string]: string } = {
'0x5ef2c7f0': 'setSubnodeRecord(bytes32,bytes32,address,address,uint64)', '0x5ef2c7f0': 'setSubnodeRecord(bytes32,bytes32,address,address,uint64)',
'0x10f13a8c': 'setText(bytes32,string,string)', '0x10f13a8c': 'setText(bytes32,string,string)',
'0xb4720477': 'sendMessageToChild(address,bytes)', '0xb4720477': 'sendMessageToChild(address,bytes)',
'0xa9059cbb': 'transfer(address,uint256)',
'0x095ea7b3': 'approve(address,uint256)',
'0x7b1837de': 'fund(address,uint256)',
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment