forked from circlefin/stablecoin-evm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js.example
57 lines (54 loc) · 2.21 KB
/
config.js.example
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
/**
* SPDX-License-Identifier: Apache-2.0
*
* Copyright (c) 2023, Circle Internet Financial, LLC.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module.exports = {
// BIP39 mnemonic phrase
MNEMONIC: "",
// INFURA API key
INFURA_KEY: "",
// FiatTokenProxy admin - can upgrade implementation contract
PROXY_ADMIN_ADDRESS: "",
// Owner - can configure master minter, pauser, and blacklister
OWNER_ADDRESS: "",
// Master Minter - can configure minters and minter allowance
MASTERMINTER_ADDRESS: "",
// Master Minter Owner - owner of master minter contract
MASTERMINTER_OWNER_ADDRESS: "",
// Pauser - can pause the contract
PAUSER_ADDRESS: "",
// Blacklister - can blacklist addresses
BLACKLISTER_ADDRESS: "",
// FiatTokenProxy contract - override the contract address used in migrations
PROXY_CONTRACT_ADDRESS: "",
// FiatToken Implementation contract - deploy new proxy with an existing implementation contract
FIAT_TOKEN_IMPLEMENTATION_ADDRESS: "",
// LostAndFound - tokens that were locked in the contract are sent to this
LOST_AND_FOUND_ADDRESS: "",
// MockERC1271WalletOwner - can deploy and send transactions from a sample ERC1271 wallet
MOCK_ERC1271_WALLET_OWNER_ADDRESS: "",
// TokenName - ERC20 name of the token e.g. "USD Coin"
TOKEN_NAME: "USD Coin",
// TokenSymbol - Symbol of the token e.g. "USDC"
TOKEN_SYMBOL: "USDC",
// TokenCurrency - Currency of the token e.g. "USD"
TOKEN_CURRENCY: "USD",
// TokenDecimals - Number of decimals for the token e.g. 6
TOKEN_DECIMALS: 6,
// USE_VERSIONED_MIGRATIONS - whether or not to use migrations in migrations/versioned directory.
// These migrations deploy each version of FiatToken separately.
USE_VERSIONED_MIGRATIONS: true,
};