-
Notifications
You must be signed in to change notification settings - Fork 4
/
flow.json
69 lines (69 loc) · 1.45 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
65
66
67
68
69
{
"emulators": {
"default": {
"port": 3569,
"serviceAccount": "emulator-account"
}
},
"devWallet": {
"accessNode": {
"endpoint": "http://localhost:8080"
},
"port": 8701
},
"contracts": {
"NonFungibleToken": {
"source": "./flow/cadence/contracts/NonFungibleToken.cdc",
"aliases": {
"testnet": "0x83f8ed4318375647"
}
},
"Racenumber": {
"source": "./flow/cadence/contracts/Racenumber.cdc",
"aliases": {
"testnet": "0x83f8ed4318375647"
}
},
"FlowToken": "./flow/cadence/contracts/FlowToken.cdc",
"FungibleToken": "./flow/cadence/contracts/FungibleToken.cdc"
},
"networks": {
"emulator": "127.0.0.1:3569",
"mainnet": "access.mainnet.nodes.onflow.org:9000",
"testnet": "access.devnet.nodes.onflow.org:9000"
},
"accounts": {
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"key": "c2599f8dea49eff238008744056720cd251a4489e6dffa82cf8f99fbefbbffde"
},
"testnet-account": {
"address": "0x83f8ed4318375647",
"key": {
"type": "hex",
"index": 0,
"signatureAlgorithm": "ECDSA_P256",
"hashAlgorithm": "SHA3_256",
"privateKey": "d09f61d016e0fa767a7af5fb35f9a198d7ee37cf36db2fd02a0d596ffde81d0c"
}
}
},
"deployments": {
"emulator": {
"emulator-account": [
"NonFungibleToken",
"Racenumber",
"FungibleToken",
"FlowToken"
]
},
"testnet": {
"testnet-account": [
"NonFungibleToken",
"Racenumber",
"FungibleToken",
"FlowToken"
]
}
}
}