-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow.json
74 lines (74 loc) · 1.8 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
70
71
72
73
74
{
"contracts": {
"FungibleToken": {
"source": "./src/flow/cadence/contracts/utility/FungibleToken.cdc",
"aliases": {
"emulator": "0xee82856bf20e2aa6"
}
},
"FlowToken": {
"aliases": {
"emulator": "0x0ae53cb6e3f42a79"
}
},
"GamePieceNFT": {
"source": "./src/flow/cadence/contracts/GamePieceNFT.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7"
}
},
"DynamicNFT": {
"source": "./src/flow/cadence/contracts/DynamicNFT.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7"
}
},
"GamingMetadataViews": {
"source": "./src/flow/cadence/contracts/GamingMetadataViews.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7"
}
},
"MetadataViews": {
"source": "./src/flow/cadence/contracts/utility/MetadataViews.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7"
}
},
"NonFungibleToken": {
"source": "./src/flow/cadence/contracts/utility/NonFungibleToken.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7"
}
},
"RockPaperScissorsGame": {
"source": "./src/flow/cadence/contracts/RockPaperScissorsGame.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7"
}
}
},
"networks": {
"emulator": "127.0.0.1:3569",
"mainnet": "access.mainnet.nodes.onflow.org:9000",
"testnet": "access.devnet.nodes.onflow.org:9000"
},
"accounts": {
"emulator-account": {
"fromFile": "./emulator.private.json"
}
},
"deployments": {
"emulator": {
"emulator-account": [
"FungibleToken",
"NonFungibleToken",
"MetadataViews",
"GamingMetadataViews",
"GamePieceNFT",
"DynamicNFT",
"RockPaperScissorsGame"
]
}
}
}