forked from onflow/linked-accounts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow.json
80 lines (80 loc) · 1.91 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
75
76
77
78
79
80
{
"contracts": {
"ChildAccount": {
"source": "./contracts/ChildAccount.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7",
"testnet": "0x1b655847a90e644a"
}
},
"FlowToken": {
"source": "./contracts/utility/FlowToken.cdc",
"aliases": {
"emulator": "0x0ae53cb6e3f42a79",
"testnet": "0x7e60df042a9c0868",
"mainnet": "0x1654653399040a61"
}
},
"FungibleToken": {
"source": "./contracts/utility/FungibleToken.cdc",
"aliases": {
"emulator": "0xee82856bf20e2aa6",
"testnet": "0x9a0766d93b6608b7",
"mainnet": "0xf233dcee88fe0abe"
}
},
"MetadataViews": {
"source": "./contracts/utility/MetadataViews.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7",
"testnet": "0x631e88ae7f1d7c20",
"mainnet": "0x1d7e57aa55817448"
}
},
"NonFungibleToken": {
"source": "./contracts/utility/NonFungibleToken.cdc",
"aliases": {
"emulator": "f8d6e0586b0a20c7",
"testnet": "631e88ae7f1d7c20",
"mainnet": "1d7e57aa55817448"
}
},
"FungibleTokenMetadataViews": {
"source": "./contracts/utility/FungibleTokenMetadataViews.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7",
"mainnet": "0xf233dcee88fe0abe",
"testnet": "0x9a0766d93b6608b7"
}
}
},
"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": "ecf2799eb1acbc31774b434fbb6c03a05e38be67c29dba364c949f0bf113854c"
},
"linked-accounts": {
"address": "1b655847a90e644a",
"key": "$LINKED_ACCOUNTS_KEY"
},
"testnet-dev": {
"address": "0x92bb7325065fdf5c",
"key": "$TESTNET_DEV_KEY"
}
},
"deployments": {
"emulator": {
"emulator-account": [
"NonFungibleToken",
"MetadataViews",
"ChildAccount"
]
}
}
}