@dripfi/drip-sdk 1.4.29 → 1.4.30-avalanche
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/README.md +3 -1
- package/dist/types/ChainId.d.ts +2 -1
- package/dist/types/ChainId.js +2 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -769,13 +769,15 @@ const ETHEREUM_CHAIN_ID = 1;
|
|
|
769
769
|
const ETHEREUM_SEPOLIA_CHAIN_ID = 11155111;
|
|
770
770
|
const ARBITRUM_CHAIN_ID = 42161;
|
|
771
771
|
const SONIC_CHAIN_ID = 146;
|
|
772
|
+
const AVALANCHE_CHAIN_ID = 42161;
|
|
772
773
|
|
|
773
774
|
type ChainId =
|
|
774
775
|
| typeof BASE_CHAIN_ID
|
|
775
776
|
| typeof ETHEREUM_CHAIN_ID
|
|
776
777
|
| typeof ETHEREUM_SEPOLIA_CHAIN_ID
|
|
777
778
|
| typeof ARBITRUM_CHAIN_ID
|
|
778
|
-
| typeof SONIC_CHAIN_ID
|
|
779
|
+
| typeof SONIC_CHAIN_ID
|
|
780
|
+
| typeof AVALANCHE_CHAIN_ID ;
|
|
779
781
|
|
|
780
782
|
type Earnings = {
|
|
781
783
|
[vaultAddress: string]: {
|
package/dist/types/ChainId.d.ts
CHANGED
|
@@ -3,4 +3,5 @@ export declare const ETHEREUM_CHAIN_ID = 1;
|
|
|
3
3
|
export declare const ETHEREUM_SEPOLIA_CHAIN_ID = 11155111;
|
|
4
4
|
export declare const ARBITRUM_CHAIN_ID = 42161;
|
|
5
5
|
export declare const SONIC_CHAIN_ID = 146;
|
|
6
|
-
export
|
|
6
|
+
export declare const AVALANCHE_CHAIN_ID = 43114;
|
|
7
|
+
export type ChainId = typeof BASE_CHAIN_ID | typeof ETHEREUM_CHAIN_ID | typeof ETHEREUM_SEPOLIA_CHAIN_ID | typeof ARBITRUM_CHAIN_ID | typeof SONIC_CHAIN_ID | typeof AVALANCHE_CHAIN_ID;
|
package/dist/types/ChainId.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SONIC_CHAIN_ID = exports.ARBITRUM_CHAIN_ID = exports.ETHEREUM_SEPOLIA_CHAIN_ID = exports.ETHEREUM_CHAIN_ID = exports.BASE_CHAIN_ID = void 0;
|
|
3
|
+
exports.AVALANCHE_CHAIN_ID = exports.SONIC_CHAIN_ID = exports.ARBITRUM_CHAIN_ID = exports.ETHEREUM_SEPOLIA_CHAIN_ID = exports.ETHEREUM_CHAIN_ID = exports.BASE_CHAIN_ID = void 0;
|
|
4
4
|
exports.BASE_CHAIN_ID = 8453;
|
|
5
5
|
exports.ETHEREUM_CHAIN_ID = 1;
|
|
6
6
|
exports.ETHEREUM_SEPOLIA_CHAIN_ID = 11155111;
|
|
7
7
|
exports.ARBITRUM_CHAIN_ID = 42161;
|
|
8
8
|
exports.SONIC_CHAIN_ID = 146;
|
|
9
|
+
exports.AVALANCHE_CHAIN_ID = 43114;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dripfi/drip-sdk",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.30-avalanche",
|
|
4
4
|
"description": "Drip SDK",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@dripfi/silo-sdk": "^0.0.1",
|
|
17
|
-
"@yelay-lite/sdk": "1.0.
|
|
17
|
+
"@yelay-lite/sdk": "1.0.23",
|
|
18
18
|
"ethers": "^5.7.2"
|
|
19
19
|
},
|
|
20
20
|
"author": "",
|