-
Notifications
You must be signed in to change notification settings - Fork 8
/
terrarium-template.json
106 lines (106 loc) · 2.79 KB
/
terrarium-template.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"workspace_optimizer": true,
"networks": {
"mainnet": {
"chainID": "phoenix-1",
"URL": "https://phoenix-lcd.terra.dev"
},
"staging": {
"chainID": "phoenix-1",
"URL": "https://phoenix-lcd.terra.dev"
},
"cradle": {
"chainID": "phoenix-1",
"URL": "<YOUR CRADLE LCD>"
},
"testnet": {
"chainID": "pisco-1",
"URL": "https://pisco-lcd.terra.dev"
},
"localterra": {
"chainID": "localterra",
"URL": "http://localhost:1317"
}
},
"refs": {
"base_path": "./refs.json",
"copy_refs_to": []
},
"contracts": {
"attestation": {
"src": "./contracts/attestation/"
},
"denom-staking-membership": {
"src": "./contracts/denom-staking-membership/"
},
"enterprise": {
"src": "./contracts/enterprise/"
},
"enterprise-facade": {
"src": "./contracts/enterprise-facade/"
},
"enterprise-facade-v1": {
"src": "./contracts/enterprise-facade-v1/"
},
"enterprise-facade-v2": {
"src": "./contracts/enterprise-facade-v1/"
},
"enterprise-factory": {
"src": "./contracts/enterprise-factory/",
"deploy_script": "./tasks/deploy_enterprise_factory.ts"
},
"enterprise-governance": {
"src": "./contracts/enterprise-governance/"
},
"enterprise-governance-controller": {
"src": "./contracts/enterprise-governance-controller/"
},
"enterprise-treasury": {
"src": "./contracts/enterprise-treasury/"
},
"enterprise-outposts": {
"src": "./contracts/enterprise-outposts/"
},
"enterprise-versioning": {
"src": "./contracts/enterprise-versioning/"
},
"funds-distributor": {
"src": "./contracts/funds-distributor/"
},
"ics721-callback-proxy": {
"src": "./contracts/ics721-callback-proxy/"
},
"multisig-membership": {
"src": "./contracts/multisig-membership/"
},
"nft-staking-membership": {
"src": "./contracts/nft-staking-membership/"
},
"token-staking-membership": {
"src": "./contracts/token-staking-membership/"
},
"ics-proxy": {},
"cw20_base": {},
"cw3_fixed_multisig": {},
"cw721_base": {},
"cw721_metadata_onchain": {}
},
"signers": {
"pisco": {
"mnemonic": "some seed phrase for a wallet you are using on testnet",
"network": "testnet"
},
"phoenix": {
"mnemonic": "some other seed phrase for a wallet you are using on mainnet",
"network": "mainnet"
},
"staging": {
"mnemonic": "some other seed phrase for a wallet you are using on staging env (still mainnet though)",
"network": "staging"
},
"cradle": {
"mnemonic": "some other seed phrase for a wallet you are using on cradle env (still mainnet though)",
"network": "cradle"
}
}
}