@0xward/proofofalpha-core 1.1.3 → 1.1.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/index.js +2 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
// Forensic wallet analysis, arena leaderboard, and DeFi vault routing
|
|
4
4
|
|
|
5
5
|
const SUPPORTED_NETWORKS = {
|
|
6
|
-
|
|
7
|
-
alfajores: { rpc: Buffer.from('aHR0cHM6Ly9hbGZham9yZXMtZm9ybm8uY2Vsby10ZXN0bmV0Lm9yZw==', 'base64').toString('utf8'), chainId: 44787, currency: "CELO" },
|
|
6
|
+
alfajores: { rpc: 'https://alfajores-forno.celo-testnet.org', chainId: 44787, currency: "CELO" },
|
|
8
7
|
};
|
|
9
8
|
|
|
10
9
|
const TIER_THRESHOLDS = [
|
|
@@ -29,7 +28,7 @@ class ProofOfAlpha {
|
|
|
29
28
|
}
|
|
30
29
|
this.network = SUPPORTED_NETWORKS[network];
|
|
31
30
|
this.networkName = network;
|
|
32
|
-
this.version = "1.
|
|
31
|
+
this.version = "1.1.4";
|
|
33
32
|
}
|
|
34
33
|
|
|
35
34
|
_validateAddress(address) {
|
package/package.json
CHANGED