forked from circlefin/stablecoin-evm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js.example
28 lines (28 loc) · 898 Bytes
/
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
module.exports = {
// Token full name
TOKEN_NAME: "USD//C",
// Token symbol
TOKEN_SYMBOL: "USDC",
// Token pegged currency
TOKEN_CURRENCY: "USD",
// Token decimals
TOKEN_DECIMALS: 6
// 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: "",
// 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: "",
// LostAndFound - tokens that were locked in the contract are sent to this
LOST_AND_FOUND_ADDRESS: "",
};