forked from terra-money/enterprise-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterrarium-template.json
59 lines (59 loc) · 1.4 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
{
"workspace_optimizer": true,
"networks": {
"mainnet": {
"chainID": "phoenix-1",
"URL": "https://phoenix-lcd.terra.dev"
},
"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": {
"enterprise-factory": {
"src": "./contracts/enterprise-factory/",
"deploy_script": "./tasks/deploy_enterprise_factory.ts"
},
"enterprise": {
"src": "./contracts/enterprise/"
},
"test-contract": {
"src": "./contracts/test-contract/",
"deploy_script": "./tasks/deploy_test_contract.ts"
},
"enterprise-governance": {
"src": "./contracts/enterprise-governance/"
},
"funds-distributor": {
"src": "./contracts/funds-distributor/"
},
"token-staking": {
"src": "./contracts/token-staking/"
},
"nft-staking": {
"src": "./contracts/nft-staking/"
},
"cw20_base": {},
"cw3_fixed_multisig": {},
"cw721_base": {}
},
"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"
}
}
}