@certik/skynet 0.10.1 → 0.10.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/const.js +3 -0
- package/deploy.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.10.4
|
|
4
|
+
|
|
5
|
+
- Fixed type in coinmarketcap ids in `PROTOCOLS` in `const`
|
|
6
|
+
|
|
7
|
+
## 0.10.3
|
|
8
|
+
|
|
9
|
+
- Added coinmarketcap ids to `PROTOCOLS` in `const`
|
|
10
|
+
|
|
11
|
+
## 0.10.2
|
|
12
|
+
|
|
13
|
+
- Added opsgenie api key to check job automatically so it is not required to be defined in jobs
|
|
14
|
+
|
|
3
15
|
## 0.10.1
|
|
4
16
|
|
|
5
17
|
- Fixed a bug for the new api app type
|
package/const.js
CHANGED
|
@@ -17,6 +17,7 @@ const PROTOCOLS = {
|
|
|
17
17
|
nativeTokenAddress: "eth:0x0000000000000000000000000000000000000000",
|
|
18
18
|
nativeTokenLogo: `https://token-logo.certik-assets.com/eth:0x0000000000000000000000000000000000000000.png`,
|
|
19
19
|
nativeTokenCoinGeckoId: "ethereum",
|
|
20
|
+
nativeTokenCmcId: 1027,
|
|
20
21
|
endpoint: "https://eth-full-node.certik-skynet.com",
|
|
21
22
|
archiveEndpoint: "https://eth-node.certik-skynet.com",
|
|
22
23
|
tokenStandard: "ERC20",
|
|
@@ -34,6 +35,7 @@ const PROTOCOLS = {
|
|
|
34
35
|
nativeTokenAddress: "bsc:0x0000000000000000000000000000000000000000",
|
|
35
36
|
nativeTokenLogo: `https://token-logo.certik-assets.com/bsc:0x0000000000000000000000000000000000000000.png`,
|
|
36
37
|
nativeTokenCoinGeckoId: "binance-coin",
|
|
38
|
+
nativeTokenCmcId: 1839,
|
|
37
39
|
endpoint: "https://bsc-full-node.certik-skynet.com",
|
|
38
40
|
archiveEndpoint: `https://bsc-mainnet.nodereal.io/v1/${getNodeRealApiKey("BSC")}`,
|
|
39
41
|
tokenStandard: "BEP20",
|
|
@@ -51,6 +53,7 @@ const PROTOCOLS = {
|
|
|
51
53
|
nativeTokenAddress: "polygon:0x0000000000000000000000000000000000000000",
|
|
52
54
|
nativeTokenLogo: `https://token-logo.certik-assets.com/polygon:0x0000000000000000000000000000000000000000.png`,
|
|
53
55
|
nativeTokenCoinGeckoId: "matic-network",
|
|
56
|
+
nativeTokenCmcId: 3890,
|
|
54
57
|
endpoint: `https://poly-full-node.certik-skynet.com`,
|
|
55
58
|
backupEndpoint: `https://matic.getblock.io/mainnet/?api_key=${getGetBlockApiKey()}`,
|
|
56
59
|
archiveEndpoint: `https://polygon-mainnet.g.alchemy.com/v2/${getAlchemyApiKey("POLYGON")}`,
|
package/deploy.js
CHANGED
|
@@ -436,6 +436,7 @@ function createModeDeploy({
|
|
|
436
436
|
...env,
|
|
437
437
|
SKYNET_NOMAD_PRODUCTION_ADDR: null,
|
|
438
438
|
SKYNET_SLACK_TOKEN: null,
|
|
439
|
+
OPSGENIE_API_KEY: null,
|
|
439
440
|
},
|
|
440
441
|
region,
|
|
441
442
|
cmd: `${check.bin} ${args} ${production ? "--production" : ""}`,
|
|
@@ -594,6 +595,7 @@ function createDeploy({
|
|
|
594
595
|
...env,
|
|
595
596
|
SKYNET_NOMAD_PRODUCTION_ADDR: null,
|
|
596
597
|
SKYNET_SLACK_TOKEN: null,
|
|
598
|
+
OPSGENIE_API_KEY: null,
|
|
597
599
|
},
|
|
598
600
|
region,
|
|
599
601
|
cmd: `${check.bin} ${args} ${production ? "--production" : ""}`,
|