📂 API Providers > Tutorials > Quick Deploy Container
# config.json
The config.json file contents shown below is for the Quick Deploy Container demo.
{
"chains": [
{
"authorizers": [],
"contracts": {
"AirnodeRrp": "0xC11593B87f258672b8eB02d9A723a429b15E9E03"
},
"id": "4",
"providers": {
"myChainProvider": {
"url": "${CHAIN_PROVIDER_URL}"
}
},
"type": "evm"
}
],
"nodeSettings": {
"cloudProvider": {
"type": "local"
},
"airnodeWalletMnemonic": "${AIRNODE_WALLET_MNEMONIC}",
"heartbeat": {
"enabled": false
},
"httpGateway": {
"enabled": false
},
"logFormat": "plain",
"logLevel": "INFO",
"nodeVersion": "0.3.1",
"stage": "dev"
},
"triggers": {
"rrp": [
{
"endpointId": "0x6db9e3e3d073ad12b66d28dd85bcf49f58577270b1cc2d48a43c7025f5c27af6",
"oisTitle": "CoinGecko Basic Request",
"endpointName": "coinMarketData"
}
]
},
"ois": [
{
"oisFormat": "1.0.0",
"title": "CoinGecko Basic Request",
"version": "1.0.0",
"apiSpecifications": {
"servers": [
{
"url": "https://api.coingecko.com/api/v3"
}
],
"paths": {
"/simple/price": {
"get": {
"parameters": [
{
"in": "query",
"name": "ids"
},
{
"in": "query",
"name": "vs_currencies"
}
]
}
}
},
"components": {
"securitySchemes": {}
},
"security": {}
},
"endpoints": [
{
"name": "coinMarketData",
"operation": {
"method": "get",
"path": "/simple/price"
},
"testable": true,
"fixedOperationParameters": [],
"reservedParameters": [
{
"name": "_type",
"fixed": "int256"
},
{
"name": "_path",
"fixed": "api3.usd"
},
{
"name": "_times",
"fixed": "1000000"
}
],
"parameters": [
{
"name": "coinIds",
"operationParameter": {
"in": "query",
"name": "ids"
}
},
{
"name": "coinVs_currencies",
"operationParameter": {
"in": "query",
"name": "vs_currencies"
}
}
]
}
]
}
],
"apiCredentials": []
}
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
109
110
111
112
113
114
115
116
117
118
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
109
110
111
112
113
114
115
116
117
118