@glowlabs-org/utils 0.2.61 → 0.2.62
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/cjs/browser.d.ts +1 -0
- package/dist/cjs/browser.js +20 -19
- package/dist/cjs/browser.js.map +1 -1
- package/dist/cjs/index.js +35 -77
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/{kickstarter-router-CZaSq6Pl.js → wallets-router-Bz-SghtS.js} +75 -32
- package/dist/cjs/wallets-router-Bz-SghtS.js.map +1 -0
- package/dist/esm/browser.d.ts +1 -0
- package/dist/esm/browser.js +1 -1
- package/dist/esm/index.js +3 -45
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/{kickstarter-router-D8tZPVSu.js → wallets-router-BPRWWUbm.js} +75 -33
- package/dist/esm/wallets-router-BPRWWUbm.js.map +1 -0
- package/package.json +1 -1
- package/src/browser.ts +1 -0
- package/dist/cjs/kickstarter-router-CZaSq6Pl.js.map +0 -1
- package/dist/esm/kickstarter-router-D8tZPVSu.js.map +0 -1
package/dist/cjs/browser.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from "./lib/hooks/use-forwarder";
|
|
|
2
2
|
export * from "./lib/control-api/control-router";
|
|
3
3
|
export * from "./lib/control-api/region-router";
|
|
4
4
|
export * from "./lib/control-api/kickstarter-router";
|
|
5
|
+
export * from "./lib/control-api/wallets-router";
|
|
5
6
|
export * from "./lib/types";
|
|
6
7
|
export * from "./lib/region-metadata";
|
|
7
8
|
export * from "./lib/abis/forwarderABI";
|
package/dist/cjs/browser.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var walletsRouter = require('./wallets-router-Bz-SghtS.js');
|
|
4
4
|
var viem = require('viem');
|
|
5
5
|
require('ethers');
|
|
6
6
|
|
|
@@ -12254,26 +12254,27 @@ async function validateCommitKickstarterSignature(input, domain = stakeControlEI
|
|
|
12254
12254
|
}
|
|
12255
12255
|
}
|
|
12256
12256
|
|
|
12257
|
-
exports.ControlRouter =
|
|
12258
|
-
exports.DECIMALS_BY_TOKEN =
|
|
12259
|
-
exports.FORWARDER_ABI =
|
|
12257
|
+
exports.ControlRouter = walletsRouter.ControlRouter;
|
|
12258
|
+
exports.DECIMALS_BY_TOKEN = walletsRouter.DECIMALS_BY_TOKEN;
|
|
12259
|
+
exports.FORWARDER_ABI = walletsRouter.FORWARDER_ABI;
|
|
12260
12260
|
Object.defineProperty(exports, "ForwarderError", {
|
|
12261
12261
|
enumerable: true,
|
|
12262
|
-
get: function () { return
|
|
12263
|
-
});
|
|
12264
|
-
exports.GCA_URLS =
|
|
12265
|
-
exports.GLOW_WEIGHT_DECIMAL_PRECISION =
|
|
12266
|
-
exports.HUB_URL =
|
|
12267
|
-
exports.KickstarterRouter =
|
|
12268
|
-
exports.MAX_WEIGHT =
|
|
12269
|
-
exports.RegionRouter =
|
|
12270
|
-
exports.USDG_WEIGHT_DECIMAL_PRECISION =
|
|
12271
|
-
exports.
|
|
12272
|
-
exports.
|
|
12273
|
-
exports.
|
|
12274
|
-
exports.
|
|
12275
|
-
exports.
|
|
12276
|
-
exports.
|
|
12262
|
+
get: function () { return walletsRouter.ForwarderError; }
|
|
12263
|
+
});
|
|
12264
|
+
exports.GCA_URLS = walletsRouter.GCA_URLS;
|
|
12265
|
+
exports.GLOW_WEIGHT_DECIMAL_PRECISION = walletsRouter.GLOW_WEIGHT_DECIMAL_PRECISION;
|
|
12266
|
+
exports.HUB_URL = walletsRouter.HUB_URL;
|
|
12267
|
+
exports.KickstarterRouter = walletsRouter.KickstarterRouter;
|
|
12268
|
+
exports.MAX_WEIGHT = walletsRouter.MAX_WEIGHT;
|
|
12269
|
+
exports.RegionRouter = walletsRouter.RegionRouter;
|
|
12270
|
+
exports.USDG_WEIGHT_DECIMAL_PRECISION = walletsRouter.USDG_WEIGHT_DECIMAL_PRECISION;
|
|
12271
|
+
exports.WalletsRouter = walletsRouter.WalletsRouter;
|
|
12272
|
+
exports.allRegions = walletsRouter.allRegions;
|
|
12273
|
+
exports.countries = walletsRouter.countries;
|
|
12274
|
+
exports.getAddresses = walletsRouter.getAddresses;
|
|
12275
|
+
exports.regionMetadata = walletsRouter.regionMetadata;
|
|
12276
|
+
exports.usStates = walletsRouter.usStates;
|
|
12277
|
+
exports.useForwarder = walletsRouter.useForwarder;
|
|
12277
12278
|
exports.buildCommitKickstarterMessage = buildCommitKickstarterMessage;
|
|
12278
12279
|
exports.buildRestakeMessage = buildRestakeMessage;
|
|
12279
12280
|
exports.buildStakeMessage = buildStakeMessage;
|