We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ChainInfo['contractAddresses']
1 parent 3550ba4 commit a7d2769Copy full SHA for a7d2769
src/types/chains.ts
@@ -95,6 +95,17 @@ export type ChainInfo = {
95
chainName: string | null
96
enabled: boolean
97
}
98
+ contractAddresses: {
99
+ safeSingletonAddress: `0x${string}` | null
100
+ safeProxyFactoryAddress: `0x${string}` | null
101
+ multiSendAddress: `0x${string}` | null
102
+ multiSendCallOnlyAddress: `0x${string}` | null
103
+ fallbackHandlerAddress: `0x${string}` | null
104
+ signMessageLibAddress: `0x${string}` | null
105
+ createCallAddress: `0x${string}` | null
106
+ simulateTxAccessorAddress: `0x${string}` | null
107
+ safeWebAuthnSignerFactoryAddress: `0x${string}` | null
108
+ }
109
110
111
export type ChainListResponse = Page<ChainInfo>
0 commit comments