-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflow.json
More file actions
104 lines (104 loc) · 2.28 KB
/
flow.json
File metadata and controls
104 lines (104 loc) · 2.28 KB
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
{
"contracts": {
"DeFiActions": {
"source": "./contracts/DeFiActions.cdc",
"aliases": {
"testnet": "0c0c904844c9a720"
}
},
"FungibleTokenConnectors": {
"source": "./contracts/FungibleTokenConnectors.cdc",
"aliases": {
"testnet": "0c0c904844c9a720"
}
},
"FlowCallbackScheduler": {
"source": "./contracts/FlowCallbackScheduler.cdc",
"aliases": {
"testnet": "0c0c904844c9a720"
}
},
"FlowSwapCallbackHandler": {
"source": "./contracts/FlowSwapCallbackHandler.cdc",
"aliases": {
"testnet": "0c0c904844c9a720"
}
},
"FlowSwap": {
"source": "./contracts/FlowSwap.cdc",
"aliases": {
"testnet": "0c0c904844c9a720"
}
},
"TestToken": {
"source": "./contracts/TestToken.cdc",
"aliases": {
"testnet": "0c0c904844c9a720"
}
}
},
"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": "2eae2f31cb5b756151fa11d82949c634b8f28796a711d7eb1e52cc301ed11111"
},
"flowswap": {
"address": "fd90865386855394",
"key": {
"type": "file",
"location": "flowswap.pkey"
}
},
"new-account": {
"address": "0000000000000001",
"key": "d54b8ee49061d4a8880c4b3378b6dba02c92a96821054ca271cac96c13a24bc0"
},
"testnet-deployer": {
"address": "0c0c904844c9a720",
"key": {
"type": "hex",
"index": 0,
"signatureAlgorithm": "ECDSA_P256",
"hashAlgorithm": "SHA3_256",
"privateKey": "a78efaf1fdbb987d1d4bfbe4ff612d823149233e93dbba2adf4b55f52d408e8d"
}
},
"user-1ea8": {
"address": "1ea8aa64021ac57d",
"key": {
"type": "hex",
"index": 0,
"signatureAlgorithm": "ECDSA_secp256k1",
"hashAlgorithm": "SHA2_256",
"privateKey": "a0317b7ff44af446387ef2eb3e692b94cd60510e147905039362c5c3445a73ac"
}
}
},
"deployments": {
"emulator": {
"emulator-account": [
"DeFiActions",
"FungibleTokenConnectors",
"FlowCallbackScheduler",
"FlowSwapCallbackHandler",
"TestToken",
"FlowSwap"
]
},
"testnet": {
"testnet-deployer": [
"DeFiActions",
"FungibleTokenConnectors",
"FlowCallbackScheduler",
"FlowSwapCallbackHandler",
"TestToken",
"FlowSwap"
]
}
}
}