forked from gnosis/safe-ios-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppConfig.example.yml
74 lines (70 loc) · 3.87 KB
/
AppConfig.example.yml
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
default: &default
crashlytics:
api_token: YOUR_CRAHSLYTICS_API_TOKEN
build_secret: YOUR_CRASHLYTICS_BUILD_SECRET
# chain ID to use for signing operations.
encryption_service_chain_id: 0
wallet_connect_chain_id: 4
node_service:
url: https://rinkeby.infura.io/v3/YOUR_INFURA_API_TOKEN
chain_id: 4 # rinkeby
transaction_web_url_format: "https://rinkeby.etherscan.io/tx/%@"
relay_service_url: https://STAGING_RELAY_SERVICE_URL
notification_service_url: https://STAGING_NOTIFICATION_SERVICE_URL
chrome_extension_url: https://chrome.google.com/webstore/detail/gnosis-safe-rinkeby/onhbkfhncfcgjenedjnbhdjggnnbflbe
terms_of_use_url: https://safe.gnosis.io/terms
privacy_policy_url: https://safe.gnosis.io/privacy
licenses_url: https://safe.gnosis.io/licenses#ios
safe_contract_metadata:
multi_send_contract_address: "0xe74d6af1670fb6560dd61ee29eb57c7bc027ce4e"
proxy_factory_address: "0x12302fE9c02ff50939BaAaaf415fc226C078613C"
safe_funder_address: "0xd9e09beaEb338d81a7c5688358df0071d4988115"
contract_metadata:
- master_copy: "0xAC6072986E985aaBE7804695EC2d8970Cf7541A2"
version: "0.0.2"
tx_type_hash: "0x14d461bc7412367e924637b363c7bf29b8f47e2f84869f4426e5633d8af47b20"
domain_separator_type_hash: "0x035aff83d86937d35b32e04f0ddc6ff469290eef2f1b692d8a815c89404d4749"
proxy_code: ""
- master_copy: "0x8942595A2dC5181Df0465AF0D7be08c8f23C93af"
version: "0.1.0"
tx_type_hash: "0x14d461bc7412367e924637b363c7bf29b8f47e2f84869f4426e5633d8af47b20"
domain_separator_type_hash: "0x035aff83d86937d35b32e04f0ddc6ff469290eef2f1b692d8a815c89404d4749"
proxy_code: ""
- master_copy: "0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A"
version: "1.0.0"
tx_type_hash: "0xbb8310d486368db6bd6f849402fdd73ad53d316b5a4b2644ad6efe0f941286d8"
domain_separator_type_hash: "0x035aff83d86937d35b32e04f0ddc6ff469290eef2f1b692d8a815c89404d4749"
proxy_code: "0x608060405234801561001057600080fd5b506040516020806101a88339810180604052602081101561003057600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806101846024913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050606e806101166000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054163660008037600080366000845af43d6000803e6000811415603d573d6000fd5b3d6000f3fea165627a7a723058201e7d648b83cfac072cbccefc2ffc62a6999d4a050ee87a721942de1da9670db80029496e76616c6964206d617374657220636f707920616464726573732070726f7669646564"
Debug:
<<: *default
log:
# list of log adapters. Values: console, crashlytics
adapters: [console]
# log level. Values: OFF, FATAL, ERROR, INFO, DEBUG
level: DEBUG
AdHoc:
<<: *default
log:
adapters: [console, crashlytics]
level: DEBUG
PreRelease:
<<: *default
chrome_extension_url: https://chrome.google.com/webstore/detail/gnosis-safe-rinkeby/gkiklnclpcbphbiaickiepnnnahefkoc
relay_service_url: https://RINKEBY_RELAY_SERVICE_URL
notification_service_url: https://RINKEBY_NOTIFICATION_SERVICE_URL
log:
adapters: [console, crashlytics]
level: ERROR
Release:
<<: *default
node_service:
url: https://mainnet.infura.io/v3/YOUR_INFURA_API_KEY
chain_id: 0 # mainnet
wallet_connect_chain_id: 1
transaction_web_url_format: "https://etherscan.io/tx/%@"
relay_service_url: https://PRODUCTION_RELAY_SERVICE_URL
notification_service_url: https://PRODUCTION_NOTIFICATION_SERVICE_URL
chrome_extension_url: https://chrome.google.com/webstore/detail/gnosis-safe/iecodoenhaghdlpodmhooppdhjhmibde
log:
adapters: [console, crashlytics]
level: ERROR