-
Notifications
You must be signed in to change notification settings - Fork 1
/
flow.json
48 lines (48 loc) · 1.07 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
{
"contracts": {
"DapperWalletRestrictions": "./contracts/DapperWalletRestrictions.cdc"
},
"networks": {
"emulator": "127.0.0.1:3569",
"mainnet": "access.mainnet.nodes.onflow.org:9000",
"testnet": "access.devnet.nodes.onflow.org:9000"
},
"accounts": {
"dapper-wallet-restrictions-testnet": {
"address": "a7d10afc50b14991",
"key": {
"type": "file",
"location": "dapper-wallet-restrictions-testnet.key"
}
},
"dapper-wallet-restrictions-mainnet": {
"address": "2d4cebdb9eca6f49",
"key": {
"type": "file",
"hashAlgorithm": "SHA2_256",
"location": "dapper-wallet-restrictions-mainnet.key"
}
},
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"key": "2e8a599d996182262b49b2dbacf15d4ce103044d74ca003e5959ab3d64608947"
}
},
"deployments": {
"emulator": {
"emulator-account": [
"DapperWalletRestrictions"
]
},
"testnet": {
"dapper-wallet-restrictions-testnet": [
"DapperWalletRestrictions"
]
},
"mainnet": {
"dapper-wallet-restrictions-mainnet": [
"DapperWalletRestrictions"
]
}
}
}