@boostxyz/sdk 2.0.0-alpha.26 → 2.0.0-alpha.27

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.
Files changed (83) hide show
  1. package/dist/Actions/Action.cjs +1 -1
  2. package/dist/Actions/Action.js +8 -8
  3. package/dist/Actions/EventAction.cjs +1 -1
  4. package/dist/Actions/EventAction.cjs.map +1 -1
  5. package/dist/Actions/EventAction.d.ts +6 -7
  6. package/dist/Actions/EventAction.d.ts.map +1 -1
  7. package/dist/Actions/EventAction.js +99 -95
  8. package/dist/Actions/EventAction.js.map +1 -1
  9. package/dist/AllowLists/AllowList.cjs +1 -1
  10. package/dist/AllowLists/AllowList.js +5 -5
  11. package/dist/AllowLists/SimpleAllowList.cjs +1 -1
  12. package/dist/AllowLists/SimpleAllowList.js +6 -6
  13. package/dist/AllowLists/SimpleDenyList.cjs +1 -1
  14. package/dist/AllowLists/SimpleDenyList.js +2 -2
  15. package/dist/Auth/PassthroughAuth.cjs +1 -1
  16. package/dist/Auth/PassthroughAuth.js +1 -1
  17. package/dist/BoostCore.cjs +2 -2
  18. package/dist/BoostCore.js +33 -33
  19. package/dist/BoostRegistry.cjs +1 -1
  20. package/dist/BoostRegistry.js +12 -12
  21. package/dist/Budgets/Budget.cjs +1 -1
  22. package/dist/Budgets/Budget.js +2 -2
  23. package/dist/Budgets/ManagedBudget.cjs +1 -1
  24. package/dist/Budgets/ManagedBudget.js +25 -25
  25. package/dist/Deployable/DeployableTarget.cjs +1 -1
  26. package/dist/Deployable/DeployableTarget.js +1 -1
  27. package/dist/Deployable/DeployableTargetWithRBAC.cjs +1 -1
  28. package/dist/Deployable/DeployableTargetWithRBAC.js +21 -21
  29. package/dist/Incentives/AllowListIncentive.cjs +1 -1
  30. package/dist/Incentives/AllowListIncentive.js +9 -9
  31. package/dist/Incentives/CGDAIncentive.cjs +1 -1
  32. package/dist/Incentives/CGDAIncentive.js +6 -6
  33. package/dist/Incentives/ERC20Incentive.cjs +1 -1
  34. package/dist/Incentives/ERC20Incentive.js +22 -22
  35. package/dist/Incentives/ERC20VariableCriteriaIncentive.cjs +1 -1
  36. package/dist/Incentives/ERC20VariableCriteriaIncentive.cjs.map +1 -1
  37. package/dist/Incentives/ERC20VariableCriteriaIncentive.d.ts +1 -1
  38. package/dist/Incentives/ERC20VariableCriteriaIncentive.js +20 -20
  39. package/dist/Incentives/ERC20VariableCriteriaIncentive.js.map +1 -1
  40. package/dist/Incentives/ERC20VariableIncentive.cjs +1 -1
  41. package/dist/Incentives/ERC20VariableIncentive.js +16 -16
  42. package/dist/Incentives/Incentive.cjs +1 -1
  43. package/dist/Incentives/Incentive.cjs.map +1 -1
  44. package/dist/Incentives/Incentive.d.ts +3 -3
  45. package/dist/Incentives/Incentive.d.ts.map +1 -1
  46. package/dist/Incentives/Incentive.js +30 -30
  47. package/dist/Incentives/Incentive.js.map +1 -1
  48. package/dist/Incentives/PointsIncentive.cjs +1 -1
  49. package/dist/Incentives/PointsIncentive.js +11 -11
  50. package/dist/{SimpleDenyList-D0cyVUVv.js → SimpleDenyList-7BojkCuF.js} +12 -12
  51. package/dist/{SimpleDenyList-D0cyVUVv.js.map → SimpleDenyList-7BojkCuF.js.map} +1 -1
  52. package/dist/{SimpleDenyList-BdlpZdDz.cjs → SimpleDenyList-DqM-Bczx.cjs} +2 -2
  53. package/dist/{SimpleDenyList-BdlpZdDz.cjs.map → SimpleDenyList-DqM-Bczx.cjs.map} +1 -1
  54. package/dist/Validators/LimitedSignerValidator.cjs +1 -1
  55. package/dist/Validators/LimitedSignerValidator.js +10 -10
  56. package/dist/Validators/SignerValidator.cjs +1 -1
  57. package/dist/Validators/SignerValidator.cjs.map +1 -1
  58. package/dist/Validators/SignerValidator.d.ts.map +1 -1
  59. package/dist/Validators/SignerValidator.js +25 -27
  60. package/dist/Validators/SignerValidator.js.map +1 -1
  61. package/dist/Validators/Validator.cjs +1 -1
  62. package/dist/Validators/Validator.js +6 -6
  63. package/dist/componentInterfaces-BJ_XfE8j.cjs +2 -0
  64. package/dist/componentInterfaces-BJ_XfE8j.cjs.map +1 -0
  65. package/dist/componentInterfaces-DBJaFhsl.js +15 -0
  66. package/dist/componentInterfaces-DBJaFhsl.js.map +1 -0
  67. package/dist/{generated-Cqn4wS01.cjs → generated-BSUMIFi5.cjs} +3 -3
  68. package/dist/generated-BSUMIFi5.cjs.map +1 -0
  69. package/dist/{generated-BAKNSOjJ.js → generated-Dz_g2mFT.js} +217 -217
  70. package/dist/generated-Dz_g2mFT.js.map +1 -0
  71. package/dist/index.cjs +1 -1
  72. package/dist/index.js +25 -25
  73. package/package.json +1 -1
  74. package/src/Actions/EventAction.test.ts +1 -1
  75. package/src/Actions/EventAction.ts +20 -17
  76. package/src/Incentives/Incentive.ts +3 -2
  77. package/src/Validators/SignerValidator.ts +7 -12
  78. package/dist/componentInterfaces-DRI_dQ-P.cjs +0 -2
  79. package/dist/componentInterfaces-DRI_dQ-P.cjs.map +0 -1
  80. package/dist/componentInterfaces-bIVo8eyA.js +0 -14
  81. package/dist/componentInterfaces-bIVo8eyA.js.map +0 -1
  82. package/dist/generated-BAKNSOjJ.js.map +0 -1
  83. package/dist/generated-Cqn4wS01.cjs.map +0 -1
