forked from onflow/faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow.json
41 lines (41 loc) · 1004 Bytes
/
flow.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
{
"emulators": {
"default": {
"port": 3569,
"serviceAccount": "emulator-account"
}
},
"contracts": {
"FungibleToken": {
"source": "./cadence/contracts/FungibleToken.cdc",
"aliases": {
"emulator": "0xee82856bf20e2aa6",
"testnet": "0x9a0766d93b6608b7"
}
}
},
"networks": {
"emulator": "127.0.0.1:3569",
"testnet": "access.devnet.nodes.onflow.org:9000",
"crescendo": "access.crescendo.nodes.onflow.org:9000"
},
"accounts": {
"default": {
"address": "01cf0e2f2f715450",
"key": "ba68d45a5acaa52f3cacf4ad3a64d9523e0ce0ae3addb1ee6805385b380b7646"
},
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"key": "91a22fbd87392b019fbe332c32695c14cf2ba5b6521476a8540228bdf1987068"
},
"testnet-account": {
"address": "${NEXT_PUBLIC_SIGNER_ADDRESS}",
"keys": "${SIGNER_PRIVATE_KEY}"
}
},
"deployments": {
"emulator": {
"emulator-account": []
}
}
}