Skip to content

Commit

Permalink
Feat: Add ChainInfo['contractAddresses'] property (#187)
Browse files Browse the repository at this point in the history
* Add `ChainInfo['contractAddresses']` property

* Make addresses nullable
  • Loading branch information
iamacook authored Jul 16, 2024
1 parent 3550ba4 commit a7d2769
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/types/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,17 @@ export type ChainInfo = {
chainName: string | null
enabled: boolean
}
contractAddresses: {
safeSingletonAddress: `0x${string}` | null
safeProxyFactoryAddress: `0x${string}` | null
multiSendAddress: `0x${string}` | null
multiSendCallOnlyAddress: `0x${string}` | null
fallbackHandlerAddress: `0x${string}` | null
signMessageLibAddress: `0x${string}` | null
createCallAddress: `0x${string}` | null
simulateTxAccessorAddress: `0x${string}` | null
safeWebAuthnSignerFactoryAddress: `0x${string}` | null
}
}

export type ChainListResponse = Page<ChainInfo>

0 comments on commit a7d2769

Please sign in to comment.