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

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 +7 -7
  6. package/dist/Actions/EventAction.d.ts.map +1 -1
  7. package/dist/Actions/EventAction.js +180 -166
  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 +101 -18
  75. package/src/Actions/EventAction.ts +49 -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,128 +1,128 @@
1
- import { bo as O, bp as $, bq as J, br as V, bs as Z } from "../generated-BAKNSOjJ.js";
2
- import { getTransaction as N, getTransactionReceipt as k } from "@wagmi/core";
3
- import { isAddressEqual as E, decodeEventLog as H, decodeFunctionData as Y, isAddress as F, fromHex as x, zeroHash as R, encodeAbiParameters as f0, zeroAddress as e0 } from "viem";
1
+ import { bo as M, bp as $, bq as J, br as V, bs as Z } from "../generated-Dz_g2mFT.js";
2
+ import { getTransaction as S, getTransactionReceipt as O } from "@wagmi/core";
3
+ import { isAddressEqual as I, decodeEventLog as H, decodeFunctionData as j, isAddress as F, fromHex as B, zeroHash as P, encodeAbiParameters as f0, zeroAddress as e0 } from "viem";
4
4
  import { e as t0 } from "../deployments-Ccx1MtoK.js";
5
5
  import { DeployableTarget as b0 } from "../Deployable/DeployableTarget.js";
