@pooflabs/core 0.0.43 → 0.0.45
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/client/config.d.ts +5 -0
- package/dist/index.js +10 -33
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -33
- package/dist/index.mjs.map +1 -1
- package/package.json +22 -22
package/dist/index.mjs
CHANGED
|
@@ -3733,40 +3733,17 @@ async function getConfig() {
|
|
|
3733
3733
|
return clientConfig;
|
|
3734
3734
|
}
|
|
3735
3735
|
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
3747
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
3748
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
3749
|
-
***************************************************************************** */
|
|
3750
|
-
/* global Reflect, Promise, SuppressedError, Symbol, Iterator */
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
function __rest(s, e) {
|
|
3754
|
-
var t = {};
|
|
3755
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
3756
|
-
t[p] = s[p];
|
|
3757
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
3758
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
3759
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
3760
|
-
t[p[i]] = s[p[i]];
|
|
3761
|
-
}
|
|
3762
|
-
return t;
|
|
3763
|
-
}
|
|
3764
|
-
|
|
3765
|
-
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
3766
|
-
var e = new Error(message);
|
|
3767
|
-
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
3736
|
+
var __rest = (undefined && undefined.__rest) || function (s, e) {
|
|
3737
|
+
var t = {};
|
|
3738
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
3739
|
+
t[p] = s[p];
|
|
3740
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
3741
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
3742
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
3743
|
+
t[p[i]] = s[p[i]];
|
|
3744
|
+
}
|
|
3745
|
+
return t;
|
|
3768
3746
|
};
|
|
3769
|
-
|
|
3770
3747
|
/**
|
|
3771
3748
|
* Thrown when a user's wallet doesn't have enough SOL to cover the transaction.
|
|
3772
3749
|
* Apps can catch this to trigger an onramp/funding flow.
|