forked from green-goo-dao/flow-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow.json
108 lines (108 loc) · 2.61 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"emulators": {
"default": {
"port": 3569,
"serviceAccount": "emulator-account"
}
},
"contracts": {
"ArrayUtils": "./cadence/contracts/ArrayUtils.cdc",
"StringUtils": "./cadence/contracts/StringUtils.cdc",
"AddressUtils": "./cadence/contracts/AddressUtils.cdc",
"ScopedNFTProviders": "./cadence/contracts/ScopedNFTProviders.cdc",
"ScopedFTProviders": "./cadence/contracts/ScopedFTProviders.cdc",
"FungibleToken": {
"source": "./cadence/contracts/FungibleToken.cdc",
"aliases": {
"emulator": "0xee82856bf20e2aa6",
"testnet": "0x9a0766d93b6608b7",
"mainnet": "0xf233dcee88fe0abe"
}
},
"NonFungibleToken": {
"source": "./cadence/contracts/NonFungibleToken.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7",
"testnet": "0x631e88ae7f1d7c20",
"mainnet": "0x1d7e57aa55817448"
}
},
"MetadataViews": {
"source": "./cadence/contracts/MetadataViews.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7",
"testnet": "0x631e88ae7f1d7c20",
"mainnet": "0x1d7e57aa55817448"
}
},
"ExampleNFT": "./cadence/contracts/ExampleNFT.cdc",
"ExampleToken": "./cadence/contracts/ExampleToken.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": "f2e846bd4c1fbf17839ae59e111c6b1c98579eda7a841412f102d6621ec671cb"
},
"flow-utils-testnet": {
"address": "0x31ad40c07a2a9788",
"key": {
"type": "google-kms",
"index": 0,
"signatureAlgorithm": "ECDSA_P256",
"hashAlgorithm": "SHA2_256",
"resourceID": "projects/flow-utils/locations/global/keyRings/contract/cryptoKeys/testnet/cryptoKeyVersions/1"
}
},
"flow-utils-mainnet": {
"address": "0xa340dc0a4ec828ab",
"key": {
"type": "google-kms",
"index": 0,
"signatureAlgorithm": "ECDSA_P256",
"hashAlgorithm": "SHA2_256",
"resourceID": "projects/flow-utils/locations/global/keyRings/contract/cryptoKeys/mainnet/cryptoKeyVersions/1"
}
}
},
"deployments": {
"emulator": {
"emulator-account": [
"ArrayUtils",
"StringUtils",
"AddressUtils",
"NonFungibleToken",
"MetadataViews",
"ExampleNFT",
"ExampleToken",
"ScopedNFTProviders",
"ScopedFTProviders"
]
},
"testnet": {
"flow-utils-testnet": [
"ArrayUtils",
"StringUtils",
"AddressUtils",
"ScopedNFTProviders",
"ScopedFTProviders"
]
},
"mainnet": {
"flow-utils-mainnet": [
"ArrayUtils",
"StringUtils",
"AddressUtils",
"ScopedNFTProviders",
"ScopedFTProviders"
]
}
},
"emulatorAccounts": {
"emulator-account": "f8d6e0586b0a20c7"
}
}