UNPKG
mojitoswap-safe-deployments
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Collection of Safe singleton deployments
github.com/gnosis/safe-deployments/
bbelly/safe-deployments
mojitoswap-safe-deployments
/
dist
/
types.d.ts
14 lines
(13 loc)
•
307 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
interface
SingletonDeployment
{
defaultAddress
:
string
;
version
:
string
;
abi
:
any
[];
networkAddresses
:
Record
<
string
,
string
>;
contractName
:
string
;
released
:
boolean
; }
export
interface
DeploymentFilter
{
version
?:
string
;
released
?:
boolean
;
network
?:
string
; }