@@ -1,7 +1,7 @@
1
1
  import { simulateContract as P, readContract as S, writeContract as j } from "viem/actions";
2
- import { createClient as V, custom as $ } from "viem";
3
- import { parseAccount as Z, getAddress as G } from "viem/utils";
4
- function z(n) {
2
+ import { createClient as V, custom as Z } from "viem";
3
+ import { parseAccount as $, getAddress as G } from "viem/utils";
4
+ function R(n) {
5
5
  const a = n.state.current, e = n.state.connections.get(a), i = e == null ? void 0 : e.accounts, u = i == null ? void 0 : i[0], y = n.chains.find((f) => f.id === (e == null ? void 0 : e.chainId)), r = n.state.status;
6
6
  switch (r) {
7
7
  case "connected":
@@ -68,22 +68,22 @@ function H(n, a, e) {
68
68
  const u = n[e];
69
69
  return typeof u == "function" ? u : (y) => a(n, y);
70
70
  }
71
- const W = "2.13.8", Q = () => `@wagmi/core@${W}`;
72
- var k = function(n, a, e, i) {
71
+ const Q = "2.13.8", W = () => `@wagmi/core@${Q}`;
72
+ var q = function(n, a, e, i) {
73
73
  if (e === "a" && !i) throw new TypeError("Private accessor was defined without a getter");
74
74
  if (typeof a == "function" ? n !== a || !i : !a.has(n)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
75
75
  return e === "m" ? i : e === "a" ? i.call(n) : i ? i.value : a.get(n);
76
- }, N, B;
76
+ }, A, B;
77
77
  class g extends Error {
78
78
  get docsBaseUrl() {
79
79
  return "https://wagmi.sh/core";
80
80
  }
81
81
  get version() {
82
- return Q();
82
+ return W();
83
83
  }
84
84
  constructor(a, e = {}) {
85
85
  var i;
86
- super(), N.add(this), Object.defineProperty(this, "details", {
86
+ super(), A.add(this), Object.defineProperty(this, "details", {
87
87
  enumerable: !0,
88
88
  configurable: !0,
89
89
  writable: !0,
@@ -123,13 +123,13 @@ class g extends Error {
123
123
  `), e.cause && (this.cause = e.cause), this.details = u, this.docsPath = y, this.metaMessages = e.metaMessages, this.shortMessage = a;
124
124
  }
125
125
  walk(a) {
126
- return k(this, N, "m", B).call(this, this, a);
126
+ return q(this, A, "m", B).call(this, this, a);
127
127
  }
128
128
  }
129
- N = /* @__PURE__ */ new WeakSet(), B = function n(a, e) {
130
- return e != null && e(a) ? a : a.cause ? k(this, N, "m", n).call(this, a.cause, e) : a;
129
+ A = /* @__PURE__ */ new WeakSet(), B = function n(a, e) {
130
+ return e != null && e(a) ? a : a.cause ? q(this, A, "m", n).call(this, a.cause, e) : a;
131
131
  };
132
- class Y extends g {
132
+ class J extends g {
133
133
  constructor() {
134
134
  super("Connector not connected."), Object.defineProperty(this, "name", {
135
135
  enumerable: !0,
@@ -139,7 +139,7 @@ class Y extends g {
139
139
  });
140
140
  }
141
141
  }
142
- class J extends g {
142
+ class K extends g {
143
143
  constructor({ address: a, connector: e }) {
144
144
  super(`Account "${a}" not found for connector "${e.name}".`), Object.defineProperty(this, "name", {
145
145
  enumerable: !0,
@@ -149,7 +149,7 @@ class J extends g {
149
149
  });
150
150
  }
151
151
  }
152
- class K extends g {
152
+ class X extends g {
153
153
  constructor({ connectionChainId: a, connectorChainId: e }) {
154
154
  super(`The current chain of the connector (id: ${e}) does not match the connection's chain (id: ${a}).`, {
155
155
  metaMessages: [
@@ -164,7 +164,7 @@ class K extends g {
164
164
  });
165
165
  }
166
166
  }
167
- class X extends g {
167
+ class Y extends g {
168
168
  constructor({ connector: a }) {
169
169
  super(`Connector "${a.name}" unavailable while reconnecting.`, {
170
170
  details: [
@@ -185,32 +185,32 @@ async function F(n, a = {}) {
185
185
  if (a.connector) {
186
186
  const { connector: o } = a;
187
187
  if (n.state.status === "reconnecting" && !o.getAccounts && !o.getChainId)
188
- throw new X({ connector: o });
189
- const [A, U] = await Promise.all([
188
+ throw new Y({ connector: o });
189
+ const [N, U] = await Promise.all([
190
190
  o.getAccounts(),
191
191
  o.getChainId()
192
192
  ]);
193
193
  e = {
194
- accounts: A,
194
+ accounts: N,
195
195
  chainId: U,
196
196
  connector: o
197
197
  };
198
198
  } else
199
199
  e = n.state.connections.get(n.state.current);
200
200
  if (!e)
201
- throw new Y();
201
+ throw new J();
202
202
  const i = a.chainId ?? e.chainId, u = await e.connector.getChainId();
203
203
  if (u !== e.chainId)
204
- throw new K({
204
+ throw new X({
205
205
  connectionChainId: e.chainId,
206
206
  connectorChainId: u
207
207
  });
208
208
  const y = e.connector;
209
209
  if (y.getClient)
210
210
  return y.getClient({ chainId: i });
211
- const r = Z(a.account ?? e.accounts[0]);
211
+ const r = $(a.account ?? e.accounts[0]);
212
212
  if (r.address = G(r.address), a.account && !e.accounts.some((o) => o.toLowerCase() === r.address.toLowerCase()))
213
- throw new J({
213
+ throw new K({
214
214
  address: r.address,
215
215
  connector: y
216
216
  });
@@ -219,7 +219,7 @@ async function F(n, a = {}) {
219
219
  account: r,
220
220
  chain: f,
221
221
  name: "Connector Client",
222
- transport: (o) => $(O)({ ...o, retryCount: 0 })
222
+ transport: (o) => Z(O)({ ...o, retryCount: 0 })
223
223
  });
224
224
  }
225
225
  async function x(n, a) {
@@ -229,17 +229,17 @@ async function x(n, a) {
229
229
  chainId: i,
230
230
  connector: u
231
231
  })).account;
232
- const f = n.getClient({ chainId: i }), O = H(f, P, "simulateContract"), { result: o, request: A } = await O({ ...y, abi: e, account: r });
232
+ const f = n.getClient({ chainId: i }), O = H(f, P, "simulateContract"), { result: o, request: N } = await O({ ...y, abi: e, account: r });
233
233
  return {
234
234
  chainId: f.chain.id,
235
235
  result: o,
236
- request: { __mode: "prepared", ...A, chainId: i }
236
+ request: { __mode: "prepared", ...N, chainId: i }
237
237
  };
238
238
  }
239
239
  function s(n) {
240
240
  return n.address !== void 0 && typeof n.address == "object" ? (a, e) => {
241
241
  var i;
242
- const u = _(a), y = z(a), r = (e == null ? void 0 : e.chainId) ?? y.chainId ?? u;
242
+ const u = _(a), y = R(a), r = (e == null ? void 0 : e.chainId) ?? y.chainId ?? u;
243
243
  return x(a, {
244
244
  ...e,
245
245
  ...n.functionName ? { functionName: n.functionName } : {},
@@ -260,7 +260,7 @@ function D(n, a) {
260
260
  function t(n) {
261
261
  return n.address !== void 0 && typeof n.address == "object" ? (a, e) => {
262
262
  var i;
263
- const u = _(a), y = z(a), r = (e == null ? void 0 : e.chainId) ?? y.chainId ?? u;
263
+ const u = _(a), y = R(a), r = (e == null ? void 0 : e.chainId) ?? y.chainId ?? u;
264
264
  return D(a, {
265
265
  ...e,
266
266
  ...n.functionName ? { functionName: n.functionName } : {},
@@ -274,21 +274,21 @@ function t(n) {
274
274
  abi: n.abi
275
275
  });
276
276
  }
277
- async function q(n, a) {
277
+ async function k(n, a) {
278
278
  const { account: e, chainId: i, connector: u, __mode: y, ...r } = a;
279
279
  let f;
280
280
  typeof e == "object" && e.type === "local" ? f = n.getClient({ chainId: i }) : f = await F(n, { account: e, chainId: i, connector: u });
281
- const { connector: O } = z(n);
281
+ const { connector: O } = R(n);
282
282
  let o;
283
283
  if (y === "prepared" || O != null && O.supportsSimulation)
284
284
  o = r;
285
285
  else {
286
- const { request: A } = await x(n, {
286
+ const { request: N } = await x(n, {
287
287
  ...r,
288
288
  account: e,
289
289
  chainId: i
290
290
  });
291
- o = A;
291
+ o = N;
292
292
  }
293
293
  return await H(f, j, "writeContract")({
294
294
  ...o,
@@ -299,15 +299,15 @@ async function q(n, a) {
299
299
  function p(n) {
300
300
  return n.address !== void 0 && typeof n.address == "object" ? (a, e) => {
301
301
  var i;
302
- const u = _(a), y = z(a);
302
+ const u = _(a), y = R(a);
303
303
  let r;
304
- return e.chainId ? r = e.chainId : e.account && e.account === y.address || e.account === void 0 ? r = y.chainId : r = u, q(a, {
304
+ return e.chainId ? r = e.chainId : e.account && e.account === y.address || e.account === void 0 ? r = y.chainId : r = u, k(a, {
305
305
  ...e,
306
306
  ...n.functionName ? { functionName: n.functionName } : {},
307
307
  address: r ? (i = n.address) == null ? void 0 : i[r] : void 0,
308
308
  abi: n.abi
309
309
  });
310
- } : (a, e) => q(a, {
310
+ } : (a, e) => k(a, {
311
311
  ...e,
312
312
  ...n.address ? { address: n.address } : {},
313
313
  ...n.functionName ? { functionName: n.functionName } : {},
@@ -2233,7 +2233,7 @@ const pe = [
2233
2233
  outputs: [{ name: "", internalType: "bool", type: "bool" }],
2234
2234
  stateMutability: "view"
2235
2235
  }
2236
- ], c = [
2236
+ ], b = [
2237
2237
  { type: "constructor", inputs: [], stateMutability: "nonpayable" },
2238
2238
  { type: "error", inputs: [], name: "AlreadyInitialized" },
2239
2239
  { type: "error", inputs: [], name: "ClaimFailed" },
@@ -3239,7 +3239,7 @@ const pe = [
3239
3239
  outputs: [
3240
3240
  {
3241
3241
  name: "",
3242
- internalType: "struct ERC20VariableCriteriaIncentive.IncentiveCriteria",
3242
+ internalType: "struct AERC20VariableCriteriaIncentive.IncentiveCriteria",
3243
3243
  type: "tuple",
3244
3244
  components: [
3245
3245
  {
@@ -3451,7 +3451,7 @@ const pe = [
3451
3451
  outputs: [],
3452
3452
  stateMutability: "payable"
3453
3453
  }
3454
- ], b = [
3454
+ ], c = [
3455
3455
  { type: "constructor", inputs: [], stateMutability: "nonpayable" },
3456
3456
  { type: "error", inputs: [], name: "AlreadyInitialized" },
3457
3457
  { type: "error", inputs: [], name: "ClaimFailed" },
@@ -3826,7 +3826,7 @@ const pe = [
3826
3826
  outputs: [],
3827
3827
  stateMutability: "payable"
3828
3828
  }
3829
- ], R = [
3829
+ ], z = [
3830
3830
  { type: "constructor", inputs: [], stateMutability: "nonpayable" },
3831
3831
  { type: "error", inputs: [], name: "CloneAlreadyInitialized" },
3832
3832
  { type: "error", inputs: [], name: "InitializerNotImplemented" },
@@ -4055,7 +4055,7 @@ const pe = [
4055
4055
  outputs: [{ name: "", internalType: "bool", type: "bool" }],
4056
4056
  stateMutability: "view"
4057
4057
  }
4058
- ], h = [
4058
+ ], I = [
4059
4059
  { type: "error", inputs: [], name: "AlreadyInitialized" },
4060
4060
  { type: "error", inputs: [], name: "CloneAlreadyInitialized" },
4061
4061
  { type: "error", inputs: [], name: "InitializerNotImplemented" },
@@ -5297,7 +5297,7 @@ const pe = [
5297
5297
  outputs: [],
5298
5298
  stateMutability: "payable"
5299
5299
  }
5300
- ], I = [
5300
+ ], h = [
5301
5301
  { type: "constructor", inputs: [], stateMutability: "nonpayable" },
5302
5302
  { type: "error", inputs: [], name: "AlreadyInitialized" },
5303
5303
  { type: "error", inputs: [], name: "CloneAlreadyInitialized" },
@@ -6090,10 +6090,10 @@ const pe = [
6090
6090
  { abi: L, functionName: "supportsInterface" }
6091
6091
  ), me = /* @__PURE__ */ t(
6092
6092
  { abi: v, functionName: "allowList" }
6093
- ), ce = /* @__PURE__ */ t({
6093
+ ), be = /* @__PURE__ */ t({
6094
6094
  abi: v,
6095
6095
  functionName: "claimed"
6096
- }), be = /* @__PURE__ */ t({
6096
+ }), ce = /* @__PURE__ */ t({
6097
6097
  abi: v,
6098
6098
  functionName: "claims"
6099
6099
  }), Te = /* @__PURE__ */ t({
@@ -6111,10 +6111,10 @@ const pe = [
6111
6111
  }), Me = /* @__PURE__ */ p({
6112
6112
  abi: v,
6113
6113
  functionName: "claim"
6114
- }), he = /* @__PURE__ */ s({
6114
+ }), Ie = /* @__PURE__ */ s({
6115
6115
  abi: v,
6116
6116
  functionName: "claim"
6117
- }), Ie = /* @__PURE__ */ t({
6117
+ }), he = /* @__PURE__ */ t({
6118
6118
  abi: d,
6119
6119
  functionName: "createBoostAuth"
6120
6120
  }), ge = /* @__PURE__ */ t({
@@ -6123,16 +6123,16 @@ const pe = [
6123
6123
  }), Oe = /* @__PURE__ */ t({
6124
6124
  abi: d,
6125
6125
  functionName: "getBoostCount"
6126
- }), Ae = /* @__PURE__ */ t({
6126
+ }), Ne = /* @__PURE__ */ t({
6127
6127
  abi: d,
6128
6128
  functionName: "protocolFee"
6129
- }), Ne = /* @__PURE__ */ t({
6129
+ }), Ae = /* @__PURE__ */ t({
6130
6130
  abi: d,
6131
6131
  functionName: "protocolFeeReceiver"
6132
- }), ze = /* @__PURE__ */ p({
6132
+ }), Re = /* @__PURE__ */ p({
6133
6133
  abi: d,
6134
6134
  functionName: "claimIncentive"
6135
- }), Re = /* @__PURE__ */ p({
6135
+ }), ze = /* @__PURE__ */ p({
6136
6136
  abi: d,
6137
6137
  functionName: "claimIncentiveFor"
6138
6138
  }), Ce = /* @__PURE__ */ p({
@@ -6153,10 +6153,10 @@ const pe = [
6153
6153
  }), De = /* @__PURE__ */ s({
6154
6154
  abi: d,
6155
6155
  functionName: "setCreateBoostAuth"
6156
- }), qe = /* @__PURE__ */ s({
6156
+ }), ke = /* @__PURE__ */ s({
6157
6157
  abi: d,
6158
6158
  functionName: "setProtocolFeeReceiver"
6159
- }), ke = /* @__PURE__ */ t({
6159
+ }), qe = /* @__PURE__ */ t({
6160
6160
  abi: M,
6161
6161
  functionName: "getBaseImplementation"
6162
6162
  }), Be = /* @__PURE__ */ t({
@@ -6181,43 +6181,43 @@ const pe = [
6181
6181
  abi: M,
6182
6182
  functionName: "register"
6183
6183
  }), Ve = /* @__PURE__ */ t({
6184
- abi: c,
6184
+ abi: b,
6185
6185
  functionName: "asset"
6186
- }), $e = /* @__PURE__ */ t({
6187
- abi: c,
6188
- functionName: "cgdaParams"
6189
6186
  }), Ze = /* @__PURE__ */ t({
6190
- abi: c,
6187
+ abi: b,
6188
+ functionName: "cgdaParams"
6189
+ }), $e = /* @__PURE__ */ t({
6190
+ abi: b,
6191
6191
  functionName: "claimed"
6192
6192
  }), Ge = /* @__PURE__ */ t({
6193
- abi: c,
6193
+ abi: b,
6194
6194
  functionName: "claims"
6195
- }), We = /* @__PURE__ */ t({
6196
- abi: c,
6197
- functionName: "currentReward"
6198
6195
  }), Qe = /* @__PURE__ */ t({
6199
- abi: c,
6196
+ abi: b,
6197
+ functionName: "currentReward"
6198
+ }), We = /* @__PURE__ */ t({
6199
+ abi: b,
6200
6200
  functionName: "isClaimable"
6201
- }), Ye = /* @__PURE__ */ t({
6202
- abi: c,
6203
- functionName: "owner"
6204
6201
  }), Je = /* @__PURE__ */ t({
6205
- abi: c,
6206
- functionName: "reward"
6202
+ abi: b,
6203
+ functionName: "owner"
6207
6204
  }), Ke = /* @__PURE__ */ t({
6208
- abi: c,
6205
+ abi: b,
6206
+ functionName: "reward"
6207
+ }), Xe = /* @__PURE__ */ t({
6208
+ abi: b,
6209
6209
  functionName: "totalBudget"
6210
- }), Xe = /* @__PURE__ */ p({
6211
- abi: c,
6210
+ }), Ye = /* @__PURE__ */ p({
6211
+ abi: b,
6212
6212
  functionName: "claim"
6213
6213
  }), et = /* @__PURE__ */ p({
6214
- abi: c,
6214
+ abi: b,
6215
6215
  functionName: "clawback"
6216
6216
  }), tt = /* @__PURE__ */ s({
6217
- abi: c,
6217
+ abi: b,
6218
6218
  functionName: "claim"
6219
6219
  }), nt = /* @__PURE__ */ s({
6220
- abi: c,
6220
+ abi: b,
6221
6221
  functionName: "clawback"
6222
6222
  }), at = /* @__PURE__ */ t({
6223
6223
  abi: l,
@@ -6251,10 +6251,10 @@ const pe = [
6251
6251
  }), mt = /* @__PURE__ */ p({
6252
6252
  abi: l,
6253
6253
  functionName: "claim"
6254
- }), ct = /* @__PURE__ */ p({
6254
+ }), bt = /* @__PURE__ */ p({
6255
6255
  abi: l,
6256
6256
  functionName: "clawback"
6257
- }), bt = /* @__PURE__ */ p({
6257
+ }), ct = /* @__PURE__ */ p({
6258
6258
  abi: l,
6259
6259
  functionName: "drawRaffle"
6260
6260
  }), Tt = /* @__PURE__ */ s(
@@ -6269,102 +6269,102 @@ const pe = [
6269
6269
  abi: ee,
6270
6270
  functionName: "getIncentiveCriteria"
6271
6271
  }), Mt = /* @__PURE__ */ t(
6272
- { abi: b, functionName: "asset" }
6273
- ), ht = /* @__PURE__ */ t({
6274
- abi: b,
6272
+ { abi: c, functionName: "asset" }
6273
+ ), It = /* @__PURE__ */ t({
6274
+ abi: c,
6275
6275
  functionName: "claimed"
6276
- }), It = /* @__PURE__ */ t({
6277
- abi: b,
6276
+ }), ht = /* @__PURE__ */ t({
6277
+ abi: c,
6278
6278
  functionName: "claims"
6279
6279
  }), gt = /* @__PURE__ */ t({
6280
- abi: b,
6280
+ abi: c,
6281
6281
  functionName: "currentReward"
6282
6282
  }), Ot = /* @__PURE__ */ t({
6283
- abi: b,
6283
+ abi: c,
6284
6284
  functionName: "isClaimable"
6285
- }), At = /* @__PURE__ */ t(
6286
- { abi: b, functionName: "limit" }
6287
- ), Nt = /* @__PURE__ */ t(
6288
- { abi: b, functionName: "owner" }
6289
- ), zt = /* @__PURE__ */ t({
6290
- abi: b,
6285
+ }), Nt = /* @__PURE__ */ t(
6286
+ { abi: c, functionName: "limit" }
6287
+ ), At = /* @__PURE__ */ t(
6288
+ { abi: c, functionName: "owner" }
6289
+ ), Rt = /* @__PURE__ */ t({
6290
+ abi: c,
6291
6291
  functionName: "reward"
6292
- }), Rt = /* @__PURE__ */ t({
6293
- abi: b,
6292
+ }), zt = /* @__PURE__ */ t({
6293
+ abi: c,
6294
6294
  functionName: "totalClaimed"
6295
6295
  }), Ct = /* @__PURE__ */ p({
6296
- abi: b,
6296
+ abi: c,
6297
6297
  functionName: "claim"
6298
6298
  }), xt = /* @__PURE__ */ p({
6299
- abi: b,
6299
+ abi: c,
6300
6300
  functionName: "clawback"
6301
6301
  }), _t = /* @__PURE__ */ s({
6302
- abi: b,
6302
+ abi: c,
6303
6303
  functionName: "claim"
6304
6304
  }), Ht = /* @__PURE__ */ s({
6305
- abi: b,
6305
+ abi: c,
6306
6306
  functionName: "clawback"
6307
6307
  }), Et = /* @__PURE__ */ t({
6308
- abi: R,
6308
+ abi: z,
6309
6309
  functionName: "getActionClaimant"
6310
6310
  }), Dt = /* @__PURE__ */ t({
6311
- abi: R,
6311
+ abi: z,
6312
6312
  functionName: "getActionSteps"
6313
- }), qt = /* @__PURE__ */ p({
6314
- abi: R,
6313
+ }), kt = /* @__PURE__ */ p({
6314
+ abi: z,
6315
6315
  functionName: "execute"
6316
- }), kt = /* @__PURE__ */ s({
6317
- abi: R,
6316
+ }), qt = /* @__PURE__ */ s({
6317
+ abi: z,
6318
6318
  functionName: "execute"
6319
6319
  }), Bt = /* @__PURE__ */ t({
6320
6320
  abi: te,
6321
6321
  functionName: "isAuthorized"
6322
6322
  }), Ft = /* @__PURE__ */ t({
6323
- abi: h,
6323
+ abi: I,
6324
6324
  functionName: "hashSignerData"
6325
6325
  }), Lt = /* @__PURE__ */ t({
6326
- abi: h,
6326
+ abi: I,
6327
6327
  functionName: "signers"
6328
6328
  }), Ut = /* @__PURE__ */ p({
6329
- abi: h,
6329
+ abi: I,
6330
6330
  functionName: "setAuthorized"
6331
6331
  }), Pt = /* @__PURE__ */ p({
6332
- abi: h,
6332
+ abi: I,
6333
6333
  functionName: "setValidatorCaller"
6334
6334
  }), St = /* @__PURE__ */ p({
6335
- abi: h,
6335
+ abi: I,
6336
6336
  functionName: "validate"
6337
6337
  }), jt = /* @__PURE__ */ s({
6338
- abi: h,
6338
+ abi: I,
6339
6339
  functionName: "setAuthorized"
6340
6340
  }), Vt = /* @__PURE__ */ s({
6341
- abi: h,
6341
+ abi: I,
6342
6342
  functionName: "setValidatorCaller"
6343
- }), $t = /* @__PURE__ */ s({
6344
- abi: h,
6343
+ }), Zt = /* @__PURE__ */ s({
6344
+ abi: I,
6345
6345
  functionName: "validate"
6346
- }), Zt = /* @__PURE__ */ t({
6346
+ }), $t = /* @__PURE__ */ t({
6347
6347
  abi: T,
6348
6348
  functionName: "available"
6349
6349
  }), Gt = /* @__PURE__ */ t({
6350
6350
  abi: T,
6351
6351
  functionName: "distributed"
6352
- }), Wt = /* @__PURE__ */ t({
6352
+ }), Qt = /* @__PURE__ */ t({
6353
6353
  abi: T,
6354
6354
  functionName: "owner"
6355
- }), Qt = /* @__PURE__ */ t({
6355
+ }), Wt = /* @__PURE__ */ t({
6356
6356
  abi: T,
6357
6357
  functionName: "total"
6358
- }), Yt = /* @__PURE__ */ p({
6358
+ }), Jt = /* @__PURE__ */ p({
6359
6359
  abi: T,
6360
6360
  functionName: "allocate"
6361
- }), Jt = /* @__PURE__ */ p({
6361
+ }), Kt = /* @__PURE__ */ p({
6362
6362
  abi: T,
6363
6363
  functionName: "clawback"
6364
- }), Kt = /* @__PURE__ */ p({
6364
+ }), Xt = /* @__PURE__ */ p({
6365
6365
  abi: T,
6366
6366
  functionName: "disburse"
6367
- }), Xt = /* @__PURE__ */ p({
6367
+ }), Yt = /* @__PURE__ */ p({
6368
6368
  abi: T,
6369
6369
  functionName: "disburseBatch"
6370
6370
  }), en = /* @__PURE__ */ s({
@@ -6405,10 +6405,10 @@ const pe = [
6405
6405
  }), mn = /* @__PURE__ */ t({
6406
6406
  abi: w,
6407
6407
  functionName: "venue"
6408
- }), cn = /* @__PURE__ */ p({
6408
+ }), bn = /* @__PURE__ */ p({
6409
6409
  abi: w,
6410
6410
  functionName: "claim"
6411
- }), bn = /* @__PURE__ */ s({
6411
+ }), cn = /* @__PURE__ */ s({
6412
6412
  abi: w,
6413
6413
  functionName: "claim"
6414
6414
  }), Tn = /* @__PURE__ */ t({
@@ -6426,10 +6426,10 @@ const pe = [
6426
6426
  }), Mn = /* @__PURE__ */ p({
6427
6427
  abi: m,
6428
6428
  functionName: "grantManyRoles"
6429
- }), hn = /* @__PURE__ */ p({
6429
+ }), In = /* @__PURE__ */ p({
6430
6430
  abi: m,
6431
6431
  functionName: "grantRoles"
6432
- }), In = /* @__PURE__ */ p({
6432
+ }), hn = /* @__PURE__ */ p({
6433
6433
  abi: m,
6434
6434
  functionName: "revokeManyRoles"
6435
6435
  }), gn = /* @__PURE__ */ p({
@@ -6438,43 +6438,43 @@ const pe = [
6438
6438
  }), On = /* @__PURE__ */ p({
6439
6439
  abi: m,
6440
6440
  functionName: "setAuthorized"
6441
- }), An = /* @__PURE__ */ s({
6441
+ }), Nn = /* @__PURE__ */ s({
6442
6442
  abi: m,
6443
6443
  functionName: "grantManyRoles"
6444
- }), Nn = /* @__PURE__ */ s({
6444
+ }), An = /* @__PURE__ */ s({
6445
6445
  abi: m,
6446
6446
  functionName: "grantRoles"
6447
- }), zn = /* @__PURE__ */ s(
6447
+ }), Rn = /* @__PURE__ */ s(
6448
6448
  { abi: m, functionName: "revokeManyRoles" }
6449
- ), Rn = /* @__PURE__ */ s({
6449
+ ), zn = /* @__PURE__ */ s({
6450
6450
  abi: m,
6451
6451
  functionName: "revokeRoles"
6452
6452
  }), Cn = /* @__PURE__ */ s({
6453
6453
  abi: m,
6454
6454
  functionName: "setAuthorized"
6455
6455
  }), xn = /* @__PURE__ */ t({
6456
- abi: I,
6456
+ abi: h,
6457
6457
  functionName: "hashSignerData"
6458
6458
  }), _n = /* @__PURE__ */ t({
6459
- abi: I,
6459
+ abi: h,
6460
6460
  functionName: "signers"
6461
6461
  }), Hn = /* @__PURE__ */ p({
6462
- abi: I,
6462
+ abi: h,
6463
6463
  functionName: "setAuthorized"
6464
6464
  }), En = /* @__PURE__ */ p({
6465
- abi: I,
6465
+ abi: h,
6466
6466
  functionName: "setValidatorCaller"
6467
6467
  }), Dn = /* @__PURE__ */ p({
6468
- abi: I,
6468
+ abi: h,
6469
6469
  functionName: "validate"
6470
- }), qn = /* @__PURE__ */ s({
6471
- abi: I,
6472
- functionName: "setAuthorized"
6473
6470
  }), kn = /* @__PURE__ */ s({
6474
- abi: I,
6471
+ abi: h,
6472
+ functionName: "setAuthorized"
6473
+ }), qn = /* @__PURE__ */ s({
6474
+ abi: h,
6475
6475
  functionName: "setValidatorCaller"
6476
6476
  }), Bn = /* @__PURE__ */ s({
6477
- abi: I,
6477
+ abi: h,
6478
6478
  functionName: "validate"
6479
6479
  }), Fn = /* @__PURE__ */ t({
6480
6480
  abi: C,
@@ -6498,46 +6498,46 @@ const pe = [
6498
6498
  functionName: "setDenied"
6499
6499
  });
6500
6500
  export {
6501
- Wt as $,
6502
- ke as A,
6503
- de as B,
6504
- Rn as C,
6505
- Be as D,
6506
- h as E,
6507
- Ue as F,
6508
- Se as G,
6509
- le as H,
6510
- sn as I,
6511
- en as J,
6512
- Yt as K,
6513
- Fe as L,
6514
- re as M,
6515
- An as N,
6516
- v as O,
6517
- tn as P,
6518
- Jt as Q,
6519
- m as R,
6520
- ne as S,
6521
- d as T,
6522
- je as U,
6523
- Le as V,
6524
- ye as W,
6525
- nn as X,
6526
- Kt as Y,
6527
- an as Z,
6528
- Xt as _,
6529
- pe as a,
6501
+ Pe as $,
6502
+ d as A,
6503
+ Rn as B,
6504
+ v as C,
6505
+ qe as D,
6506
+ An as E,
6507
+ Be as F,
6508
+ sn as G,
6509
+ en as H,
6510
+ hn as I,
6511
+ ye as J,
6512
+ Jt as K,
6513
+ tn as L,
6514
+ E as M,
6515
+ gn as N,
6516
+ m as O,
6517
+ Le as P,
6518
+ Kt as Q,
6519
+ re as R,
6520
+ h as S,
6521
+ w as T,
6522
+ nn as U,
6523
+ ne as V,
6524
+ Se as W,
6525
+ Xt as X,
6526
+ an as Y,
6527
+ Yt as Z,
6528
+ Qt as _,
6529
+ Cn as a,
6530
6530
  un as a$,
6531
- Qt as a0,
6532
- Zt as a1,
6531
+ Wt as a0,
6532
+ $t as a1,
6533
6533
  Gt as a2,
6534
6534
  we as a3,
6535
- be as a4,
6535
+ ce as a4,
6536
6536
  ve as a5,
6537
- ce as a6,
6537
+ be as a6,
6538
6538
  me as a7,
6539
6539
  fe as a8,
6540
- he as a9,
6540
+ Ie as a9,
6541
6541
  at as aA,
6542
6542
  dt as aB,
6543
6543
  lt as aC,
@@ -6546,19 +6546,19 @@ export {
6546
6546
  Tt as aF,
6547
6547
  mt as aG,
6548
6548
  ft as aH,
6549
- ct as aI,
6549
+ bt as aI,
6550
6550
  ut as aJ,
6551
6551
  wt as aK,
6552
- bt as aL,
6552
+ ct as aL,
6553
6553
  vt as aM,
6554
- Nt as aN,
6555
- Rt as aO,
6554
+ At as aN,
6555
+ zt as aO,
6556
6556
  gt as aP,
6557
- It as aQ,
6558
- ht as aR,
6557
+ ht as aQ,
6558
+ It as aR,
6559
6559
  Mt as aS,
6560
- zt as aT,
6561
- At as aU,
6560
+ Rt as aT,
6561
+ Nt as aU,
6562
6562
  _t as aV,
6563
6563
  Ct as aW,
6564
6564
  Ht as aX,
@@ -6574,91 +6574,91 @@ export {
6574
6574
  Sn as ag,
6575
6575
  Vn as ah,
6576
6576
  jn as ai,
6577
- Ye as aj,
6577
+ Je as aj,
6578
6578
  Ge as ak,
6579
- Je as al,
6580
- Ze as am,
6579
+ Ke as al,
6580
+ $e as am,
6581
6581
  Ve as an,
6582
- $e as ao,
6583
- Ke as ap,
6582
+ Ze as ao,
6583
+ Xe as ap,
6584
6584
  tt as aq,
6585
- Xe as ar,
6585
+ Ye as ar,
6586
6586
  nt as as,
6587
6587
  et as at,
6588
- Qe as au,
6589
- We as av,
6588
+ We as au,
6589
+ Qe as av,
6590
6590
  ot as aw,
6591
6591
  pt as ax,
6592
6592
  st as ay,
6593
6593
  it as az,
6594
- c as b,
6594
+ ee as b,
6595
6595
  ln as b0,
6596
6596
  pn as b1,
6597
6597
  mn as b2,
6598
6598
  on as b3,
6599
6599
  dn as b4,
6600
- bn as b5,
6601
- cn as b6,
6600
+ cn as b5,
6601
+ bn as b6,
6602
6602
  yn as b7,
6603
6603
  _n as b8,
6604
6604
  xn as b9,
6605
6605
  Bt as bA,
6606
- Ie as bB,
6606
+ he as bB,
6607
6607
  De as bC,
6608
6608
  Ce as bD,
6609
- Ae as bE,
6610
- Ne as bF,
6611
- qe as bG,
6609
+ Ne as bE,
6610
+ Ae as bF,
6611
+ ke as bG,
6612
6612
  xe as bH,
6613
6613
  Bn as ba,
6614
6614
  Dn as bb,
6615
- qn as bc,
6615
+ kn as bc,
6616
6616
  Hn as bd,
6617
- kn as be,
6617
+ qn as be,
6618
6618
  En as bf,
6619
6619
  Lt as bg,
6620
6620
  Ft as bh,
6621
- $t as bi,
6621
+ Zt as bi,
6622
6622
  St as bj,
6623
6623
  jt as bk,
6624
6624
  Ut as bl,
6625
6625
  Vt as bm,
6626
6626
  Pt as bn,
6627
- R as bo,
6627
+ z as bo,
6628
6628
  Dt as bp,
6629
6629
  Et as bq,
6630
- kt as br,
6631
- qt as bs,
6630
+ qt as br,
6631
+ kt as bs,
6632
6632
  Ee as bt,
6633
6633
  _e as bu,
6634
- ze as bv,
6634
+ Re as bv,
6635
6635
  He as bw,
6636
- Re as bx,
6636
+ ze as bx,
6637
6637
  ge as by,
6638
6638
  Oe as bz,
6639
6639
  ue as c,
6640
6640
  T as d,
6641
- Cn as e,
6641
+ In as e,
6642
6642
  b as f,
6643
- E as g,
6644
- C as h,
6645
- Nn as i,
6646
- hn as j,
6647
- gn as k,
6643
+ C as g,
6644
+ On as h,
6645
+ pe as i,
6646
+ zn as j,
6647
+ Nn as k,
6648
6648
  Mn as l,
6649
- ee as m,
6650
- zn as n,
6651
- In as o,
6652
- vn as p,
6653
- fn as q,
6654
- M as r,
6655
- wn as s,
6656
- Tn as t,
6657
- oe as u,
6658
- On as v,
6659
- w,
6660
- I as x,
6649
+ vn as m,
6650
+ Tn as n,
6651
+ M as o,
6652
+ fn as p,
6653
+ oe as q,
6654
+ de as r,
6655
+ je as s,
6656
+ Ue as t,
6657
+ wn as u,
6658
+ c as v,
6659
+ Fe as w,
6660
+ le as x,
6661
6661
  l as y,
6662
- Pe as z
6662
+ I as z
6663
6663
  };
6664
- //# sourceMappingURL=generated-BAKNSOjJ.js.map
6664
+ //# sourceMappingURL=generated-Dz_g2mFT.js.map