@pooflabs/core 0.0.44 → 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/index.mjs CHANGED
@@ -3733,40 +3733,17 @@ async function getConfig() {
3733
3733
  return clientConfig;
3734
3734
  }
3735
3735
 
3736
- /******************************************************************************
3737
- Copyright (c) Microsoft Corporation.
3738
-
3739
- Permission to use, copy, modify, and/or distribute this software for any
3740
- purpose with or without fee is hereby granted.
3741
-
3742
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
3743
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
3744
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
3745
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
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.