@shogun-sdk/swap 0.0.2-test.33 → 0.0.2-test.34

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/core.cjs CHANGED
@@ -547,7 +547,7 @@ async function pollOrderStatus(address, orderId, options = {}) {
547
547
  }
548
548
  const res = await fetch(queryUrl, {
549
549
  method: "GET",
550
- headers: { "Content-Type": "application/json" }
550
+ headers: (0, import_intents_sdk8.withAuctioneerHeaders)({ "Content-Type": "application/json" })
551
551
  });
552
552
  if (!res.ok) {
553
553
  clearInterval(pollInterval);
@@ -798,7 +798,13 @@ async function handleSolanaExecution({
798
798
  const txData = await getSolanaOrderInstructions({
799
799
  order,
800
800
  isSingleChain,
801
- rpcUrl: wallet.rpcUrl
801
+ rpcUrl: wallet.rpcUrl,
802
+ txOptions: {
803
+ feePayer: options?.feePayer,
804
+ tipAmountSol: options?.tipAmountSol,
805
+ tipLamports: options?.tipLamports,
806
+ tipAccount: options?.tipAccount
807
+ }
802
808
  });
803
809
  const transaction = import_web3.VersionedTransaction.deserialize(Uint8Array.from(txData.txBytes));
804
810
  update("processing", messageFor("signing"));
@@ -838,16 +844,17 @@ async function handleSolanaExecution({
838
844
  async function getSolanaOrderInstructions({
839
845
  order,
840
846
  isSingleChain,
841
- rpcUrl
847
+ rpcUrl,
848
+ txOptions
842
849
  }) {
850
+ const options = {
851
+ rpcUrl,
852
+ ...txOptions
853
+ };
843
854
  if (isSingleChain) {
844
- return await (0, import_intents_sdk11.getSolanaSingleChainOrderInstructions)(order, {
845
- rpcUrl
846
- });
855
+ return await (0, import_intents_sdk11.getSolanaSingleChainOrderInstructions)(order, options);
847
856
  }
848
- return await (0, import_intents_sdk11.getSolanaCrossChainOrderInstructions)(order, {
849
- rpcUrl
850
- });
857
+ return await (0, import_intents_sdk11.getSolanaCrossChainOrderInstructions)(order, options);
851
858
  }
852
859
  async function submitToAuctioneer({
853
860
  order,
package/dist/core.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- export { B as BalanceRequestParams, e as BalanceResponse, C as ChainId, O as OrderExecutionType, j as SupportedChain, g as SupportedChains, b as SwapQuoteParams, c as SwapQuoteResponse, a as SwapSDK, S as SwapSDKConfig, h as TokenBalance, f as buildQuoteParams, i as isEvmChain } from './index-CtZ-hgYk.cjs';
1
+ export { B as BalanceRequestParams, e as BalanceResponse, C as ChainId, O as OrderExecutionType, f as SupportedChain, g as SupportedChains, b as SwapQuoteParams, c as SwapQuoteResponse, a as SwapSDK, S as SwapSDKConfig, h as TokenBalance, i as buildQuoteParams, j as isEvmChain } from './index-RhHZoWOE.cjs';
2
2
  import '@shogun-sdk/intents-sdk';
3
3
  import './wallet-B9bKceyN.cjs';
4
4
  import '@solana/web3.js';
package/dist/core.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { B as BalanceRequestParams, e as BalanceResponse, C as ChainId, O as OrderExecutionType, j as SupportedChain, g as SupportedChains, b as SwapQuoteParams, c as SwapQuoteResponse, a as SwapSDK, S as SwapSDKConfig, h as TokenBalance, f as buildQuoteParams, i as isEvmChain } from './index-CXY6BUx9.js';
1
+ export { B as BalanceRequestParams, e as BalanceResponse, C as ChainId, O as OrderExecutionType, f as SupportedChain, g as SupportedChains, b as SwapQuoteParams, c as SwapQuoteResponse, a as SwapSDK, S as SwapSDKConfig, h as TokenBalance, i as buildQuoteParams, j as isEvmChain } from './index-DvCPwGOk.js';
2
2
  import '@shogun-sdk/intents-sdk';
3
3
  import './wallet-B9bKceyN.js';
4
4
  import '@solana/web3.js';
package/dist/core.js CHANGED
@@ -501,7 +501,7 @@ async function buildOrder({
501
501
  }
502
502
 
503
503
  // src/utils/pollOrderStatus.ts
504
- import { AUCTIONEER_URL } from "@shogun-sdk/intents-sdk";
504
+ import { AUCTIONEER_URL, withAuctioneerHeaders } from "@shogun-sdk/intents-sdk";
505
505
  async function pollOrderStatus(address, orderId, options = {}) {
506
506
  const { intervalMs = 2e3, timeoutMs = 3e5 } = options;
507
507
  const startTime = Date.now();
@@ -524,7 +524,7 @@ async function pollOrderStatus(address, orderId, options = {}) {
524
524
  }
525
525
  const res = await fetch(queryUrl, {
526
526
  method: "GET",
527
- headers: { "Content-Type": "application/json" }
527
+ headers: withAuctioneerHeaders({ "Content-Type": "application/json" })
528
528
  });
529
529
  if (!res.ok) {
530
530
  clearInterval(pollInterval);
@@ -778,7 +778,13 @@ async function handleSolanaExecution({
778
778
  const txData = await getSolanaOrderInstructions({
779
779
  order,
780
780
  isSingleChain,
781
- rpcUrl: wallet.rpcUrl
781
+ rpcUrl: wallet.rpcUrl,
782
+ txOptions: {
783
+ feePayer: options?.feePayer,
784
+ tipAmountSol: options?.tipAmountSol,
785
+ tipLamports: options?.tipLamports,
786
+ tipAccount: options?.tipAccount
787
+ }
782
788
  });
783
789
  const transaction = VersionedTransaction.deserialize(Uint8Array.from(txData.txBytes));
784
790
  update("processing", messageFor("signing"));
@@ -818,16 +824,17 @@ async function handleSolanaExecution({
818
824
  async function getSolanaOrderInstructions({
819
825
  order,
820
826
  isSingleChain,
821
- rpcUrl
827
+ rpcUrl,
828
+ txOptions
822
829
  }) {
830
+ const options = {
831
+ rpcUrl,
832
+ ...txOptions
833
+ };
823
834
  if (isSingleChain) {
824
- return await getSolanaSingleChainOrderInstructions(order, {
825
- rpcUrl
826
- });
835
+ return await getSolanaSingleChainOrderInstructions(order, options);
827
836
  }
828
- return await getSolanaCrossChainOrderInstructions(order, {
829
- rpcUrl
830
- });
837
+ return await getSolanaCrossChainOrderInstructions(order, options);
831
838
  }
832
839
  async function submitToAuctioneer({
833
840
  order,
@@ -97,10 +97,18 @@ type PlaceOrderResult = {
97
97
  };
98
98
  interface MarketOrderOptions {
99
99
  deadline?: number;
100
+ feePayer?: string;
101
+ tipAmountSol?: number | string;
102
+ tipLamports?: bigint;
103
+ tipAccount?: string;
100
104
  }
101
105
  interface LimitOrderOptions {
102
106
  executionPrice: string;
103
107
  deadline: number;
108
+ feePayer?: string;
109
+ tipAmountSol?: number | string;
110
+ tipLamports?: bigint;
111
+ tipAccount?: string;
104
112
  }
105
113
  type ExecuteOrderParams = {
106
114
  orderType?: OrderExecutionType.MARKET;
@@ -391,4 +399,4 @@ declare const SupportedChains: ({
391
399
  })[];
392
400
  declare const isEvmChain: typeof isEvmChain$1;
393
401
 
394
- export { type BalanceRequestParams as B, ChainId as C, type ExecuteOrderParams as E, OrderExecutionType as O, type PlaceOrderResult as P, type SwapSDKConfig as S, type TokenInfo as T, SwapSDK as a, type SwapQuoteParams as b, type SwapQuoteResponse as c, type Stage as d, type BalanceResponse as e, buildQuoteParams as f, SupportedChains as g, type TokenBalance as h, isEvmChain as i, type SupportedChain as j };
402
+ export { type BalanceRequestParams as B, ChainId as C, type ExecuteOrderParams as E, OrderExecutionType as O, type PlaceOrderResult as P, type SwapSDKConfig as S, type TokenInfo as T, SwapSDK as a, type SwapQuoteParams as b, type SwapQuoteResponse as c, type Stage as d, type BalanceResponse as e, type SupportedChain as f, SupportedChains as g, type TokenBalance as h, buildQuoteParams as i, isEvmChain as j };
@@ -97,10 +97,18 @@ type PlaceOrderResult = {
97
97
  };
98
98
  interface MarketOrderOptions {
99
99
  deadline?: number;
100
+ feePayer?: string;
101
+ tipAmountSol?: number | string;
102
+ tipLamports?: bigint;
103
+ tipAccount?: string;
100
104
  }
101
105
  interface LimitOrderOptions {
102
106
  executionPrice: string;
103
107
  deadline: number;
108
+ feePayer?: string;
109
+ tipAmountSol?: number | string;
110
+ tipLamports?: bigint;
111
+ tipAccount?: string;
104
112
  }
105
113
  type ExecuteOrderParams = {
106
114
  orderType?: OrderExecutionType.MARKET;
@@ -391,4 +399,4 @@ declare const SupportedChains: ({
391
399
  })[];
392
400
  declare const isEvmChain: typeof isEvmChain$1;
393
401
 
394
- export { type BalanceRequestParams as B, ChainId as C, type ExecuteOrderParams as E, OrderExecutionType as O, type PlaceOrderResult as P, type SwapSDKConfig as S, type TokenInfo as T, SwapSDK as a, type SwapQuoteParams as b, type SwapQuoteResponse as c, type Stage as d, type BalanceResponse as e, buildQuoteParams as f, SupportedChains as g, type TokenBalance as h, isEvmChain as i, type SupportedChain as j };
402
+ export { type BalanceRequestParams as B, ChainId as C, type ExecuteOrderParams as E, OrderExecutionType as O, type PlaceOrderResult as P, type SwapSDKConfig as S, type TokenInfo as T, SwapSDK as a, type SwapQuoteParams as b, type SwapQuoteResponse as c, type Stage as d, type BalanceResponse as e, type SupportedChain as f, SupportedChains as g, type TokenBalance as h, buildQuoteParams as i, isEvmChain as j };
package/dist/index.cjs CHANGED
@@ -547,7 +547,7 @@ async function pollOrderStatus(address, orderId, options = {}) {
547
547
  }
548
548
  const res = await fetch(queryUrl, {
549
549
  method: "GET",
550
- headers: { "Content-Type": "application/json" }
550
+ headers: (0, import_intents_sdk8.withAuctioneerHeaders)({ "Content-Type": "application/json" })
551
551
  });
552
552
  if (!res.ok) {
553
553
  clearInterval(pollInterval);
@@ -798,7 +798,13 @@ async function handleSolanaExecution({
798
798
  const txData = await getSolanaOrderInstructions({
799
799
  order,
800
800
  isSingleChain,
801
- rpcUrl: wallet.rpcUrl
801
+ rpcUrl: wallet.rpcUrl,
802
+ txOptions: {
803
+ feePayer: options?.feePayer,
804
+ tipAmountSol: options?.tipAmountSol,
805
+ tipLamports: options?.tipLamports,
806
+ tipAccount: options?.tipAccount
807
+ }
802
808
  });
803
809
  const transaction = import_web3.VersionedTransaction.deserialize(Uint8Array.from(txData.txBytes));
804
810
  update("processing", messageFor("signing"));
@@ -838,16 +844,17 @@ async function handleSolanaExecution({
838
844
  async function getSolanaOrderInstructions({
839
845
  order,
840
846
  isSingleChain,
841
- rpcUrl
847
+ rpcUrl,
848
+ txOptions
842
849
  }) {
850
+ const options = {
851
+ rpcUrl,
852
+ ...txOptions
853
+ };
843
854
  if (isSingleChain) {
844
- return await (0, import_intents_sdk11.getSolanaSingleChainOrderInstructions)(order, {
845
- rpcUrl
846
- });
855
+ return await (0, import_intents_sdk11.getSolanaSingleChainOrderInstructions)(order, options);
847
856
  }
848
- return await (0, import_intents_sdk11.getSolanaCrossChainOrderInstructions)(order, {
849
- rpcUrl
850
- });
857
+ return await (0, import_intents_sdk11.getSolanaCrossChainOrderInstructions)(order, options);
851
858
  }
852
859
  async function submitToAuctioneer({
853
860
  order,
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- export { B as BalanceRequestParams, e as BalanceResponse, C as ChainId, O as OrderExecutionType, j as SupportedChain, g as SupportedChains, b as SwapQuoteParams, c as SwapQuoteResponse, a as SwapSDK, S as SwapSDKConfig, h as TokenBalance, f as buildQuoteParams, i as isEvmChain } from './index-CtZ-hgYk.cjs';
1
+ export { B as BalanceRequestParams, e as BalanceResponse, C as ChainId, O as OrderExecutionType, f as SupportedChain, g as SupportedChains, b as SwapQuoteParams, c as SwapQuoteResponse, a as SwapSDK, S as SwapSDKConfig, h as TokenBalance, i as buildQuoteParams, j as isEvmChain } from './index-RhHZoWOE.cjs';
2
2
  import '@shogun-sdk/intents-sdk';
3
3
  import './wallet-B9bKceyN.cjs';
4
4
  import '@solana/web3.js';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { B as BalanceRequestParams, e as BalanceResponse, C as ChainId, O as OrderExecutionType, j as SupportedChain, g as SupportedChains, b as SwapQuoteParams, c as SwapQuoteResponse, a as SwapSDK, S as SwapSDKConfig, h as TokenBalance, f as buildQuoteParams, i as isEvmChain } from './index-CXY6BUx9.js';
1
+ export { B as BalanceRequestParams, e as BalanceResponse, C as ChainId, O as OrderExecutionType, f as SupportedChain, g as SupportedChains, b as SwapQuoteParams, c as SwapQuoteResponse, a as SwapSDK, S as SwapSDKConfig, h as TokenBalance, i as buildQuoteParams, j as isEvmChain } from './index-DvCPwGOk.js';
2
2
  import '@shogun-sdk/intents-sdk';
3
3
  import './wallet-B9bKceyN.js';
4
4
  import '@solana/web3.js';
package/dist/index.js CHANGED
@@ -501,7 +501,7 @@ async function buildOrder({
501
501
  }
502
502
 
503
503
  // src/utils/pollOrderStatus.ts
504
- import { AUCTIONEER_URL } from "@shogun-sdk/intents-sdk";
504
+ import { AUCTIONEER_URL, withAuctioneerHeaders } from "@shogun-sdk/intents-sdk";
505
505
  async function pollOrderStatus(address, orderId, options = {}) {
506
506
  const { intervalMs = 2e3, timeoutMs = 3e5 } = options;
507
507
  const startTime = Date.now();
@@ -524,7 +524,7 @@ async function pollOrderStatus(address, orderId, options = {}) {
524
524
  }
525
525
  const res = await fetch(queryUrl, {
526
526
  method: "GET",
527
- headers: { "Content-Type": "application/json" }
527
+ headers: withAuctioneerHeaders({ "Content-Type": "application/json" })
528
528
  });
529
529
  if (!res.ok) {
530
530
  clearInterval(pollInterval);
@@ -778,7 +778,13 @@ async function handleSolanaExecution({
778
778
  const txData = await getSolanaOrderInstructions({
779
779
  order,
780
780
  isSingleChain,
781
- rpcUrl: wallet.rpcUrl
781
+ rpcUrl: wallet.rpcUrl,
782
+ txOptions: {
783
+ feePayer: options?.feePayer,
784
+ tipAmountSol: options?.tipAmountSol,
785
+ tipLamports: options?.tipLamports,
786
+ tipAccount: options?.tipAccount
787
+ }
782
788
  });
783
789
  const transaction = VersionedTransaction.deserialize(Uint8Array.from(txData.txBytes));
784
790
  update("processing", messageFor("signing"));
@@ -818,16 +824,17 @@ async function handleSolanaExecution({
818
824
  async function getSolanaOrderInstructions({
819
825
  order,
820
826
  isSingleChain,
821
- rpcUrl
827
+ rpcUrl,
828
+ txOptions
822
829
  }) {
830
+ const options = {
831
+ rpcUrl,
832
+ ...txOptions
833
+ };
823
834
  if (isSingleChain) {
824
- return await getSolanaSingleChainOrderInstructions(order, {
825
- rpcUrl
826
- });
835
+ return await getSolanaSingleChainOrderInstructions(order, options);
827
836
  }
828
- return await getSolanaCrossChainOrderInstructions(order, {
829
- rpcUrl
830
- });
837
+ return await getSolanaCrossChainOrderInstructions(order, options);
831
838
  }
832
839
  async function submitToAuctioneer({
833
840
  order,
package/dist/react.cjs CHANGED
@@ -568,7 +568,7 @@ async function pollOrderStatus(address, orderId, options = {}) {
568
568
  }
569
569
  const res = await fetch(queryUrl, {
570
570
  method: "GET",
571
- headers: { "Content-Type": "application/json" }
571
+ headers: (0, import_intents_sdk8.withAuctioneerHeaders)({ "Content-Type": "application/json" })
572
572
  });
573
573
  if (!res.ok) {
574
574
  clearInterval(pollInterval);
@@ -819,7 +819,13 @@ async function handleSolanaExecution({
819
819
  const txData = await getSolanaOrderInstructions({
820
820
  order,
821
821
  isSingleChain,
822
- rpcUrl: wallet.rpcUrl
822
+ rpcUrl: wallet.rpcUrl,
823
+ txOptions: {
824
+ feePayer: options?.feePayer,
825
+ tipAmountSol: options?.tipAmountSol,
826
+ tipLamports: options?.tipLamports,
827
+ tipAccount: options?.tipAccount
828
+ }
823
829
  });
824
830
  const transaction = import_web3.VersionedTransaction.deserialize(Uint8Array.from(txData.txBytes));
825
831
  update("processing", messageFor("signing"));
@@ -859,16 +865,17 @@ async function handleSolanaExecution({
859
865
  async function getSolanaOrderInstructions({
860
866
  order,
861
867
  isSingleChain,
862
- rpcUrl
868
+ rpcUrl,
869
+ txOptions
863
870
  }) {
871
+ const options = {
872
+ rpcUrl,
873
+ ...txOptions
874
+ };
864
875
  if (isSingleChain) {
865
- return await (0, import_intents_sdk11.getSolanaSingleChainOrderInstructions)(order, {
866
- rpcUrl
867
- });
876
+ return await (0, import_intents_sdk11.getSolanaSingleChainOrderInstructions)(order, options);
868
877
  }
869
- return await (0, import_intents_sdk11.getSolanaCrossChainOrderInstructions)(order, {
870
- rpcUrl
871
- });
878
+ return await (0, import_intents_sdk11.getSolanaCrossChainOrderInstructions)(order, options);
872
879
  }
873
880
  async function submitToAuctioneer({
874
881
  order,
package/dist/react.d.cts CHANGED
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import { S as SwapSDKConfig, a as SwapSDK, b as SwapQuoteParams, c as SwapQuoteResponse, E as ExecuteOrderParams, d as Stage, P as PlaceOrderResult, T as TokenInfo, B as BalanceRequestParams, e as BalanceResponse } from './index-CtZ-hgYk.cjs';
3
- export { C as ChainId, O as OrderExecutionType, j as SupportedChain, g as SupportedChains, h as TokenBalance, f as buildQuoteParams, i as isEvmChain } from './index-CtZ-hgYk.cjs';
2
+ import { S as SwapSDKConfig, a as SwapSDK, b as SwapQuoteParams, c as SwapQuoteResponse, E as ExecuteOrderParams, d as Stage, P as PlaceOrderResult, T as TokenInfo, B as BalanceRequestParams, e as BalanceResponse } from './index-RhHZoWOE.cjs';
3
+ export { C as ChainId, O as OrderExecutionType, f as SupportedChain, g as SupportedChains, h as TokenBalance, i as buildQuoteParams, j as isEvmChain } from './index-RhHZoWOE.cjs';
4
4
  import { WalletClient } from 'viem';
5
5
  import { A as AdaptedWallet } from './wallet-B9bKceyN.cjs';
6
6
  import { ApiUserOrders, ApiCrossChainOrder, ApiSingleChainOrder } from '@shogun-sdk/intents-sdk';
package/dist/react.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import { S as SwapSDKConfig, a as SwapSDK, b as SwapQuoteParams, c as SwapQuoteResponse, E as ExecuteOrderParams, d as Stage, P as PlaceOrderResult, T as TokenInfo, B as BalanceRequestParams, e as BalanceResponse } from './index-CXY6BUx9.js';
3
- export { C as ChainId, O as OrderExecutionType, j as SupportedChain, g as SupportedChains, h as TokenBalance, f as buildQuoteParams, i as isEvmChain } from './index-CXY6BUx9.js';
2
+ import { S as SwapSDKConfig, a as SwapSDK, b as SwapQuoteParams, c as SwapQuoteResponse, E as ExecuteOrderParams, d as Stage, P as PlaceOrderResult, T as TokenInfo, B as BalanceRequestParams, e as BalanceResponse } from './index-DvCPwGOk.js';
3
+ export { C as ChainId, O as OrderExecutionType, f as SupportedChain, g as SupportedChains, h as TokenBalance, i as buildQuoteParams, j as isEvmChain } from './index-DvCPwGOk.js';
4
4
  import { WalletClient } from 'viem';
5
5
  import { A as AdaptedWallet } from './wallet-B9bKceyN.js';
6
6
  import { ApiUserOrders, ApiCrossChainOrder, ApiSingleChainOrder } from '@shogun-sdk/intents-sdk';
package/dist/react.js CHANGED
@@ -504,7 +504,7 @@ async function buildOrder({
504
504
  }
505
505
 
506
506
  // src/utils/pollOrderStatus.ts
507
- import { AUCTIONEER_URL } from "@shogun-sdk/intents-sdk";
507
+ import { AUCTIONEER_URL, withAuctioneerHeaders } from "@shogun-sdk/intents-sdk";
508
508
  async function pollOrderStatus(address, orderId, options = {}) {
509
509
  const { intervalMs = 2e3, timeoutMs = 3e5 } = options;
510
510
  const startTime = Date.now();
@@ -527,7 +527,7 @@ async function pollOrderStatus(address, orderId, options = {}) {
527
527
  }
528
528
  const res = await fetch(queryUrl, {
529
529
  method: "GET",
530
- headers: { "Content-Type": "application/json" }
530
+ headers: withAuctioneerHeaders({ "Content-Type": "application/json" })
531
531
  });
532
532
  if (!res.ok) {
533
533
  clearInterval(pollInterval);
@@ -781,7 +781,13 @@ async function handleSolanaExecution({
781
781
  const txData = await getSolanaOrderInstructions({
782
782
  order,
783
783
  isSingleChain,
784
- rpcUrl: wallet.rpcUrl
784
+ rpcUrl: wallet.rpcUrl,
785
+ txOptions: {
786
+ feePayer: options?.feePayer,
787
+ tipAmountSol: options?.tipAmountSol,
788
+ tipLamports: options?.tipLamports,
789
+ tipAccount: options?.tipAccount
790
+ }
785
791
  });
786
792
  const transaction = VersionedTransaction.deserialize(Uint8Array.from(txData.txBytes));
787
793
  update("processing", messageFor("signing"));
@@ -821,16 +827,17 @@ async function handleSolanaExecution({
821
827
  async function getSolanaOrderInstructions({
822
828
  order,
823
829
  isSingleChain,
824
- rpcUrl
830
+ rpcUrl,
831
+ txOptions
825
832
  }) {
833
+ const options = {
834
+ rpcUrl,
835
+ ...txOptions
836
+ };
826
837
  if (isSingleChain) {
827
- return await getSolanaSingleChainOrderInstructions(order, {
828
- rpcUrl
829
- });
838
+ return await getSolanaSingleChainOrderInstructions(order, options);
830
839
  }
831
- return await getSolanaCrossChainOrderInstructions(order, {
832
- rpcUrl
833
- });
840
+ return await getSolanaCrossChainOrderInstructions(order, options);
834
841
  }
835
842
  async function submitToAuctioneer({
836
843
  order,
@@ -1810,9 +1810,9 @@ var require_buffer = __commonJS({
1810
1810
  }
1811
1811
  });
1812
1812
 
1813
- // ../../node_modules/.pnpm/bn.js@5.2.2/node_modules/bn.js/lib/bn.js
1813
+ // ../../node_modules/.pnpm/bn.js@5.2.3/node_modules/bn.js/lib/bn.js
1814
1814
  var require_bn = __commonJS({
1815
- "../../node_modules/.pnpm/bn.js@5.2.2/node_modules/bn.js/lib/bn.js"(exports, module2) {
1815
+ "../../node_modules/.pnpm/bn.js@5.2.3/node_modules/bn.js/lib/bn.js"(exports, module2) {
1816
1816
  "use strict";
1817
1817
  (function(module3, exports2) {
1818
1818
  "use strict";
@@ -3679,6 +3679,10 @@ var require_bn = __commonJS({
3679
3679
  var mask = 67108863 ^ 67108863 >>> r2 << r2;
3680
3680
  this.words[this.length - 1] &= mask;
3681
3681
  }
3682
+ if (this.length === 0) {
3683
+ this.words[0] = 0;
3684
+ this.length = 1;
3685
+ }
3682
3686
  return this._strip();
3683
3687
  };
3684
3688
  BN3.prototype.maskn = function maskn(bits) {
@@ -19701,16 +19705,16 @@ var require_bech32 = __commonJS({
19701
19705
  }
19702
19706
  });
19703
19707
 
19704
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/_version.js
19708
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/_version.js
19705
19709
  var version23;
19706
19710
  var init_version23 = __esm({
19707
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/_version.js"() {
19711
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/_version.js"() {
19708
19712
  "use strict";
19709
19713
  version23 = "providers/5.8.0";
19710
19714
  }
19711
19715
  });
19712
19716
 
19713
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/formatter.js
19717
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/formatter.js
19714
19718
  function isCommunityResourcable(value) {
19715
19719
  return value && typeof value.isCommunityResource === "function";
19716
19720
  }
@@ -19737,7 +19741,7 @@ function showThrottleMessage() {
19737
19741
  }
19738
19742
  var logger29, Formatter, throttleMessage;
19739
19743
  var init_formatter = __esm({
19740
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/formatter.js"() {
19744
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/formatter.js"() {
19741
19745
  "use strict";
19742
19746
  init_lib7();
19743
19747
  init_lib3();
@@ -20148,7 +20152,7 @@ var init_formatter = __esm({
20148
20152
  }
20149
20153
  });
20150
20154
 
20151
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/base-provider.js
20155
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/base-provider.js
20152
20156
  function checkTopic(topic) {
20153
20157
  if (topic == null) {
20154
20158
  return "null";
@@ -20284,7 +20288,7 @@ function encodeBytes(datas) {
20284
20288
  }
20285
20289
  var import_bech32, __awaiter10, logger30, MAX_CCIP_REDIRECTS, PollableEvents, Event, coinInfos, matcherIpfs, matchers, Resolver, defaultFormatter, nextPollId, BaseProvider;
20286
20290
  var init_base_provider = __esm({
20287
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/base-provider.js"() {
20291
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/base-provider.js"() {
20288
20292
  "use strict";
20289
20293
  init_lib14();
20290
20294
  init_lib10();
@@ -21984,7 +21988,7 @@ var init_base_provider = __esm({
21984
21988
  }
21985
21989
  });
21986
21990
 
21987
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-provider.js
21991
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-provider.js
21988
21992
  function spelunk(value, requireData) {
21989
21993
  if (value == null) {
21990
21994
  return null;
@@ -22107,7 +22111,7 @@ function getLowerCase(value) {
22107
22111
  }
22108
22112
  var __awaiter11, logger31, errorGas, _constructorGuard5, JsonRpcSigner, UncheckedJsonRpcSigner, allowedTransactionKeys4, JsonRpcProvider;
22109
22113
  var init_json_rpc_provider = __esm({
22110
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-provider.js"() {
22114
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-provider.js"() {
22111
22115
  "use strict";
22112
22116
  init_lib15();
22113
22117
  init_lib3();
@@ -22661,10 +22665,10 @@ var init_json_rpc_provider = __esm({
22661
22665
  }
22662
22666
  });
22663
22667
 
22664
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ws.js
22668
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ws.js
22665
22669
  var WS;
22666
22670
  var init_ws = __esm({
22667
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ws.js"() {
22671
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ws.js"() {
22668
22672
  "use strict";
22669
22673
  init_lib();
22670
22674
  init_version23();
@@ -22685,10 +22689,10 @@ var init_ws = __esm({
22685
22689
  }
22686
22690
  });
22687
22691
 
22688
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/websocket-provider.js
22692
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/websocket-provider.js
22689
22693
  var __awaiter12, logger32, NextId, WebSocketProvider;
22690
22694
  var init_websocket_provider = __esm({
22691
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/websocket-provider.js"() {
22695
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/websocket-provider.js"() {
22692
22696
  "use strict";
22693
22697
  init_lib3();
22694
22698
  init_lib4();
@@ -22970,10 +22974,10 @@ var init_websocket_provider = __esm({
22970
22974
  }
22971
22975
  });
22972
22976
 
22973
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/url-json-rpc-provider.js
22977
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/url-json-rpc-provider.js
22974
22978
  var __awaiter13, logger33, StaticJsonRpcProvider, UrlJsonRpcProvider;
22975
22979
  var init_url_json_rpc_provider = __esm({
22976
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/url-json-rpc-provider.js"() {
22980
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/url-json-rpc-provider.js"() {
22977
22981
  "use strict";
22978
22982
  init_lib4();
22979
22983
  init_lib();
@@ -23071,10 +23075,10 @@ var init_url_json_rpc_provider = __esm({
23071
23075
  }
23072
23076
  });
23073
23077
 
23074
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/alchemy-provider.js
23078
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/alchemy-provider.js
23075
23079
  var logger34, defaultApiKey, AlchemyWebSocketProvider, AlchemyProvider;
23076
23080
  var init_alchemy_provider = __esm({
23077
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/alchemy-provider.js"() {
23081
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/alchemy-provider.js"() {
23078
23082
  "use strict";
23079
23083
  init_lib4();
23080
23084
  init_formatter();
@@ -23165,7 +23169,7 @@ var init_alchemy_provider = __esm({
23165
23169
  }
23166
23170
  });
23167
23171
 
23168
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ankr-provider.js
23172
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ankr-provider.js
23169
23173
  function getHost(name) {
23170
23174
  switch (name) {
23171
23175
  case "homestead":
@@ -23195,7 +23199,7 @@ function getHost(name) {
23195
23199
  }
23196
23200
  var logger35, defaultApiKey2, AnkrProvider;
23197
23201
  var init_ankr_provider = __esm({
23198
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ankr-provider.js"() {
23202
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ankr-provider.js"() {
23199
23203
  "use strict";
23200
23204
  init_formatter();
23201
23205
  init_url_json_rpc_provider();
@@ -23237,10 +23241,10 @@ var init_ankr_provider = __esm({
23237
23241
  }
23238
23242
  });
23239
23243
 
23240
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/cloudflare-provider.js
23244
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/cloudflare-provider.js
23241
23245
  var __awaiter14, logger36, CloudflareProvider;
23242
23246
  var init_cloudflare_provider = __esm({
23243
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/cloudflare-provider.js"() {
23247
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/cloudflare-provider.js"() {
23244
23248
  "use strict";
23245
23249
  init_url_json_rpc_provider();
23246
23250
  init_lib();
@@ -23307,7 +23311,7 @@ var init_cloudflare_provider = __esm({
23307
23311
  }
23308
23312
  });
23309
23313
 
23310
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/etherscan-provider.js
23314
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/etherscan-provider.js
23311
23315
  function getTransactionPostData(transaction) {
23312
23316
  const result = {};
23313
23317
  for (let key2 in transaction) {
@@ -23438,7 +23442,7 @@ function checkError2(method, error, transaction) {
23438
23442
  }
23439
23443
  var __awaiter15, logger37, EtherscanProvider;
23440
23444
  var init_etherscan_provider = __esm({
23441
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/etherscan-provider.js"() {
23445
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/etherscan-provider.js"() {
23442
23446
  "use strict";
23443
23447
  init_lib2();
23444
23448
  init_lib4();
@@ -23740,7 +23744,7 @@ var init_etherscan_provider = __esm({
23740
23744
  }
23741
23745
  });
23742
23746
 
23743
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/fallback-provider.js
23747
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/fallback-provider.js
23744
23748
  function now() {
23745
23749
  return (/* @__PURE__ */ new Date()).getTime();
23746
23750
  }
@@ -24018,7 +24022,7 @@ function getRunner(config, currentBlockNumber, method, params) {
24018
24022
  }
24019
24023
  var __awaiter16, logger38, nextRid, ForwardErrors, ForwardProperties, FallbackProvider;
24020
24024
  var init_fallback_provider = __esm({
24021
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/fallback-provider.js"() {
24025
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/fallback-provider.js"() {
24022
24026
  "use strict";
24023
24027
  init_lib14();
24024
24028
  init_lib3();
@@ -24288,19 +24292,19 @@ var init_fallback_provider = __esm({
24288
24292
  }
24289
24293
  });
24290
24294
 
24291
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ipc-provider.js
24295
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ipc-provider.js
24292
24296
  var IpcProvider;
24293
24297
  var init_ipc_provider = __esm({
24294
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ipc-provider.js"() {
24298
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ipc-provider.js"() {
24295
24299
  "use strict";
24296
24300
  IpcProvider = null;
24297
24301
  }
24298
24302
  });
24299
24303
 
24300
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/infura-provider.js
24304
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/infura-provider.js
24301
24305
  var logger39, defaultProjectId, InfuraWebSocketProvider, InfuraProvider;
24302
24306
  var init_infura_provider = __esm({
24303
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/infura-provider.js"() {
24307
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/infura-provider.js"() {
24304
24308
  "use strict";
24305
24309
  init_lib4();
24306
24310
  init_websocket_provider();
@@ -24420,10 +24424,10 @@ var init_infura_provider = __esm({
24420
24424
  }
24421
24425
  });
24422
24426
 
24423
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-batch-provider.js
24427
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-batch-provider.js
24424
24428
  var JsonRpcBatchProvider;
24425
24429
  var init_json_rpc_batch_provider = __esm({
24426
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-batch-provider.js"() {
24430
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-batch-provider.js"() {
24427
24431
  "use strict";
24428
24432
  init_lib4();
24429
24433
  init_lib28();
@@ -24493,10 +24497,10 @@ var init_json_rpc_batch_provider = __esm({
24493
24497
  }
24494
24498
  });
24495
24499
 
24496
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/nodesmith-provider.js
24500
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/nodesmith-provider.js
24497
24501
  var logger40, defaultApiKey3, NodesmithProvider;
24498
24502
  var init_nodesmith_provider = __esm({
24499
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/nodesmith-provider.js"() {
24503
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/nodesmith-provider.js"() {
24500
24504
  "use strict";
24501
24505
  init_url_json_rpc_provider();
24502
24506
  init_lib();
@@ -24538,10 +24542,10 @@ var init_nodesmith_provider = __esm({
24538
24542
  }
24539
24543
  });
24540
24544
 
24541
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/pocket-provider.js
24545
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/pocket-provider.js
24542
24546
  var logger41, defaultApplicationId, PocketProvider;
24543
24547
  var init_pocket_provider = __esm({
24544
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/pocket-provider.js"() {
24548
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/pocket-provider.js"() {
24545
24549
  "use strict";
24546
24550
  init_lib();
24547
24551
  init_version23();
@@ -24614,10 +24618,10 @@ var init_pocket_provider = __esm({
24614
24618
  }
24615
24619
  });
24616
24620
 
24617
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/quicknode-provider.js
24621
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/quicknode-provider.js
24618
24622
  var logger42, defaultApiKey4, QuickNodeProvider;
24619
24623
  var init_quicknode_provider = __esm({
24620
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/quicknode-provider.js"() {
24624
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/quicknode-provider.js"() {
24621
24625
  "use strict";
24622
24626
  init_url_json_rpc_provider();
24623
24627
  init_lib();
@@ -24697,7 +24701,7 @@ var init_quicknode_provider = __esm({
24697
24701
  }
24698
24702
  });
24699
24703
 
24700
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/web3-provider.js
24704
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/web3-provider.js
24701
24705
  function buildWeb3LegacyFetcher(provider, sendFunc) {
24702
24706
  const fetcher = "Web3LegacyFetcher";
24703
24707
  return function(method, params) {
@@ -24778,7 +24782,7 @@ function buildEip1193Fetcher(provider) {
24778
24782
  }
24779
24783
  var logger43, _nextId, Web3Provider;
24780
24784
  var init_web3_provider = __esm({
24781
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/web3-provider.js"() {
24785
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/web3-provider.js"() {
24782
24786
  "use strict";
24783
24787
  init_lib4();
24784
24788
  init_lib();
@@ -24830,7 +24834,7 @@ var init_web3_provider = __esm({
24830
24834
  }
24831
24835
  });
24832
24836
 
24833
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/index.js
24837
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/index.js
24834
24838
  var lib_exports25 = {};
24835
24839
  __export(lib_exports25, {
24836
24840
  AlchemyProvider: () => AlchemyProvider,
@@ -24905,7 +24909,7 @@ function getDefaultProvider(network, options) {
24905
24909
  }
24906
24910
  var logger44;
24907
24911
  var init_lib29 = __esm({
24908
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/index.js"() {
24912
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/index.js"() {
24909
24913
  "use strict";
24910
24914
  init_lib14();
24911
24915
  init_lib27();
@@ -25144,9 +25148,9 @@ var init_lib31 = __esm({
25144
25148
  }
25145
25149
  });
25146
25150
 
25147
- // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/utils.js
25151
+ // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/utils.js
25148
25152
  var require_utils2 = __commonJS({
25149
- "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/utils.js"(exports) {
25153
+ "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/utils.js"(exports) {
25150
25154
  "use strict";
25151
25155
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
25152
25156
  if (k2 === void 0) k2 = k;
@@ -25493,9 +25497,9 @@ var require_utils2 = __commonJS({
25493
25497
  }
25494
25498
  });
25495
25499
 
25496
- // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/_version.js
25500
+ // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/_version.js
25497
25501
  var require_version = __commonJS({
25498
- "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/_version.js"(exports) {
25502
+ "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/_version.js"(exports) {
25499
25503
  "use strict";
25500
25504
  Object.defineProperty(exports, "__esModule", { value: true });
25501
25505
  exports.version = void 0;
@@ -25503,9 +25507,9 @@ var require_version = __commonJS({
25503
25507
  }
25504
25508
  });
25505
25509
 
25506
- // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/ethers.js
25510
+ // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/ethers.js
25507
25511
  var require_ethers = __commonJS({
25508
- "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/ethers.js"(exports) {
25512
+ "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/ethers.js"(exports) {
25509
25513
  "use strict";
25510
25514
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
25511
25515
  if (k2 === void 0) k2 = k;
@@ -1815,9 +1815,9 @@ var require_buffer = __commonJS({
1815
1815
  }
1816
1816
  });
1817
1817
 
1818
- // ../../node_modules/.pnpm/bn.js@5.2.2/node_modules/bn.js/lib/bn.js
1818
+ // ../../node_modules/.pnpm/bn.js@5.2.3/node_modules/bn.js/lib/bn.js
1819
1819
  var require_bn = __commonJS({
1820
- "../../node_modules/.pnpm/bn.js@5.2.2/node_modules/bn.js/lib/bn.js"(exports, module) {
1820
+ "../../node_modules/.pnpm/bn.js@5.2.3/node_modules/bn.js/lib/bn.js"(exports, module) {
1821
1821
  "use strict";
1822
1822
  (function(module2, exports2) {
1823
1823
  "use strict";
@@ -3684,6 +3684,10 @@ var require_bn = __commonJS({
3684
3684
  var mask = 67108863 ^ 67108863 >>> r2 << r2;
3685
3685
  this.words[this.length - 1] &= mask;
3686
3686
  }
3687
+ if (this.length === 0) {
3688
+ this.words[0] = 0;
3689
+ this.length = 1;
3690
+ }
3687
3691
  return this._strip();
3688
3692
  };
3689
3693
  BN3.prototype.maskn = function maskn(bits) {
@@ -19706,16 +19710,16 @@ var require_bech32 = __commonJS({
19706
19710
  }
19707
19711
  });
19708
19712
 
19709
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/_version.js
19713
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/_version.js
19710
19714
  var version23;
19711
19715
  var init_version23 = __esm({
19712
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/_version.js"() {
19716
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/_version.js"() {
19713
19717
  "use strict";
19714
19718
  version23 = "providers/5.8.0";
19715
19719
  }
19716
19720
  });
19717
19721
 
19718
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/formatter.js
19722
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/formatter.js
19719
19723
  function isCommunityResourcable(value) {
19720
19724
  return value && typeof value.isCommunityResource === "function";
19721
19725
  }
@@ -19742,7 +19746,7 @@ function showThrottleMessage() {
19742
19746
  }
19743
19747
  var logger29, Formatter, throttleMessage;
19744
19748
  var init_formatter = __esm({
19745
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/formatter.js"() {
19749
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/formatter.js"() {
19746
19750
  "use strict";
19747
19751
  init_lib7();
19748
19752
  init_lib3();
@@ -20153,7 +20157,7 @@ var init_formatter = __esm({
20153
20157
  }
20154
20158
  });
20155
20159
 
20156
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/base-provider.js
20160
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/base-provider.js
20157
20161
  function checkTopic(topic) {
20158
20162
  if (topic == null) {
20159
20163
  return "null";
@@ -20289,7 +20293,7 @@ function encodeBytes(datas) {
20289
20293
  }
20290
20294
  var import_bech32, __awaiter10, logger30, MAX_CCIP_REDIRECTS, PollableEvents, Event, coinInfos, matcherIpfs, matchers, Resolver, defaultFormatter, nextPollId, BaseProvider;
20291
20295
  var init_base_provider = __esm({
20292
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/base-provider.js"() {
20296
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/base-provider.js"() {
20293
20297
  "use strict";
20294
20298
  init_lib14();
20295
20299
  init_lib10();
@@ -21989,7 +21993,7 @@ var init_base_provider = __esm({
21989
21993
  }
21990
21994
  });
21991
21995
 
21992
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-provider.js
21996
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-provider.js
21993
21997
  function spelunk(value, requireData) {
21994
21998
  if (value == null) {
21995
21999
  return null;
@@ -22112,7 +22116,7 @@ function getLowerCase(value) {
22112
22116
  }
22113
22117
  var __awaiter11, logger31, errorGas, _constructorGuard5, JsonRpcSigner, UncheckedJsonRpcSigner, allowedTransactionKeys4, JsonRpcProvider;
22114
22118
  var init_json_rpc_provider = __esm({
22115
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-provider.js"() {
22119
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-provider.js"() {
22116
22120
  "use strict";
22117
22121
  init_lib15();
22118
22122
  init_lib3();
@@ -22666,10 +22670,10 @@ var init_json_rpc_provider = __esm({
22666
22670
  }
22667
22671
  });
22668
22672
 
22669
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ws.js
22673
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ws.js
22670
22674
  var WS;
22671
22675
  var init_ws = __esm({
22672
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ws.js"() {
22676
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ws.js"() {
22673
22677
  "use strict";
22674
22678
  init_lib();
22675
22679
  init_version23();
@@ -22690,10 +22694,10 @@ var init_ws = __esm({
22690
22694
  }
22691
22695
  });
22692
22696
 
22693
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/websocket-provider.js
22697
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/websocket-provider.js
22694
22698
  var __awaiter12, logger32, NextId, WebSocketProvider;
22695
22699
  var init_websocket_provider = __esm({
22696
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/websocket-provider.js"() {
22700
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/websocket-provider.js"() {
22697
22701
  "use strict";
22698
22702
  init_lib3();
22699
22703
  init_lib4();
@@ -22975,10 +22979,10 @@ var init_websocket_provider = __esm({
22975
22979
  }
22976
22980
  });
22977
22981
 
22978
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/url-json-rpc-provider.js
22982
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/url-json-rpc-provider.js
22979
22983
  var __awaiter13, logger33, StaticJsonRpcProvider, UrlJsonRpcProvider;
22980
22984
  var init_url_json_rpc_provider = __esm({
22981
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/url-json-rpc-provider.js"() {
22985
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/url-json-rpc-provider.js"() {
22982
22986
  "use strict";
22983
22987
  init_lib4();
22984
22988
  init_lib();
@@ -23076,10 +23080,10 @@ var init_url_json_rpc_provider = __esm({
23076
23080
  }
23077
23081
  });
23078
23082
 
23079
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/alchemy-provider.js
23083
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/alchemy-provider.js
23080
23084
  var logger34, defaultApiKey, AlchemyWebSocketProvider, AlchemyProvider;
23081
23085
  var init_alchemy_provider = __esm({
23082
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/alchemy-provider.js"() {
23086
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/alchemy-provider.js"() {
23083
23087
  "use strict";
23084
23088
  init_lib4();
23085
23089
  init_formatter();
@@ -23170,7 +23174,7 @@ var init_alchemy_provider = __esm({
23170
23174
  }
23171
23175
  });
23172
23176
 
23173
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ankr-provider.js
23177
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ankr-provider.js
23174
23178
  function getHost(name) {
23175
23179
  switch (name) {
23176
23180
  case "homestead":
@@ -23200,7 +23204,7 @@ function getHost(name) {
23200
23204
  }
23201
23205
  var logger35, defaultApiKey2, AnkrProvider;
23202
23206
  var init_ankr_provider = __esm({
23203
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ankr-provider.js"() {
23207
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ankr-provider.js"() {
23204
23208
  "use strict";
23205
23209
  init_formatter();
23206
23210
  init_url_json_rpc_provider();
@@ -23242,10 +23246,10 @@ var init_ankr_provider = __esm({
23242
23246
  }
23243
23247
  });
23244
23248
 
23245
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/cloudflare-provider.js
23249
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/cloudflare-provider.js
23246
23250
  var __awaiter14, logger36, CloudflareProvider;
23247
23251
  var init_cloudflare_provider = __esm({
23248
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/cloudflare-provider.js"() {
23252
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/cloudflare-provider.js"() {
23249
23253
  "use strict";
23250
23254
  init_url_json_rpc_provider();
23251
23255
  init_lib();
@@ -23312,7 +23316,7 @@ var init_cloudflare_provider = __esm({
23312
23316
  }
23313
23317
  });
23314
23318
 
23315
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/etherscan-provider.js
23319
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/etherscan-provider.js
23316
23320
  function getTransactionPostData(transaction) {
23317
23321
  const result = {};
23318
23322
  for (let key2 in transaction) {
@@ -23443,7 +23447,7 @@ function checkError2(method, error, transaction) {
23443
23447
  }
23444
23448
  var __awaiter15, logger37, EtherscanProvider;
23445
23449
  var init_etherscan_provider = __esm({
23446
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/etherscan-provider.js"() {
23450
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/etherscan-provider.js"() {
23447
23451
  "use strict";
23448
23452
  init_lib2();
23449
23453
  init_lib4();
@@ -23745,7 +23749,7 @@ var init_etherscan_provider = __esm({
23745
23749
  }
23746
23750
  });
23747
23751
 
23748
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/fallback-provider.js
23752
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/fallback-provider.js
23749
23753
  function now() {
23750
23754
  return (/* @__PURE__ */ new Date()).getTime();
23751
23755
  }
@@ -24023,7 +24027,7 @@ function getRunner(config, currentBlockNumber, method, params) {
24023
24027
  }
24024
24028
  var __awaiter16, logger38, nextRid, ForwardErrors, ForwardProperties, FallbackProvider;
24025
24029
  var init_fallback_provider = __esm({
24026
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/fallback-provider.js"() {
24030
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/fallback-provider.js"() {
24027
24031
  "use strict";
24028
24032
  init_lib14();
24029
24033
  init_lib3();
@@ -24293,19 +24297,19 @@ var init_fallback_provider = __esm({
24293
24297
  }
24294
24298
  });
24295
24299
 
24296
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ipc-provider.js
24300
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ipc-provider.js
24297
24301
  var IpcProvider;
24298
24302
  var init_ipc_provider = __esm({
24299
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ipc-provider.js"() {
24303
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/ipc-provider.js"() {
24300
24304
  "use strict";
24301
24305
  IpcProvider = null;
24302
24306
  }
24303
24307
  });
24304
24308
 
24305
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/infura-provider.js
24309
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/infura-provider.js
24306
24310
  var logger39, defaultProjectId, InfuraWebSocketProvider, InfuraProvider;
24307
24311
  var init_infura_provider = __esm({
24308
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/infura-provider.js"() {
24312
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/infura-provider.js"() {
24309
24313
  "use strict";
24310
24314
  init_lib4();
24311
24315
  init_websocket_provider();
@@ -24425,10 +24429,10 @@ var init_infura_provider = __esm({
24425
24429
  }
24426
24430
  });
24427
24431
 
24428
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-batch-provider.js
24432
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-batch-provider.js
24429
24433
  var JsonRpcBatchProvider;
24430
24434
  var init_json_rpc_batch_provider = __esm({
24431
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-batch-provider.js"() {
24435
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/json-rpc-batch-provider.js"() {
24432
24436
  "use strict";
24433
24437
  init_lib4();
24434
24438
  init_lib28();
@@ -24498,10 +24502,10 @@ var init_json_rpc_batch_provider = __esm({
24498
24502
  }
24499
24503
  });
24500
24504
 
24501
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/nodesmith-provider.js
24505
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/nodesmith-provider.js
24502
24506
  var logger40, defaultApiKey3, NodesmithProvider;
24503
24507
  var init_nodesmith_provider = __esm({
24504
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/nodesmith-provider.js"() {
24508
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/nodesmith-provider.js"() {
24505
24509
  "use strict";
24506
24510
  init_url_json_rpc_provider();
24507
24511
  init_lib();
@@ -24543,10 +24547,10 @@ var init_nodesmith_provider = __esm({
24543
24547
  }
24544
24548
  });
24545
24549
 
24546
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/pocket-provider.js
24550
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/pocket-provider.js
24547
24551
  var logger41, defaultApplicationId, PocketProvider;
24548
24552
  var init_pocket_provider = __esm({
24549
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/pocket-provider.js"() {
24553
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/pocket-provider.js"() {
24550
24554
  "use strict";
24551
24555
  init_lib();
24552
24556
  init_version23();
@@ -24619,10 +24623,10 @@ var init_pocket_provider = __esm({
24619
24623
  }
24620
24624
  });
24621
24625
 
24622
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/quicknode-provider.js
24626
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/quicknode-provider.js
24623
24627
  var logger42, defaultApiKey4, QuickNodeProvider;
24624
24628
  var init_quicknode_provider = __esm({
24625
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/quicknode-provider.js"() {
24629
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/quicknode-provider.js"() {
24626
24630
  "use strict";
24627
24631
  init_url_json_rpc_provider();
24628
24632
  init_lib();
@@ -24702,7 +24706,7 @@ var init_quicknode_provider = __esm({
24702
24706
  }
24703
24707
  });
24704
24708
 
24705
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/web3-provider.js
24709
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/web3-provider.js
24706
24710
  function buildWeb3LegacyFetcher(provider, sendFunc) {
24707
24711
  const fetcher = "Web3LegacyFetcher";
24708
24712
  return function(method, params) {
@@ -24783,7 +24787,7 @@ function buildEip1193Fetcher(provider) {
24783
24787
  }
24784
24788
  var logger43, _nextId, Web3Provider;
24785
24789
  var init_web3_provider = __esm({
24786
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/web3-provider.js"() {
24790
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/web3-provider.js"() {
24787
24791
  "use strict";
24788
24792
  init_lib4();
24789
24793
  init_lib();
@@ -24835,7 +24839,7 @@ var init_web3_provider = __esm({
24835
24839
  }
24836
24840
  });
24837
24841
 
24838
- // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/index.js
24842
+ // ../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/index.js
24839
24843
  var lib_exports25 = {};
24840
24844
  __export(lib_exports25, {
24841
24845
  AlchemyProvider: () => AlchemyProvider,
@@ -24910,7 +24914,7 @@ function getDefaultProvider(network, options) {
24910
24914
  }
24911
24915
  var logger44;
24912
24916
  var init_lib29 = __esm({
24913
- "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/index.js"() {
24917
+ "../../node_modules/.pnpm/@ethersproject+providers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/@ethersproject/providers/lib.esm/index.js"() {
24914
24918
  "use strict";
24915
24919
  init_lib14();
24916
24920
  init_lib27();
@@ -25149,9 +25153,9 @@ var init_lib31 = __esm({
25149
25153
  }
25150
25154
  });
25151
25155
 
25152
- // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/utils.js
25156
+ // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/utils.js
25153
25157
  var require_utils2 = __commonJS({
25154
- "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/utils.js"(exports) {
25158
+ "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/utils.js"(exports) {
25155
25159
  "use strict";
25156
25160
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
25157
25161
  if (k2 === void 0) k2 = k;
@@ -25498,9 +25502,9 @@ var require_utils2 = __commonJS({
25498
25502
  }
25499
25503
  });
25500
25504
 
25501
- // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/_version.js
25505
+ // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/_version.js
25502
25506
  var require_version = __commonJS({
25503
- "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/_version.js"(exports) {
25507
+ "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/_version.js"(exports) {
25504
25508
  "use strict";
25505
25509
  Object.defineProperty(exports, "__esModule", { value: true });
25506
25510
  exports.version = void 0;
@@ -25508,9 +25512,9 @@ var require_version = __commonJS({
25508
25512
  }
25509
25513
  });
25510
25514
 
25511
- // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/ethers.js
25515
+ // ../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/ethers.js
25512
25516
  var require_ethers = __commonJS({
25513
- "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.1.0_utf-8-validate@5.0.10/node_modules/ethers/lib/ethers.js"(exports) {
25517
+ "../../node_modules/.pnpm/ethers@5.8.0_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib/ethers.js"(exports) {
25514
25518
  "use strict";
25515
25519
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
25516
25520
  if (k2 === void 0) k2 = k;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shogun-sdk/swap",
3
- "version": "0.0.2-test.33",
3
+ "version": "0.0.2-test.34",
4
4
  "type": "module",
5
5
  "description": "Shogun Network Swap utilities and helpers",
6
6
  "author": "Shogun Network",
@@ -45,7 +45,7 @@
45
45
  "sideEffects": false,
46
46
  "dependencies": {
47
47
  "@solana/web3.js": "^1.98.4",
48
- "@shogun-sdk/intents-sdk": "1.2.6-test.14"
48
+ "@shogun-sdk/intents-sdk": "1.2.6-test.15"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@ethersproject/abstract-signer": "^5.7.0",
@@ -56,9 +56,9 @@
56
56
  "ethers": "^5.6.1",
57
57
  "react": "^18.3.1",
58
58
  "react-dom": "^18.3.1",
59
- "rimraf": "^5.0.5",
59
+ "rimraf": "^6.1.3",
60
60
  "swr": "^2.3.6",
61
- "tsup": "^8.5.0",
61
+ "tsup": "^8.5.1",
62
62
  "typescript": "^5.8.2",
63
63
  "viem": "^2.38.1",
64
64
  "vue": "^3.5.18"