-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow.json
64 lines (64 loc) · 1.48 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"networks": {
"emulator": "127.0.0.1:3569",
"mainnet": "access.mainnet.nodes.onflow.org:9000",
"sandboxnet": "access.sandboxnet.nodes.onflow.org:9000",
"testnet": "access.devnet.nodes.onflow.org:9000"
},
"accounts": {
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"key": "1aa7924d9f9d88da1e0f24f0090e9c3c1cb0e86abedac32c161fe1bb7f7839ba"
},
"testnet-account": {
"address": "5f303d043c0b938c",
"key": "91a7db4812e621754fbd9dff66753c8e841f509287388d7eda2de4c485d16863"
}
},
"deployments": {
"testnet": {
"testnet-account": [
"LotteryX"
]
},
"emulator": {
"emulator-account": [
"PRNG",
"LotteryX"
]
}
},
"contracts": {
"FlowToken": {
"source": "./src/flow/cadence/contracts/utility/FlowToken.cdc",
"aliases": {
"mainnet": "1654653399040a61",
"testnet": "7e60df042a9c0868",
"emulator": "0ae53cb6e3f42a79"
}
},
"PRNG": {
"source": "./src/flow/cadence/contracts/utility/PRNG.cdc",
"aliases": {
"mainnet": "5d60e2a0dfe7a922",
"testnet": "2bf5575475144be3",
"emulator": "f8d6e0586b0a20c7"
}
},
"FungibleToken": {
"source": "./src/flow/cadence/contracts/utility/FungibleToken.cdc",
"aliases": {
"mainnet": "f233dcee88fe0abe",
"testnet": "9a0766d93b6608b7",
"emulator": "ee82856bf20e2aa6"
}
},
"LotteryX": {
"source": "./src/flow/cadence/contracts/LotteryX.cdc",
"aliases": {
"testnet": "5f303d043c0b938c",
"emulator": "f8d6e0586b0a20c7"
}
}
}
}