drip-web3-sdk 0.1.0 → 0.1.1
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/dist/index.js +2 -2
- package/package.json +8 -2
- package/src/index.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -155,8 +155,8 @@ exports.INTERVALS = {
|
|
|
155
155
|
YEARLY: BigInt(31536000),
|
|
156
156
|
};
|
|
157
157
|
exports.DEPLOYMENTS = {
|
|
158
|
-
"base-sepolia": "
|
|
159
|
-
"base": "
|
|
158
|
+
"base-sepolia": "0xba23e6f93982de89106E9E69065573b0405825A6",
|
|
159
|
+
"base": "0xba23e6f93982de89106E9E69065573b0405825A6",
|
|
160
160
|
};
|
|
161
161
|
exports.default = Drip;
|
|
162
162
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drip-web3-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Recurring payment protocol for Web3",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -8,7 +8,13 @@
|
|
|
8
8
|
"build": "tsc",
|
|
9
9
|
"dev": "ts-node src/index.ts"
|
|
10
10
|
},
|
|
11
|
-
"keywords": [
|
|
11
|
+
"keywords": [
|
|
12
|
+
"web3",
|
|
13
|
+
"payments",
|
|
14
|
+
"subscriptions",
|
|
15
|
+
"defi",
|
|
16
|
+
"base"
|
|
17
|
+
],
|
|
12
18
|
"license": "MIT",
|
|
13
19
|
"dependencies": {
|
|
14
20
|
"ethers": "^6.0.0"
|
package/src/index.ts
CHANGED
|
@@ -249,8 +249,8 @@ export const INTERVALS = {
|
|
|
249
249
|
} as const;
|
|
250
250
|
|
|
251
251
|
export const DEPLOYMENTS: Record<string, string> = {
|
|
252
|
-
"base-sepolia": "
|
|
253
|
-
"base": "
|
|
252
|
+
"base-sepolia": "0xba23e6f93982de89106E9E69065573b0405825A6",
|
|
253
|
+
"base": "0xba23e6f93982de89106E9E69065573b0405825A6",
|
|
254
254
|
};
|
|
255
255
|
|
|
256
256
|
export default Drip;
|