@certik/skynet 0.10.35 → 0.10.36

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/const.js +12 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.10.36
4
+
5
+ - Added Algorand to `PROTOCOLS`
6
+
3
7
  ## 0.10.35
4
8
 
5
9
  - Set better process name
package/const.js CHANGED
@@ -98,6 +98,18 @@ const PROTOCOLS = {
98
98
  key: getEnvironment("SKYNET_FTMSCAN_API_KEY"),
99
99
  },
100
100
  scanUrl: "https://ftmscan.com/"
101
+ },
102
+ algo: {
103
+ nativeTokenName: "Algorand",
104
+ nativeTokenSymbol: "ALGO",
105
+ nativeTokenDecimals: 6,
106
+ nativeTokenAddress: "algo:native",
107
+ endpoint: "algo-node.certik-skynet.com",
108
+ tokenStandard: "ASA",
109
+ scanApi: {
110
+ endpoint: "https://algoindexer.algoexplorerapi.io/v2"
111
+ },
112
+ scanUrl: "https://algoexplorer.io/"
101
113
  }
102
114
  };
103
115
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certik/skynet",
3
- "version": "0.10.35",
3
+ "version": "0.10.36",
4
4
  "description": "Skynet Shared JS library",
5
5
  "main": "index.js",
6
6
  "author": "CertiK Engineering",