6
- import { ValidationAbiMissingError as _, FunctionDataDecodeError as j, UnparseableAbiParamError as n0, UnrecognizedFilterTypeError as a0, FieldValueNotComparableError as G, InvalidNumericalCriteriaError as K, DecodedArgsMalformedError as i0, FieldValueUndefinedError as W, NoEventActionStepsProvidedError as s0, TooManyEventActionStepsProvidedError as r0 } from "../errors.js";
7
- import { RegistryType as d0, CheatCodes as v } from "../utils.js";
8
- const c0 = "0x60a0604052348015600e575f80fd5b50601b601f60201b60201c565b60b0565b5f602c608760201b60201c565b90508054600181161560455763f92ee8a95f526004601cfd5b8160c01c808260011c146082578060011b8355806020527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2602080a15b505050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbf6011325f1b905090565b60805161231a6100c85f395f61034a015261231a5ff3fe608060405260043610610090575f3560e01c80639bc1cf81116100585780639bc1cf811461017d578063c26624e8146101a7578063d7768c47146101e3578063dbdf21101461021f578063ddd6ab081461024957610090565b806301ffc9a71461009457806309c5eabe146100d057806328d6183b14610101578063393df8cb1461012b578063439fab9114610155575b5f80fd5b34801561009f575f80fd5b506100ba60048036038101906100b59190611333565b610273565b6040516100c79190611378565b60405180910390f35b6100ea60048036038101906100e591906113f2565b6102ec565b6040516100f89291906114ad565b60405180910390f35b34801561010c575f80fd5b50610115610321565b60405161012291906114ea565b60405180910390f35b348015610136575f80fd5b5061013f610348565b60405161014c919061157d565b60405180910390f35b348015610160575f80fd5b5061017b600480360381019061017691906113f2565b61036c565b005b348015610188575f80fd5b506101916103f9565b60405161019e91906118e9565b60405180910390f35b3480156101b2575f80fd5b506101cd60048036038101906101c89190611933565b610648565b6040516101da91906119e4565b60405180910390f35b3480156101ee575f80fd5b50610209600480360381019061020491906113f2565b610875565b6040516102169190611a04565b60405180910390f35b34801561022a575f80fd5b506102336108a9565b6040516102409190611a8a565b60405180910390f35b348015610254575f80fd5b5061025d610981565b60405161026a9190611ab2565b60405180910390f35b5f7f7687b0ed000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806102e557506102e48261098d565b5b9050919050565b5f60606040517fd623472500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f7f7687b0ed00000000000000000000000000000000000000000000000000000000905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f610375610a06565b905080546003825580156103a75760018160011c14303b1061039e5763f92ee8a95f526004601cfd5b818160ff1b1b91505b506103bf83838101906103ba9190611fb0565b610a2f565b80156103f4576002815560016020527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2602080a15b505050565b60606004805480602002602001604051908101604052809291908181526020015f905b8282101561063f578382905f5260205f2090600502016040518060c00160405290815f8201548152602001600182015f9054906101000a900460ff16600181111561046a576104696115d7565b5b600181111561047c5761047b6115d7565b5b81526020016001820160019054906101000a900460ff1660ff1660ff1681526020016001820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160028201548152602001600382016040518060800160405290815f82015f9054906101000a900460ff1660058111156105305761052f6115d7565b5b6005811115610542576105416115d7565b5b81526020015f820160019054906101000a900460ff16600381111561056a576105696115d7565b5b600381111561057c5761057b6115d7565b5b81526020015f820160029054906101000a900460ff1660ff1660ff1681526020016001820180546105ac90612024565b80601f01602080910402602001604051908101604052809291908181526020018280546105d890612024565b80156106235780601f106105fa57610100808354040283529160200191610623565b820191905f5260205f20905b81548152906001019060200180831161060657829003601f168201915b505050505081525050815250508152602001906001019061041c565b50505050905090565b6106506111c4565b6004828154811061066457610663612054565b5b905f5260205f2090600502016040518060c00160405290815f8201548152602001600182015f9054906101000a900460ff1660018111156106a8576106a76115d7565b5b60018111156106ba576106b96115d7565b5b81526020016001820160019054906101000a900460ff1660ff1660ff1681526020016001820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160028201548152602001600382016040518060800160405290815f82015f9054906101000a900460ff16600581111561076e5761076d6115d7565b5b60058111156107805761077f6115d7565b5b81526020015f820160019054906101000a900460ff1660038111156107a8576107a76115d7565b5b60038111156107ba576107b96115d7565b5b81526020015f820160029054906101000a900460ff1660ff1660ff1681526020016001820180546107ea90612024565b80601f016020809104026020016040519081016040528092919081815260200182805461081690612024565b80156108615780601f1061083857610100808354040283529160200191610861565b820191905f5260205f20905b81548152906001019060200180831161084457829003601f168201915b505050505081525050815250509050919050565b60606040517fd623472500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108b1611229565b5f6040518060a00160405290815f82015f9054906101000a900460ff1660018111156108e0576108df6115d7565b5b60018111156108f2576108f16115d7565b5b815260200160018201548152602001600282015f9054906101000a900460ff1660ff1660ff1681526020016002820160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481525050905090565b5f600480549050905090565b5f7fe6715795000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ff57506109fe826110be565b5b9050919050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbf6011325f1b905090565b610a37611137565b805f01515f80820151815f015f6101000a81548160ff02191690836001811115610a6457610a636115d7565b5b0217905550602082015181600101556040820151816002015f6101000a81548160ff021916908360ff16021790555060608201518160020160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506080820151816003015590505060048160200151908060018154018082558091505060019003905f5260205f2090600502015f909190919091505f820151815f01556020820151816001015f6101000a81548160ff02191690836001811115610b4657610b456115d7565b5b021790555060408201518160010160016101000a81548160ff021916908360ff16021790555060608201518160010160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506080820151816002015560a0820151816003015f820151815f015f6101000a81548160ff02191690836005811115610bee57610bed6115d7565b5b02179055506020820151815f0160016101000a81548160ff02191690836003811115610c1d57610c1c6115d7565b5b02179055506040820151815f0160026101000a81548160ff021916908360ff1602179055506060820151816001019081610c579190612215565b505050505060048160400151908060018154018082558091505060019003905f5260205f2090600502015f909190919091505f820151815f01556020820151816001015f6101000a81548160ff02191690836001811115610cbb57610cba6115d7565b5b021790555060408201518160010160016101000a81548160ff021916908360ff16021790555060608201518160010160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506080820151816002015560a0820151816003015f820151815f015f6101000a81548160ff02191690836005811115610d6357610d626115d7565b5b02179055506020820151815f0160016101000a81548160ff02191690836003811115610d9257610d916115d7565b5b02179055506040820151815f0160026101000a81548160ff021916908360ff1602179055506060820151816001019081610dcc9190612215565b505050505060048160600151908060018154018082558091505060019003905f5260205f2090600502015f909190919091505f820151815f01556020820151816001015f6101000a81548160ff02191690836001811115610e3057610e2f6115d7565b5b021790555060408201518160010160016101000a81548160ff021916908360ff16021790555060608201518160010160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506080820151816002015560a0820151816003015f820151815f015f6101000a81548160ff02191690836005811115610ed857610ed76115d7565b5b02179055506020820151815f0160016101000a81548160ff02191690836003811115610f0757610f066115d7565b5b02179055506040820151815f0160026101000a81548160ff021916908360ff1602179055506060820151816001019081610f419190612215565b505050505060048160800151908060018154018082558091505060019003905f5260205f2090600502015f909190919091505f820151815f01556020820151816001015f6101000a81548160ff02191690836001811115610fa557610fa46115d7565b5b021790555060408201518160010160016101000a81548160ff021916908360ff16021790555060608201518160010160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506080820151816002015560a0820151816003015f820151815f015f6101000a81548160ff0219169083600581111561104d5761104c6115d7565b5b02179055506020820151815f0160016101000a81548160ff0219169083600381111561107c5761107b6115d7565b5b02179055506040820151815f0160026101000a81548160ff021916908360ff16021790555060608201518160010190816110b69190612215565b505050505050565b5f7f6ab67a0d000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611130575061112f8261115b565b5b9050919050565b5f611140610a06565b905080546001166111585763d7e6bcf85f526004601cfd5b50565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6040518060c001604052805f80191681526020015f60018111156111eb576111ea6115d7565b5b81526020015f60ff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f8152602001611223611281565b81525090565b6040518060a001604052805f6001811115611247576112466115d7565b5b81526020015f80191681526020015f60ff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81525090565b60405180608001604052805f600581111561129f5761129e6115d7565b5b81526020015f60038111156112b7576112b66115d7565b5b81526020015f60ff168152602001606081525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611312816112de565b811461131c575f80fd5b50565b5f8135905061132d81611309565b92915050565b5f60208284031215611348576113476112d6565b5b5f6113558482850161131f565b91505092915050565b5f8115159050919050565b6113728161135e565b82525050565b5f60208201905061138b5f830184611369565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126113b2576113b1611391565b5b8235905067ffffffffffffffff8111156113cf576113ce611395565b5b6020830191508360018202830111156113eb576113ea611399565b5b9250929050565b5f8060208385031215611408576114076112d6565b5b5f83013567ffffffffffffffff811115611425576114246112da565b5b6114318582860161139d565b92509250509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61147f8261143d565b6114898185611447565b9350611499818560208601611457565b6114a281611465565b840191505092915050565b5f6040820190506114c05f830185611369565b81810360208301526114d28184611475565b90509392505050565b6114e4816112de565b82525050565b5f6020820190506114fd5f8301846114db565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f819050919050565b5f61154561154061153b84611503565b611522565b611503565b9050919050565b5f6115568261152b565b9050919050565b5f6115678261154c565b9050919050565b6115778161155d565b82525050565b5f6020820190506115905f83018461156e565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f819050919050565b6115d1816115bf565b82525050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b60028110611615576116146115d7565b5b50565b5f81905061162582611604565b919050565b5f61163482611618565b9050919050565b6116448161162a565b82525050565b5f60ff82169050919050565b61165f8161164a565b82525050565b5f61166f82611503565b9050919050565b61167f81611665565b82525050565b5f819050919050565b61169781611685565b82525050565b600681106116ae576116ad6115d7565b5b50565b5f8190506116be8261169d565b919050565b5f6116cd826116b1565b9050919050565b6116dd816116c3565b82525050565b600481106116f4576116f36115d7565b5b50565b5f819050611704826116e3565b919050565b5f611713826116f7565b9050919050565b61172381611709565b82525050565b5f82825260208201905092915050565b5f6117438261143d565b61174d8185611729565b935061175d818560208601611457565b61176681611465565b840191505092915050565b5f608083015f8301516117865f8601826116d4565b506020830151611799602086018261171a565b5060408301516117ac6040860182611656565b50606083015184820360608601526117c48282611739565b9150508091505092915050565b5f60c083015f8301516117e65f8601826115c8565b5060208301516117f9602086018261163b565b50604083015161180c6040860182611656565b50606083015161181f6060860182611676565b506080830151611832608086018261168e565b5060a083015184820360a086015261184a8282611771565b9150508091505092915050565b5f61186283836117d1565b905092915050565b5f602082019050919050565b5f61188082611596565b61188a81856115a0565b93508360208202850161189c856115b0565b805f5b858110156118d757848403895281516118b88582611857565b94506118c38361186a565b925060208a0199505060018101905061189f565b50829750879550505050505092915050565b5f6020820190508181035f8301526119018184611876565b905092915050565b61191281611685565b811461191c575f80fd5b50565b5f8135905061192d81611909565b92915050565b5f60208284031215611948576119476112d6565b5b5f6119558482850161191f565b91505092915050565b5f60c083015f8301516119735f8601826115c8565b506020830151611986602086018261163b565b5060408301516119996040860182611656565b5060608301516119ac6060860182611676565b5060808301516119bf608086018261168e565b5060a083015184820360a08601526119d78282611771565b9150508091505092915050565b5f6020820190508181035f8301526119fc818461195e565b905092915050565b5f6020820190508181035f830152611a1c8184611475565b905092915050565b60a082015f820151611a385f85018261163b565b506020820151611a4b60208501826115c8565b506040820151611a5e6040850182611656565b506060820151611a716060850182611676565b506080820151611a84608085018261168e565b50505050565b5f60a082019050611a9d5f830184611a24565b92915050565b611aac81611685565b82525050565b5f602082019050611ac55f830184611aa3565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b0582611465565b810181811067ffffffffffffffff82111715611b2457611b23611acf565b5b80604052505050565b5f611b366112cd565b9050611b428282611afc565b919050565b5f80fd5b60028110611b57575f80fd5b50565b5f81359050611b6881611b4b565b92915050565b611b77816115bf565b8114611b81575f80fd5b50565b5f81359050611b9281611b6e565b92915050565b611ba18161164a565b8114611bab575f80fd5b50565b5f81359050611bbc81611b98565b92915050565b611bcb81611665565b8114611bd5575f80fd5b50565b5f81359050611be681611bc2565b92915050565b5f60a08284031215611c0157611c00611acb565b5b611c0b60a0611b2d565b90505f611c1a84828501611b5a565b5f830152506020611c2d84828501611b84565b6020830152506040611c4184828501611bae565b6040830152506060611c5584828501611bd8565b6060830152506080611c698482850161191f565b60808301525092915050565b60068110611c81575f80fd5b50565b5f81359050611c9281611c75565b92915050565b60048110611ca4575f80fd5b50565b5f81359050611cb581611c98565b92915050565b5f80fd5b5f67ffffffffffffffff821115611cd957611cd8611acf565b5b611ce282611465565b9050602081019050919050565b828183375f83830152505050565b5f611d0f611d0a84611cbf565b611b2d565b905082815260208101848484011115611d2b57611d2a611cbb565b5b611d36848285611cef565b509392505050565b5f82601f830112611d5257611d51611391565b5b8135611d62848260208601611cfd565b91505092915050565b5f60808284031215611d8057611d7f611acb565b5b611d8a6080611b2d565b90505f611d9984828501611c84565b5f830152506020611dac84828501611ca7565b6020830152506040611dc084828501611bae565b604083015250606082013567ffffffffffffffff811115611de457611de3611b47565b5b611df084828501611d3e565b60608301525092915050565b5f60c08284031215611e1157611e10611acb565b5b611e1b60c0611b2d565b90505f611e2a84828501611b84565b5f830152506020611e3d84828501611b5a565b6020830152506040611e5184828501611bae565b6040830152506060611e6584828501611bd8565b6060830152506080611e798482850161191f565b60808301525060a082013567ffffffffffffffff811115611e9d57611e9c611b47565b5b611ea984828501611d6b565b60a08301525092915050565b5f6101208284031215611ecb57611eca611acb565b5b611ed560a0611b2d565b90505f611ee484828501611bec565b5f8301525060a082013567ffffffffffffffff811115611f0757611f06611b47565b5b611f1384828501611dfc565b60208301525060c082013567ffffffffffffffff811115611f3757611f36611b47565b5b611f4384828501611dfc565b60408301525060e082013567ffffffffffffffff811115611f6757611f66611b47565b5b611f7384828501611dfc565b60608301525061010082013567ffffffffffffffff811115611f9857611f97611b47565b5b611fa484828501611dfc565b60808301525092915050565b5f60208284031215611fc557611fc46112d6565b5b5f82013567ffffffffffffffff811115611fe257611fe16112da565b5b611fee84828501611eb5565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061203b57607f821691505b60208210810361204e5761204d611ff7565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026120dd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826120a2565b6120e786836120a2565b95508019841693508086168417925050509392505050565b5f61211961211461210f84611685565b611522565b611685565b9050919050565b5f819050919050565b612132836120ff565b61214661213e82612120565b8484546120ae565b825550505050565b5f90565b61215a61214e565b612165818484612129565b505050565b5b818110156121885761217d5f82612152565b60018101905061216b565b5050565b601f8211156121cd5761219e81612081565b6121a784612093565b810160208510156121b6578190505b6121ca6121c285612093565b83018261216a565b50505b505050565b5f82821c905092915050565b5f6121ed5f19846008026121d2565b1980831691505092915050565b5f61220583836121de565b9150826002028217905092915050565b61221e8261143d565b67ffffffffffffffff81111561223757612236611acf565b5b6122418254612024565b61224c82828561218c565b5f60209050601f83116001811461227d575f841561226b578287015190505b61227585826121fa565b8655506122dc565b601f19841661228b86612081565b5f5b828110156122b25784890151825560018201915060208501945060208101905061228d565b868310156122cf57848901516122cb601f8916826121de565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220c09de9dc8770d5af6b81846a782092789609bf9d57e917b598897703755b10a864736f6c634300081a0033", g = Symbol.for("@ts-pattern/matcher"), o0 = Symbol.for("@ts-pattern/isVariadic"), D = "@ts-pattern/anonymous-select-key", U = (t) => !!(t && typeof t == "object"), P = (t) => t && !!t[g], p = (t, f, e) => {
9
- if (P(t)) {
10
- const b = t[g](), { matched: n, selections: a } = b.match(f);
6
+ import { ValidationAbiMissingError as x, FunctionDataDecodeError as G, UnparseableAbiParamError as n0, UnrecognizedFilterTypeError as a0, FieldValueNotComparableError as Y, InvalidNumericalCriteriaError as K, DecodedArgsMalformedError as i0, FieldValueUndefinedError as X, NoEventActionStepsProvidedError as r0, TooManyEventActionStepsProvidedError as o0 } from "../errors.js";
7
+ import { RegistryType as s0, CheatCodes as N } from "../utils.js";
8
+ const d0 = "0x60a0604052348015600e575f80fd5b50601b601f60201b60201c565b60b0565b5f602c608760201b60201c565b90508054600181161560455763f92ee8a95f526004601cfd5b8160c01c808260011c146082578060011b8355806020527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2602080a15b505050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbf6011325f1b905090565b60805161231a6100c85f395f61034a015261231a5ff3fe608060405260043610610090575f3560e01c80639bc1cf81116100585780639bc1cf811461017d578063c26624e8146101a7578063d7768c47146101e3578063dbdf21101461021f578063ddd6ab081461024957610090565b806301ffc9a71461009457806309c5eabe146100d057806328d6183b14610101578063393df8cb1461012b578063439fab9114610155575b5f80fd5b34801561009f575f80fd5b506100ba60048036038101906100b59190611333565b610273565b6040516100c79190611378565b60405180910390f35b6100ea60048036038101906100e591906113f2565b6102ec565b6040516100f89291906114ad565b60405180910390f35b34801561010c575f80fd5b50610115610321565b60405161012291906114ea565b60405180910390f35b348015610136575f80fd5b5061013f610348565b60405161014c919061157d565b60405180910390f35b348015610160575f80fd5b5061017b600480360381019061017691906113f2565b61036c565b005b348015610188575f80fd5b506101916103f9565b60405161019e91906118e9565b60405180910390f35b3480156101b2575f80fd5b506101cd60048036038101906101c89190611933565b610648565b6040516101da91906119e4565b60405180910390f35b3480156101ee575f80fd5b50610209600480360381019061020491906113f2565b610875565b6040516102169190611a04565b60405180910390f35b34801561022a575f80fd5b506102336108a9565b6040516102409190611a8a565b60405180910390f35b348015610254575f80fd5b5061025d610981565b60405161026a9190611ab2565b60405180910390f35b5f7f7687b0ed000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806102e557506102e48261098d565b5b9050919050565b5f60606040517fd623472500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f7f7687b0ed00000000000000000000000000000000000000000000000000000000905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f610375610a06565b905080546003825580156103a75760018160011c14303b1061039e5763f92ee8a95f526004601cfd5b818160ff1b1b91505b506103bf83838101906103ba9190611fb0565b610a2f565b80156103f4576002815560016020527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2602080a15b505050565b60606004805480602002602001604051908101604052809291908181526020015f905b8282101561063f578382905f5260205f2090600502016040518060c00160405290815f8201548152602001600182015f9054906101000a900460ff16600181111561046a576104696115d7565b5b600181111561047c5761047b6115d7565b5b81526020016001820160019054906101000a900460ff1660ff1660ff1681526020016001820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160028201548152602001600382016040518060800160405290815f82015f9054906101000a900460ff1660058111156105305761052f6115d7565b5b6005811115610542576105416115d7565b5b81526020015f820160019054906101000a900460ff16600381111561056a576105696115d7565b5b600381111561057c5761057b6115d7565b5b81526020015f820160029054906101000a900460ff1660ff1660ff1681526020016001820180546105ac90612024565b80601f01602080910402602001604051908101604052809291908181526020018280546105d890612024565b80156106235780601f106105fa57610100808354040283529160200191610623565b820191905f5260205f20905b81548152906001019060200180831161060657829003601f168201915b505050505081525050815250508152602001906001019061041c565b50505050905090565b6106506111c4565b6004828154811061066457610663612054565b5b905f5260205f2090600502016040518060c00160405290815f8201548152602001600182015f9054906101000a900460ff1660018111156106a8576106a76115d7565b5b60018111156106ba576106b96115d7565b5b81526020016001820160019054906101000a900460ff1660ff1660ff1681526020016001820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160028201548152602001600382016040518060800160405290815f82015f9054906101000a900460ff16600581111561076e5761076d6115d7565b5b60058111156107805761077f6115d7565b5b81526020015f820160019054906101000a900460ff1660038111156107a8576107a76115d7565b5b60038111156107ba576107b96115d7565b5b81526020015f820160029054906101000a900460ff1660ff1660ff1681526020016001820180546107ea90612024565b80601f016020809104026020016040519081016040528092919081815260200182805461081690612024565b80156108615780601f1061083857610100808354040283529160200191610861565b820191905f5260205f20905b81548152906001019060200180831161084457829003601f168201915b505050505081525050815250509050919050565b60606040517fd623472500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108b1611229565b5f6040518060a00160405290815f82015f9054906101000a900460ff1660018111156108e0576108df6115d7565b5b60018111156108f2576108f16115d7565b5b815260200160018201548152602001600282015f9054906101000a900460ff1660ff1660ff1681526020016002820160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481525050905090565b5f600480549050905090565b5f7fe6715795000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ff57506109fe826110be565b5b9050919050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbf6011325f1b905090565b610a37611137565b805f01515f80820151815f015f6101000a81548160ff02191690836001811115610a6457610a636115d7565b5b0217905550602082015181600101556040820151816002015f6101000a81548160ff021916908360ff16021790555060608201518160020160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506080820151816003015590505060048160200151908060018154018082558091505060019003905f5260205f2090600502015f909190919091505f820151815f01556020820151816001015f6101000a81548160ff02191690836001811115610b4657610b456115d7565b5b021790555060408201518160010160016101000a81548160ff021916908360ff16021790555060608201518160010160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506080820151816002015560a0820151816003015f820151815f015f6101000a81548160ff02191690836005811115610bee57610bed6115d7565b5b02179055506020820151815f0160016101000a81548160ff02191690836003811115610c1d57610c1c6115d7565b5b02179055506040820151815f0160026101000a81548160ff021916908360ff1602179055506060820151816001019081610c579190612215565b505050505060048160400151908060018154018082558091505060019003905f5260205f2090600502015f909190919091505f820151815f01556020820151816001015f6101000a81548160ff02191690836001811115610cbb57610cba6115d7565b5b021790555060408201518160010160016101000a81548160ff021916908360ff16021790555060608201518160010160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506080820151816002015560a0820151816003015f820151815f015f6101000a81548160ff02191690836005811115610d6357610d626115d7565b5b02179055506020820151815f0160016101000a81548160ff02191690836003811115610d9257610d916115d7565b5b02179055506040820151815f0160026101000a81548160ff021916908360ff1602179055506060820151816001019081610dcc9190612215565b505050505060048160600151908060018154018082558091505060019003905f5260205f2090600502015f909190919091505f820151815f01556020820151816001015f6101000a81548160ff02191690836001811115610e3057610e2f6115d7565b5b021790555060408201518160010160016101000a81548160ff021916908360ff16021790555060608201518160010160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506080820151816002015560a0820151816003015f820151815f015f6101000a81548160ff02191690836005811115610ed857610ed76115d7565b5b02179055506020820151815f0160016101000a81548160ff02191690836003811115610f0757610f066115d7565b5b02179055506040820151815f0160026101000a81548160ff021916908360ff1602179055506060820151816001019081610f419190612215565b505050505060048160800151908060018154018082558091505060019003905f5260205f2090600502015f909190919091505f820151815f01556020820151816001015f6101000a81548160ff02191690836001811115610fa557610fa46115d7565b5b021790555060408201518160010160016101000a81548160ff021916908360ff16021790555060608201518160010160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506080820151816002015560a0820151816003015f820151815f015f6101000a81548160ff0219169083600581111561104d5761104c6115d7565b5b02179055506020820151815f0160016101000a81548160ff0219169083600381111561107c5761107b6115d7565b5b02179055506040820151815f0160026101000a81548160ff021916908360ff16021790555060608201518160010190816110b69190612215565b505050505050565b5f7f6ab67a0d000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611130575061112f8261115b565b5b9050919050565b5f611140610a06565b905080546001166111585763d7e6bcf85f526004601cfd5b50565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6040518060c001604052805f80191681526020015f60018111156111eb576111ea6115d7565b5b81526020015f60ff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f8152602001611223611281565b81525090565b6040518060a001604052805f6001811115611247576112466115d7565b5b81526020015f80191681526020015f60ff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81525090565b60405180608001604052805f600581111561129f5761129e6115d7565b5b81526020015f60038111156112b7576112b66115d7565b5b81526020015f60ff168152602001606081525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611312816112de565b811461131c575f80fd5b50565b5f8135905061132d81611309565b92915050565b5f60208284031215611348576113476112d6565b5b5f6113558482850161131f565b91505092915050565b5f8115159050919050565b6113728161135e565b82525050565b5f60208201905061138b5f830184611369565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126113b2576113b1611391565b5b8235905067ffffffffffffffff8111156113cf576113ce611395565b5b6020830191508360018202830111156113eb576113ea611399565b5b9250929050565b5f8060208385031215611408576114076112d6565b5b5f83013567ffffffffffffffff811115611425576114246112da565b5b6114318582860161139d565b92509250509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61147f8261143d565b6114898185611447565b9350611499818560208601611457565b6114a281611465565b840191505092915050565b5f6040820190506114c05f830185611369565b81810360208301526114d28184611475565b90509392505050565b6114e4816112de565b82525050565b5f6020820190506114fd5f8301846114db565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f819050919050565b5f61154561154061153b84611503565b611522565b611503565b9050919050565b5f6115568261152b565b9050919050565b5f6115678261154c565b9050919050565b6115778161155d565b82525050565b5f6020820190506115905f83018461156e565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f819050919050565b6115d1816115bf565b82525050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b60028110611615576116146115d7565b5b50565b5f81905061162582611604565b919050565b5f61163482611618565b9050919050565b6116448161162a565b82525050565b5f60ff82169050919050565b61165f8161164a565b82525050565b5f61166f82611503565b9050919050565b61167f81611665565b82525050565b5f819050919050565b61169781611685565b82525050565b600681106116ae576116ad6115d7565b5b50565b5f8190506116be8261169d565b919050565b5f6116cd826116b1565b9050919050565b6116dd816116c3565b82525050565b600481106116f4576116f36115d7565b5b50565b5f819050611704826116e3565b919050565b5f611713826116f7565b9050919050565b61172381611709565b82525050565b5f82825260208201905092915050565b5f6117438261143d565b61174d8185611729565b935061175d818560208601611457565b61176681611465565b840191505092915050565b5f608083015f8301516117865f8601826116d4565b506020830151611799602086018261171a565b5060408301516117ac6040860182611656565b50606083015184820360608601526117c48282611739565b9150508091505092915050565b5f60c083015f8301516117e65f8601826115c8565b5060208301516117f9602086018261163b565b50604083015161180c6040860182611656565b50606083015161181f6060860182611676565b506080830151611832608086018261168e565b5060a083015184820360a086015261184a8282611771565b9150508091505092915050565b5f61186283836117d1565b905092915050565b5f602082019050919050565b5f61188082611596565b61188a81856115a0565b93508360208202850161189c856115b0565b805f5b858110156118d757848403895281516118b88582611857565b94506118c38361186a565b925060208a0199505060018101905061189f565b50829750879550505050505092915050565b5f6020820190508181035f8301526119018184611876565b905092915050565b61191281611685565b811461191c575f80fd5b50565b5f8135905061192d81611909565b92915050565b5f60208284031215611948576119476112d6565b5b5f6119558482850161191f565b91505092915050565b5f60c083015f8301516119735f8601826115c8565b506020830151611986602086018261163b565b5060408301516119996040860182611656565b5060608301516119ac6060860182611676565b5060808301516119bf608086018261168e565b5060a083015184820360a08601526119d78282611771565b9150508091505092915050565b5f6020820190508181035f8301526119fc818461195e565b905092915050565b5f6020820190508181035f830152611a1c8184611475565b905092915050565b60a082015f820151611a385f85018261163b565b506020820151611a4b60208501826115c8565b506040820151611a5e6040850182611656565b506060820151611a716060850182611676565b506080820151611a84608085018261168e565b50505050565b5f60a082019050611a9d5f830184611a24565b92915050565b611aac81611685565b82525050565b5f602082019050611ac55f830184611aa3565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b0582611465565b810181811067ffffffffffffffff82111715611b2457611b23611acf565b5b80604052505050565b5f611b366112cd565b9050611b428282611afc565b919050565b5f80fd5b60028110611b57575f80fd5b50565b5f81359050611b6881611b4b565b92915050565b611b77816115bf565b8114611b81575f80fd5b50565b5f81359050611b9281611b6e565b92915050565b611ba18161164a565b8114611bab575f80fd5b50565b5f81359050611bbc81611b98565b92915050565b611bcb81611665565b8114611bd5575f80fd5b50565b5f81359050611be681611bc2565b92915050565b5f60a08284031215611c0157611c00611acb565b5b611c0b60a0611b2d565b90505f611c1a84828501611b5a565b5f830152506020611c2d84828501611b84565b6020830152506040611c4184828501611bae565b6040830152506060611c5584828501611bd8565b6060830152506080611c698482850161191f565b60808301525092915050565b60068110611c81575f80fd5b50565b5f81359050611c9281611c75565b92915050565b60048110611ca4575f80fd5b50565b5f81359050611cb581611c98565b92915050565b5f80fd5b5f67ffffffffffffffff821115611cd957611cd8611acf565b5b611ce282611465565b9050602081019050919050565b828183375f83830152505050565b5f611d0f611d0a84611cbf565b611b2d565b905082815260208101848484011115611d2b57611d2a611cbb565b5b611d36848285611cef565b509392505050565b5f82601f830112611d5257611d51611391565b5b8135611d62848260208601611cfd565b91505092915050565b5f60808284031215611d8057611d7f611acb565b5b611d8a6080611b2d565b90505f611d9984828501611c84565b5f830152506020611dac84828501611ca7565b6020830152506040611dc084828501611bae565b604083015250606082013567ffffffffffffffff811115611de457611de3611b47565b5b611df084828501611d3e565b60608301525092915050565b5f60c08284031215611e1157611e10611acb565b5b611e1b60c0611b2d565b90505f611e2a84828501611b84565b5f830152506020611e3d84828501611b5a565b6020830152506040611e5184828501611bae565b6040830152506060611e6584828501611bd8565b6060830152506080611e798482850161191f565b60808301525060a082013567ffffffffffffffff811115611e9d57611e9c611b47565b5b611ea984828501611d6b565b60a08301525092915050565b5f6101208284031215611ecb57611eca611acb565b5b611ed560a0611b2d565b90505f611ee484828501611bec565b5f8301525060a082013567ffffffffffffffff811115611f0757611f06611b47565b5b611f1384828501611dfc565b60208301525060c082013567ffffffffffffffff811115611f3757611f36611b47565b5b611f4384828501611dfc565b60408301525060e082013567ffffffffffffffff811115611f6757611f66611b47565b5b611f7384828501611dfc565b60608301525061010082013567ffffffffffffffff811115611f9857611f97611b47565b5b611fa484828501611dfc565b60808301525092915050565b5f60208284031215611fc557611fc46112d6565b5b5f82013567ffffffffffffffff811115611fe257611fe16112da565b5b611fee84828501611eb5565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061203b57607f821691505b60208210810361204e5761204d611ff7565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026120dd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826120a2565b6120e786836120a2565b95508019841693508086168417925050509392505050565b5f61211961211461210f84611685565b611522565b611685565b9050919050565b5f819050919050565b612132836120ff565b61214661213e82612120565b8484546120ae565b825550505050565b5f90565b61215a61214e565b612165818484612129565b505050565b5b818110156121885761217d5f82612152565b60018101905061216b565b5050565b601f8211156121cd5761219e81612081565b6121a784612093565b810160208510156121b6578190505b6121ca6121c285612093565b83018261216a565b50505b505050565b5f82821c905092915050565b5f6121ed5f19846008026121d2565b1980831691505092915050565b5f61220583836121de565b9150826002028217905092915050565b61221e8261143d565b67ffffffffffffffff81111561223757612236611acf565b5b6122418254612024565b61224c82828561218c565b5f60209050601f83116001811461227d575f841561226b578287015190505b61227585826121fa565b8655506122dc565b601f19841661228b86612081565b5f5b828110156122b25784890151825560018201915060208501945060208101905061228d565b868310156122cf57848901516122cb601f8916826121de565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220c09de9dc8770d5af6b81846a782092789609bf9d57e917b598897703755b10a864736f6c634300081a0033", y = Symbol.for("@ts-pattern/matcher"), c0 = Symbol.for("@ts-pattern/isVariadic"), k = "@ts-pattern/anonymous-select-key", L = (t) => !!(t && typeof t == "object"), _ = (t) => t && !!t[y], g = (t, f, e) => {
9
+ if (_(t)) {
10
+ const b = t[y](), { matched: n, selections: a } = b.match(f);
11
11
  return n && a && Object.keys(a).forEach((i) => e(i, a[i])), n;
12
12
  }
13
- if (U(t)) {
14
- if (!U(f)) return !1;
13
+ if (L(t)) {
14
+ if (!L(f)) return !1;
15
15
  if (Array.isArray(t)) {
16
16
  if (!Array.isArray(f)) return !1;
17
17
  let b = [], n = [], a = [];
18
18
  for (const i of t.keys()) {
19
- const r = t[i];
20
- P(r) && r[o0] ? a.push(r) : a.length ? n.push(r) : b.push(r);
19
+ const o = t[i];
20
+ _(o) && o[c0] ? a.push(o) : a.length ? n.push(o) : b.push(o);
21
21
  }
22
22
  if (a.length) {
23
23
  if (a.length > 1) throw new Error("Pattern error: Using `...P.array(...)` several times in a single pattern is not allowed.");
24
24
  if (f.length < b.length + n.length) return !1;
25
- const i = f.slice(0, b.length), r = n.length === 0 ? [] : f.slice(-n.length), c = f.slice(b.length, n.length === 0 ? 1 / 0 : -n.length);
26
- return b.every((o, I) => p(o, i[I], e)) && n.every((o, I) => p(o, r[I], e)) && (a.length === 0 || p(a[0], c, e));
25
+ const i = f.slice(0, b.length), o = n.length === 0 ? [] : f.slice(-n.length), d = f.slice(b.length, n.length === 0 ? 1 / 0 : -n.length);
26
+ return b.every((c, T) => g(c, i[T], e)) && n.every((c, T) => g(c, o[T], e)) && (a.length === 0 || g(a[0], d, e));
27
27
  }
28
- return t.length === f.length && t.every((i, r) => p(i, f[r], e));
28
+ return t.length === f.length && t.every((i, o) => g(i, f[o], e));
29
29
  }
30
30
  return Reflect.ownKeys(t).every((b) => {
31
31
  const n = t[b];
32
- return (b in f || P(a = n) && a[g]().matcherType === "optional") && p(n, f[b], e);
32
+ return (b in f || _(a = n) && a[y]().matcherType === "optional") && g(n, f[b], e);
33
33
  var a;
34
34
  });
35
35
  }
36
36
  return Object.is(f, t);
37
- }, T = (t) => {
37
+ }, v = (t) => {
38
38
  var f, e, b;
39
- return U(t) ? P(t) ? (f = (e = (b = t[g]()).getSelectionKeys) == null ? void 0 : e.call(b)) != null ? f : [] : Array.isArray(t) ? C(t, T) : C(Object.values(t), T) : [];
39
+ return L(t) ? _(t) ? (f = (e = (b = t[y]()).getSelectionKeys) == null ? void 0 : e.call(b)) != null ? f : [] : Array.isArray(t) ? C(t, v) : C(Object.values(t), v) : [];
40
40
  }, C = (t, f) => t.reduce((e, b) => e.concat(f(b)), []);
41
41
  function u(t) {
42
- return Object.assign(t, { optional: () => u0(t), and: (f) => d(t, f), or: (f) => h0(t, f), select: (f) => f === void 0 ? X(t) : X(f, t) });
42
+ return Object.assign(t, { optional: () => u0(t), and: (f) => s(t, f), or: (f) => l0(t, f), select: (f) => f === void 0 ? W(t) : W(f, t) });
43
43
  }
44
44
  function u0(t) {
45
- return u({ [g]: () => ({ match: (f) => {
45
+ return u({ [y]: () => ({ match: (f) => {
46
46
  let e = {};
47
47
  const b = (n, a) => {
48
48
  e[n] = a;
49
49
  };
50
- return f === void 0 ? (T(t).forEach((n) => b(n, void 0)), { matched: !0, selections: e }) : { matched: p(t, f, b), selections: e };
51
- }, getSelectionKeys: () => T(t), matcherType: "optional" }) });
50
+ return f === void 0 ? (v(t).forEach((n) => b(n, void 0)), { matched: !0, selections: e }) : { matched: g(t, f, b), selections: e };
51
+ }, getSelectionKeys: () => v(t), matcherType: "optional" }) });
52
52
  }
53
- function d(...t) {
54
- return u({ [g]: () => ({ match: (f) => {
53
+ function s(...t) {
54
+ return u({ [y]: () => ({ match: (f) => {
55
55
  let e = {};
56
56
  const b = (n, a) => {
57
57
  e[n] = a;
58
58
  };
59
- return { matched: t.every((n) => p(n, f, b)), selections: e };
60
- }, getSelectionKeys: () => C(t, T), matcherType: "and" }) });
59
+ return { matched: t.every((n) => g(n, f, b)), selections: e };
60
+ }, getSelectionKeys: () => C(t, v), matcherType: "and" }) });
61
61
  }
62
- function h0(...t) {
63
- return u({ [g]: () => ({ match: (f) => {
62
+ function l0(...t) {
63
+ return u({ [y]: () => ({ match: (f) => {
64
64
  let e = {};
65
65
  const b = (n, a) => {
66
66
  e[n] = a;
67
67
  };
68
- return C(t, T).forEach((n) => b(n, void 0)), { matched: t.some((n) => p(n, f, b)), selections: e };
69
- }, getSelectionKeys: () => C(t, T), matcherType: "or" }) });
68
+ return C(t, v).forEach((n) => b(n, void 0)), { matched: t.some((n) => g(n, f, b)), selections: e };
69
+ }, getSelectionKeys: () => C(t, v), matcherType: "or" }) });
70
70
  }
71
- function s(t) {
72
- return { [g]: () => ({ match: (f) => ({ matched: !!t(f) }) }) };
71
+ function r(t) {
72
+ return { [y]: () => ({ match: (f) => ({ matched: !!t(f) }) }) };
73
73
  }
74
- function X(...t) {
74
+ function W(...t) {
75
75
  const f = typeof t[0] == "string" ? t[0] : void 0, e = t.length === 2 ? t[1] : typeof t[0] == "string" ? void 0 : t[0];
76
- return u({ [g]: () => ({ match: (b) => {
77
- let n = { [f ?? D]: b };
78
- return { matched: e === void 0 || p(e, b, (a, i) => {
76
+ return u({ [y]: () => ({ match: (b) => {
77
+ let n = { [f ?? k]: b };
78
+ return { matched: e === void 0 || g(e, b, (a, i) => {
79
79
  n[a] = i;
80
80
  }), selections: n };
81
- }, getSelectionKeys: () => [f ?? D].concat(e === void 0 ? [] : T(e)) }) });
81
+ }, getSelectionKeys: () => [f ?? k].concat(e === void 0 ? [] : v(e)) }) });
82
82
  }
83
- function h(t) {
83
+ function l(t) {
84
84
  return typeof t == "number";
85
85
  }
86
- function y(t) {
86
+ function p(t) {
87
87
  return typeof t == "string";
88
88
  }
89
89
  function m(t) {
90
90
  return typeof t == "bigint";
91
91
  }
92
- u(s(function(t) {
92
+ u(r(function(t) {
93
93
  return !0;
94
94
  }));
95
95
  const A = (t) => Object.assign(u(t), { startsWith: (f) => {
96
- return A(d(t, (e = f, s((b) => y(b) && b.startsWith(e)))));
96
+ return A(s(t, (e = f, r((b) => p(b) && b.startsWith(e)))));
97
97
  var e;
98
98
  }, endsWith: (f) => {
99
- return A(d(t, (e = f, s((b) => y(b) && b.endsWith(e)))));
99
+ return A(s(t, (e = f, r((b) => p(b) && b.endsWith(e)))));
100
100
  var e;
101
- }, minLength: (f) => A(d(t, ((e) => s((b) => y(b) && b.length >= e))(f))), length: (f) => A(d(t, ((e) => s((b) => y(b) && b.length === e))(f))), maxLength: (f) => A(d(t, ((e) => s((b) => y(b) && b.length <= e))(f))), includes: (f) => {
102
- return A(d(t, (e = f, s((b) => y(b) && b.includes(e)))));
101
+ }, minLength: (f) => A(s(t, ((e) => r((b) => p(b) && b.length >= e))(f))), length: (f) => A(s(t, ((e) => r((b) => p(b) && b.length === e))(f))), maxLength: (f) => A(s(t, ((e) => r((b) => p(b) && b.length <= e))(f))), includes: (f) => {
102
+ return A(s(t, (e = f, r((b) => p(b) && b.includes(e)))));
103
103
  var e;
104
104
  }, regex: (f) => {
105
- return A(d(t, (e = f, s((b) => y(b) && !!b.match(e)))));
105
+ return A(s(t, (e = f, r((b) => p(b) && !!b.match(e)))));
106
106
  var e;
107
107
  } });
108
- A(s(y));
109
- const l = (t) => Object.assign(u(t), { between: (f, e) => l(d(t, ((b, n) => s((a) => h(a) && b <= a && n >= a))(f, e))), lt: (f) => l(d(t, ((e) => s((b) => h(b) && b < e))(f))), gt: (f) => l(d(t, ((e) => s((b) => h(b) && b > e))(f))), lte: (f) => l(d(t, ((e) => s((b) => h(b) && b <= e))(f))), gte: (f) => l(d(t, ((e) => s((b) => h(b) && b >= e))(f))), int: () => l(d(t, s((f) => h(f) && Number.isInteger(f)))), finite: () => l(d(t, s((f) => h(f) && Number.isFinite(f)))), positive: () => l(d(t, s((f) => h(f) && f > 0))), negative: () => l(d(t, s((f) => h(f) && f < 0))) });
110
- l(s(h));
111
- const w = (t) => Object.assign(u(t), { between: (f, e) => w(d(t, ((b, n) => s((a) => m(a) && b <= a && n >= a))(f, e))), lt: (f) => w(d(t, ((e) => s((b) => m(b) && b < e))(f))), gt: (f) => w(d(t, ((e) => s((b) => m(b) && b > e))(f))), lte: (f) => w(d(t, ((e) => s((b) => m(b) && b <= e))(f))), gte: (f) => w(d(t, ((e) => s((b) => m(b) && b >= e))(f))), positive: () => w(d(t, s((f) => m(f) && f > 0))), negative: () => w(d(t, s((f) => m(f) && f < 0))) });
112
- w(s(m));
113
- u(s(function(t) {
108
+ A(r(p));
109
+ const h = (t) => Object.assign(u(t), { between: (f, e) => h(s(t, ((b, n) => r((a) => l(a) && b <= a && n >= a))(f, e))), lt: (f) => h(s(t, ((e) => r((b) => l(b) && b < e))(f))), gt: (f) => h(s(t, ((e) => r((b) => l(b) && b > e))(f))), lte: (f) => h(s(t, ((e) => r((b) => l(b) && b <= e))(f))), gte: (f) => h(s(t, ((e) => r((b) => l(b) && b >= e))(f))), int: () => h(s(t, r((f) => l(f) && Number.isInteger(f)))), finite: () => h(s(t, r((f) => l(f) && Number.isFinite(f)))), positive: () => h(s(t, r((f) => l(f) && f > 0))), negative: () => h(s(t, r((f) => l(f) && f < 0))) });
110
+ h(r(l));
111
+ const w = (t) => Object.assign(u(t), { between: (f, e) => w(s(t, ((b, n) => r((a) => m(a) && b <= a && n >= a))(f, e))), lt: (f) => w(s(t, ((e) => r((b) => m(b) && b < e))(f))), gt: (f) => w(s(t, ((e) => r((b) => m(b) && b > e))(f))), lte: (f) => w(s(t, ((e) => r((b) => m(b) && b <= e))(f))), gte: (f) => w(s(t, ((e) => r((b) => m(b) && b >= e))(f))), positive: () => w(s(t, r((f) => m(f) && f > 0))), negative: () => w(s(t, r((f) => m(f) && f < 0))) });
112
+ w(r(m));
113
+ u(r(function(t) {
114
114
  return typeof t == "boolean";
115
115
  }));
116
- u(s(function(t) {
116
+ u(r(function(t) {
117
117
  return typeof t == "symbol";
118
118
  }));
119
- u(s(function(t) {
119
+ u(r(function(t) {
120
120
  return t == null;
121
121
  }));
122
- u(s(function(t) {
122
+ u(r(function(t) {
123
123
  return t != null;
124
124
  }));
125
- class l0 extends Error {
125
+ class h0 extends Error {
126
126
  constructor(f) {
127
127
  let e;
128
128
  try {
@@ -133,11 +133,11 @@ class l0 extends Error {
133
133
  super(`Pattern matching error: no pattern matches value ${e}`), this.input = void 0, this.input = f;
134
134
  }
135
135
  }
136
- const M = { matched: !1, value: void 0 };
136
+ const U = { matched: !1, value: void 0 };
137
137
  function z(t) {
138
- return new B(t, M);
138
+ return new R(t, U);
139
139
  }
140
- class B {
140
+ class R {
141
141
  constructor(f, e) {
142
142
  this.input = void 0, this.state = void 0, this.input = f, this.state = e;
143
143
  }
@@ -147,22 +147,22 @@ class B {
147
147
  let n;
148
148
  f.length === 3 && typeof f[1] == "function" ? n = f[1] : f.length > 2 && b.push(...f.slice(1, f.length - 1));
149
149
  let a = !1, i = {};
150
- const r = (o, I) => {
151
- a = !0, i[o] = I;
152
- }, c = !b.some((o) => p(o, this.input, r)) || n && !n(this.input) ? M : { matched: !0, value: e(a ? D in i ? i[D] : i : this.input, this.input) };
153
- return new B(this.input, c);
150
+ const o = (c, T) => {
151
+ a = !0, i[c] = T;
152
+ }, d = !b.some((c) => g(c, this.input, o)) || n && !n(this.input) ? U : { matched: !0, value: e(a ? k in i ? i[k] : i : this.input, this.input) };
153
+ return new R(this.input, d);
154
154
  }
155
155
  when(f, e) {
156
156
  if (this.state.matched) return this;
157
157
  const b = !!f(this.input);
158
- return new B(this.input, b ? { matched: !0, value: e(this.input, this.input) } : M);
158
+ return new R(this.input, b ? { matched: !0, value: e(this.input, this.input) } : U);
159
159
  }
160
160
  otherwise(f) {
161
161
  return this.state.matched ? this.state.value : f(this.input);
162
162
  }
163
163
  exhaustive() {
164
164
  if (this.state.matched) return this.state.value;
165
- throw new l0(this.input);
165
+ throw new h0(this.input);
166
166
  }
167
167
  run() {
168
168
  return this.exhaustive();
@@ -171,13 +171,13 @@ class B {
171
171
  return this;
172
172
  }
173
173
  }
174
- var p0 = /* @__PURE__ */ ((t) => (t[t.EQUAL = 0] = "EQUAL", t[t.NOT_EQUAL = 1] = "NOT_EQUAL", t[t.GREATER_THAN = 2] = "GREATER_THAN", t[t.LESS_THAN = 3] = "LESS_THAN", t[t.CONTAINS = 4] = "CONTAINS", t[t.REGEX = 5] = "REGEX", t))(p0 || {}), g0 = /* @__PURE__ */ ((t) => (t[t.UINT = 0] = "UINT", t[t.ADDRESS = 1] = "ADDRESS", t[t.BYTES = 2] = "BYTES", t[t.STRING = 3] = "STRING", t))(g0 || {}), y0 = /* @__PURE__ */ ((t) => (t[t.EVENT = 0] = "EVENT", t[t.FUNC = 1] = "FUNC", t))(y0 || {});
174
+ var g0 = /* @__PURE__ */ ((t) => (t[t.EQUAL = 0] = "EQUAL", t[t.NOT_EQUAL = 1] = "NOT_EQUAL", t[t.GREATER_THAN = 2] = "GREATER_THAN", t[t.LESS_THAN = 3] = "LESS_THAN", t[t.CONTAINS = 4] = "CONTAINS", t[t.REGEX = 5] = "REGEX", t))(g0 || {}), y0 = /* @__PURE__ */ ((t) => (t[t.UINT = 0] = "UINT", t[t.ADDRESS = 1] = "ADDRESS", t[t.BYTES = 2] = "BYTES", t[t.STRING = 3] = "STRING", t))(y0 || {}), p0 = /* @__PURE__ */ ((t) => (t[t.EVENT = 0] = "EVENT", t[t.FUNC = 1] = "FUNC", t))(p0 || {});
175
175
  function m0(t) {
176
176
  return Array.isArray(t.actionSteps);
177
177
  }
178
- const L = class L extends b0 {
178
+ const D = class D extends b0 {
179
179
  constructor() {
180
- super(...arguments), this.abi = O;
180
+ super(...arguments), this.abi = M;
181
181
  }
182
182
  /**
183
183
  * Gets a specific action event by index
@@ -301,19 +301,24 @@ const L = class L extends b0 {
301
301
  * @throws {FunctionDataDecodeError} If there's an error decoding function data (for function-based derivation).
302
302
  */
303
303
  async deriveActionClaimantFromTransaction(f, e) {
304
- if (f.fieldIndex === v.TX_SENDER_CLAIMANT) {
305
- if ("hash" in e)
306
- return (await N(this._config, {
307
- hash: e.hash,
308
- chainId: e.chainId
309
- })).from;
304
+ if (f.fieldIndex === N.TX_SENDER_CLAIMANT) {
305
+ if ("hash" in e) {
306
+ const n = await S(this._config, {
307
+ ...e,
308
+ chainId: f.chainid
309
+ });
310
+ return e.notBeforeBlockNumber && n.blockNumber < e.notBeforeBlockNumber ? void 0 : n.from;
311
+ }
310
312
  if ("logs" in e) {
311
313
  for (let n of e.logs)
312
- if (n.transactionHash)
313
- return (await N(this._config, {
314
+ if (n.transactionHash) {
315
+ const a = await S(this._config, {
316
+ ...e,
314
317
  hash: n.transactionHash,
315
318
  chainId: f.chainid
316
- })).from;
319
+ });
320
+ return e.notBeforeBlockNumber && a.blockNumber < e.notBeforeBlockNumber ? void 0 : a.from;
321
+ }
317
322
  }
318
323
  return;
319
324
  }
@@ -321,51 +326,57 @@ const L = class L extends b0 {
321
326
  if (f.signatureType === 0) {
322
327
  let n;
323
328
  if (e.abiItem ? n = e.abiItem : n = e.knownSignatures[b], !n)
324
- throw new _(b);
329
+ throw new x(b);
325
330
  let a;
326
331
  if ("logs" in e) {
327
- for (let c of e.logs) {
328
- if (!E(c.address, f.targetContract)) continue;
329
- let o = this.validateClaimantAgainstArgs(
332
+ for (let d of e.logs) {
333
+ if (!I(d.address, f.targetContract)) continue;
334
+ let c = this.validateClaimantAgainstArgs(
330
335
  f,
331
- c
336
+ d
332
337
  );
333
- o && (a = o);
338
+ c && (a = c);
334
339
  }
335
340
  return a;
336
341
  }
337
- const r = (await k(this._config, e)).logs.map((c) => {
338
- const { eventName: o, args: I } = H({
342
+ const i = await O(this._config, {
343
+ ...e,
344
+ chainId: f.chainid
345
+ });
346
+ if (e.notBeforeBlockNumber && i.blockNumber < e.notBeforeBlockNumber)
347
+ return;
348
+ const o = i.logs.map((d) => {
349
+ const { eventName: c, args: T } = H({
339
350
  abi: [n],
340
- data: c.data,
341
- topics: c.topics
351
+ data: d.data,
352
+ topics: d.topics
342
353
  });
343
- return { ...c, eventName: o, args: I };
354
+ return { ...d, eventName: c, args: T };
344
355
  });
345
- for (let c of r) {
346
- if (!E(c.address, f.targetContract)) continue;
347
- let o = this.validateClaimantAgainstArgs(f, c);
348
- o && (a = o);
356
+ for (let d of o) {
357
+ if (!I(d.address, f.targetContract)) continue;
358
+ let c = this.validateClaimantAgainstArgs(f, d);
359
+ c && (a = c);
349
360
  }
350
361
  return a;
351
362
  }
352
363
  if (f.signatureType === 1 && "hash" in e) {
353
- const n = await N(this._config, {
354
- hash: e.hash,
355
- chainId: e.chainId
364
+ const n = await S(this._config, {
365
+ ...e,
366
+ chainId: f.chainid
356
367
  });
357
- if (!E(n.to, f.targetContract)) return;
368
+ if (e.notBeforeBlockNumber && n.blockNumber < e.notBeforeBlockNumber || !I(n.to, f.targetContract)) return;
358
369
  let a;
359
370
  if (e.abiItem ? a = e.abiItem : a = e.knownSignatures[b], !a)
360
- throw new _(f.signature);
371
+ throw new x(f.signature);
361
372
  let i;
362
373
  try {
363
- i = Y({
374
+ i = j({
364
375
  abi: [a],
365
376
  data: n.input
366
377
  });
367
- } catch (r) {
368
- throw new j([a], r);
378
+ } catch (o) {
379
+ throw new G([a], o);
369
380
  }
370
381
  return this.validateClaimantAgainstArgs(f, i);
371
382
  }
@@ -416,7 +427,7 @@ const L = class L extends b0 {
416
427
  const b = f.signature;
417
428
  let n;
418
429
  if (e.abiItem ? n = e.abiItem : n = e.knownSignatures[b], !n)
419
- throw new _(b);
430
+ throw new x(b);
420
431
  if (this.isArraylikeIndexed(f, n))
421
432
  throw new n0(
422
433
  f.actionParameter.fieldIndex,
@@ -424,25 +435,28 @@ const L = class L extends b0 {
424
435
  );
425
436
  if ("logs" in e)
426
437
  return this.isActionEventValid(f, e.logs);
427
- const i = (await k(this._config, {
428
- hash: e.hash,
429
- chainId: e.chainId
430
- })).logs.map((r) => {
431
- const { eventName: c, args: o } = H({
438
+ const a = await O(this._config, {
439
+ ...e,
440
+ chainId: f.chainid
441
+ });
442
+ if (e.notBeforeBlockNumber)
443
+ return a.blockNumber >= e.notBeforeBlockNumber;
444
+ const i = a.logs.map((o) => {
445
+ const { eventName: d, args: c } = H({
432
446
  abi: [n],
433
- data: r.data,
434
- topics: r.topics
447
+ data: o.data,
448
+ topics: o.topics
435
449
  });
436
- return { ...r, eventName: c, args: o };
450
+ return { ...o, eventName: d, args: c };
437
451
  });
438
452
  return this.isActionEventValid(f, i);
439
453
  }
440
- if (f.signatureType === 1 && "hash" in e && "chainId" in e) {
441
- const b = await N(this._config, {
442
- hash: e.hash,
443
- chainId: e.chainId
454
+ if (f.signatureType === 1 && "hash" in e) {
455
+ const b = await S(this._config, {
456
+ ...e,
457
+ chainId: f.chainid
444
458
  });
445
- return this.isActionFunctionValid(f, b, e);
459
+ return e.notBeforeBlockNumber ? b.blockNumber >= e.notBeforeBlockNumber : this.isActionFunctionValid(f, b, e);
446
460
  }
447
461
  return !1;
448
462
  }
@@ -481,20 +495,20 @@ const L = class L extends b0 {
481
495
  const n = f.actionParameter;
482
496
  let a = f.signature, i;
483
497
  if (b.abiItem ? i = b == null ? void 0 : b.abiItem : i = b.knownSignatures[a], !i)
484
- throw new _(a);
485
- let r;
498
+ throw new x(a);
499
+ let o;
486
500
  try {
487
- r = Y({
501
+ o = j({
488
502
  abi: [i],
489
503
  data: e.input
490
504
  });
491
- } catch (o) {
492
- throw new j([i], o);
505
+ } catch (c) {
506
+ throw new G([i], c);
493
507
  }
494
- const c = r.args;
495
- return !(!c || !r || !this.validateFunctionAgainstCriteria(
508
+ const d = o.args;
509
+ return !(!d || !o || !this.validateFunctionAgainstCriteria(
496
510
  n,
497
- c
511
+ d
498
512
  ));
499
513
  }
500
514
  /**
@@ -508,30 +522,30 @@ const L = class L extends b0 {
508
522
  * @returns {Promise<boolean>} - Returns true if the field passes the criteria, false otherwise.
509
523
  */
510
524
  validateFieldAgainstCriteria(f, e, b) {
511
- if (f.filterType === 0 && f.fieldType === 2 && f.fieldIndex === v.ANY_ACTION_PARAM)
525
+ if (f.filterType === 0 && f.fieldType === 2 && f.fieldIndex === N.ANY_ACTION_PARAM)
512
526
  return !0;
513
527
  switch (f.filterType) {
514
528
  case 0:
515
529
  return z(f.fieldType).with(
516
530
  1,
517
- () => E(f.filterData, e)
531
+ () => I(f.filterData, e)
518
532
  ).with(
519
533
  0,
520
534
  () => BigInt(e) === BigInt(f.filterData)
521
535
  ).with(
522
536
  3,
523
- () => e === x(f.filterData, "string")
537
+ () => e === B(f.filterData, "string")
524
538
  ).otherwise(() => e === f.filterData);
525
539
  case 1:
526
540
  return z(f.fieldType).with(
527
541
  1,
528
- () => !E(f.filterData, e)
542
+ () => !I(f.filterData, e)
529
543
  ).with(
530
544
  0,
531
545
  () => BigInt(e) !== BigInt(f.filterData)
532
546
  ).with(
533
547
  3,
534
- () => e !== x(f.filterData, "string")
548
+ () => e !== B(f.filterData, "string")
535
549
  ).otherwise(() => e !== f.filterData);
536
550
  case 2:
537
551
  if (f.fieldType === 0)
@@ -552,22 +566,22 @@ const L = class L extends b0 {
552
566
  case 4:
553
567
  if (f.fieldType === 2 || f.fieldType === 3) {
554
568
  let n;
555
- return f.fieldType === 3 ? n = x(f.filterData, "string") : n = f.filterData.slice(2), e.includes(n);
569
+ return f.fieldType === 3 ? n = B(f.filterData, "string") : n = f.filterData.slice(2), e.includes(n);
556
570
  }
557
- throw new G({
571
+ throw new Y({
558
572
  ...b,
559
573
  criteria: f,
560
574
  fieldValue: e
561
575
  });
562
576
  case 5:
563
577
  if (typeof e != "string")
564
- throw new G({
578
+ throw new Y({
565
579
  ...b,
566
580
  criteria: f,
567
581
  fieldValue: e
568
582
  });
569
583
  if (f.fieldType === 3) {
570
- const n = x(f.filterData, "string");
584
+ const n = B(f.filterData, "string");
571
585
  return new RegExp(n).test(e);
572
586
  }
573
587
  default:
@@ -587,15 +601,15 @@ const L = class L extends b0 {
587
601
  * @returns {boolean} - Returns true if the log passes the criteria, false otherwise.
588
602
  */
589
603
  validateLogAgainstCriteria(f, e) {
590
- if (!Array.isArray(e.args) || e.args.length <= f.fieldIndex && f.fieldIndex !== v.ANY_ACTION_PARAM)
604
+ if (!Array.isArray(e.args) || e.args.length <= f.fieldIndex && f.fieldIndex !== N.ANY_ACTION_PARAM)
591
605
  throw new i0({
592
606
  log: e,
593
607
  criteria: f,
594
608
  fieldValue: void 0
595
609
  });
596
- const b = f.fieldIndex === v.ANY_ACTION_PARAM ? R : e.args.at(f.fieldIndex);
610
+ const b = f.fieldIndex === N.ANY_ACTION_PARAM ? P : e.args.at(f.fieldIndex);
597
611
  if (b === void 0)
598
- throw new W({ log: e, criteria: f, fieldValue: b });
612
+ throw new X({ log: e, criteria: f, fieldValue: b });
599
613
  return this.validateFieldAgainstCriteria(f, b, { log: e });
600
614
  }
601
615
  /**
@@ -607,9 +621,9 @@ const L = class L extends b0 {
607
621
  * @returns {Promise<boolean>} - Returns true if the decoded argument passes the criteria, false otherwise.
608
622
  */
609
623
  validateFunctionAgainstCriteria(f, e) {
610
- const b = f.fieldIndex === v.ANY_ACTION_PARAM ? R : e[f.fieldIndex];
624
+ const b = f.fieldIndex === N.ANY_ACTION_PARAM ? P : e[f.fieldIndex];
611
625
  if (b === void 0)
612
- throw new W({
626
+ throw new X({
613
627
  criteria: f,
614
628
  fieldValue: b
615
629
  });
@@ -632,24 +646,24 @@ const L = class L extends b0 {
632
646
  );
633
647
  let a;
634
648
  if (m0(b)) {
635
- let i = b.actionSteps.filter((c) => !!c);
649
+ let i = b.actionSteps.filter((d) => !!d);
636
650
  if (i.length === 0)
637
- throw new s0();
638
- if (i.length > 4)
639
651
  throw new r0();
640
- let r = Array.from({ length: 4 }, (c, o) => i.at(o) || i.at(-1));
652
+ if (i.length > 4)
653
+ throw new o0();
654
+ let o = Array.from({ length: 4 }, (d, c) => i.at(c) || i.at(-1));
641
655
  a = {
642
656
  actionClaimant: b.actionClaimant,
643
- actionStepOne: r[0],
644
- actionStepTwo: r[1],
645
- actionStepThree: r[2],
646
- actionStepFour: r[3]
657
+ actionStepOne: o[0],
658
+ actionStepTwo: o[1],
659
+ actionStepThree: o[2],
660
+ actionStepFour: o[3]
647
661
  };
648
662
  } else
649
663
  a = b;
650
664
  return {
651
- abi: O,
652
- bytecode: c0,
665
+ abi: M,
666
+ bytecode: d0,
653
667
  args: [w0(a)],
654
668
  ...this.optionallyAttachAccount(n.account)
655
669
  };
@@ -659,11 +673,11 @@ const L = class L extends b0 {
659
673
  return !!((f.actionParameter.fieldType === 3 || f.actionParameter.fieldType === 2) && ((b = e.inputs[f.actionParameter.fieldIndex]) != null && b.indexed));
660
674
  }
661
675
  };
662
- L.bases = {
676
+ D.bases = {
663
677
  31337: void 0,
664
678
  ...t0
665
- }, L.registryType = d0.ACTION;
666
- let Q = L;
679
+ }, D.registryType = s0.ACTION;
680
+ let Q = D;
667
681
  function A0(t) {
668
682
  const f = [], e = {};
669
683
  for (let b of t) {
@@ -672,7 +686,7 @@ function A0(t) {
672
686
  }
673
687
  return f;
674
688
  }
675
- function S(t) {
689
+ function E(t) {
676
690
  return {
677
691
  ...t,
678
692
  chainid: BigInt(t.chainid)
@@ -799,52 +813,52 @@ function w0({
799
813
  ],
800
814
  [
801
815
  {
802
- actionClaimant: S(t),
816
+ actionClaimant: E(t),
803
817
  actionStepOne: {
804
- ...S(f),
818
+ ...E(f),
805
819
  actionType: f.actionType || 0
806
820
  },
807
821
  actionStepTwo: {
808
- ...S(e),
822
+ ...E(e),
809
823
  actionType: e.actionType || 0
810
824
  },
811
825
  actionStepThree: {
812
- ...S(b),
826
+ ...E(b),
813
827
  actionType: b.actionType || 0
814
828
  },
815
829
  actionStepFour: {
816
- ...S(n),
830
+ ...E(n),
817
831
  actionType: n.actionType || 0
818
832
  }
819
833
  }
820
834
  ]
821
835
  );
822
836
  }
823
- function x0() {
837
+ function B0() {
824
838
  return {
825
839
  filterType: 0,
826
840
  fieldType: 2,
827
- fieldIndex: v.ANY_ACTION_PARAM,
828
- filterData: R
841
+ fieldIndex: N.ANY_ACTION_PARAM,
842
+ filterData: P
829
843
  };
830
844
  }
831
- function _0() {
845
+ function x0(t) {
832
846
  return {
833
847
  signatureType: 0,
834
- signature: R,
835
- fieldIndex: v.TX_SENDER_CLAIMANT,
848
+ signature: P,
849
+ fieldIndex: N.TX_SENDER_CLAIMANT,
836
850
  targetContract: e0,
837
- chainid: 0
851
+ chainid: t
838
852
  };
839
853
  }
840
854
  export {
841
855
  Q as EventAction,
842
- p0 as FilterType,
843
- g0 as PrimitiveType,
844
- y0 as SignatureType,
845
- x0 as anyActionParameter,
856
+ g0 as FilterType,
857
+ y0 as PrimitiveType,
858
+ p0 as SignatureType,
859
+ B0 as anyActionParameter,
846
860
  m0 as isEventActionPayloadSimple,
847
861
  w0 as prepareEventActionPayload,
848
- _0 as transactionSenderClaimant
862
+ x0 as transactionSenderClaimant
849
863
  };
850
864
  //# sourceMappingURL=EventAction.js.map