@underpostnet/cyberia 3.2.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +14 -0
- package/.env.example +144 -0
- package/.github/workflows/cyberia-client.cd.yml +40 -0
- package/.github/workflows/cyberia-server.cd.yml +40 -0
- package/.github/workflows/docker-image.cyberia-client.ci.yml +71 -0
- package/.github/workflows/docker-image.cyberia-client.dev.ci.yml +70 -0
- package/.github/workflows/docker-image.cyberia-server.ci.yml +71 -0
- package/.github/workflows/docker-image.cyberia-server.dev.ci.yml +71 -0
- package/.github/workflows/docker-image.engine-cyberia.ci.yml +53 -0
- package/.github/workflows/docker-image.engine-cyberia.dev.ci.yml +53 -0
- package/.github/workflows/engine-cyberia.cd.yml +157 -0
- package/.github/workflows/engine-cyberia.ci.yml +125 -0
- package/.github/workflows/ghpkg.ci.yml +160 -0
- package/.github/workflows/gitlab.ci.yml +20 -0
- package/.github/workflows/hardhat.ci.yml +82 -0
- package/.github/workflows/npmpkg.ci.yml +126 -0
- package/.github/workflows/publish.ci.yml +87 -0
- package/.github/workflows/publish.cyberia.ci.yml +79 -0
- package/.github/workflows/pwa-microservices-template-page.cd.yml +65 -0
- package/.github/workflows/pwa-microservices-template-test.ci.yml +33 -0
- package/.github/workflows/release.cd.yml +46 -0
- package/.nycrc +9 -0
- package/.prettierignore +12 -0
- package/.prettierrc +9 -0
- package/.vscode/extensions.json +10 -0
- package/.vscode/settings.json +26 -0
- package/CHANGELOG.md +2516 -0
- package/CLI-HELP.md +1099 -0
- package/Dockerfile +161 -0
- package/Dockerfile.dev +161 -0
- package/Dockerfile.test +165 -0
- package/LICENSE +21 -0
- package/README.md +259 -0
- package/baremetal/commission-workflows.json +211 -0
- package/baremetal/packer-workflows.json +24 -0
- package/bin/build.js +261 -0
- package/bin/build.template.js +33 -0
- package/bin/cyberia.js +5627 -0
- package/bin/deploy.js +1547 -0
- package/bin/index.js +5627 -0
- package/bump.config.js +27 -0
- package/compose.env +144 -0
- package/conf.js +952 -0
- package/deployment.yaml +418 -0
- package/docker-compose.yml +434 -0
- package/examples/static-page/README.md +150 -0
- package/examples/static-page/ssr-components/CustomPage.js +554 -0
- package/examples/static-page/static-config-example.json +57 -0
- package/hardhat/.env.example +31 -0
- package/hardhat/contracts/ObjectLayerToken.sol +391 -0
- package/hardhat/deployments/.gitkeep +0 -0
- package/hardhat/deployments/hardhat-ObjectLayerToken.json +11 -0
- package/hardhat/hardhat.config.js +136 -0
- package/hardhat/ignition/modules/.gitkeep +0 -0
- package/hardhat/ignition/modules/ObjectLayerToken.js +21 -0
- package/hardhat/networks/besu-object-layer.network.json +138 -0
- package/hardhat/package-lock.json +2871 -0
- package/hardhat/package.json +43 -0
- package/hardhat/scripts/deployObjectLayerToken.js +98 -0
- package/hardhat/test/ObjectLayerToken.js +696 -0
- package/hardhat/types/ethers-contracts/ObjectLayerToken.ts +690 -0
- package/hardhat/types/ethers-contracts/common.ts +92 -0
- package/hardhat/types/ethers-contracts/factories/ObjectLayerToken__factory.ts +1055 -0
- package/hardhat/types/ethers-contracts/factories/index.ts +4 -0
- package/hardhat/types/ethers-contracts/hardhat.d.ts +47 -0
- package/hardhat/types/ethers-contracts/index.ts +6 -0
- package/ipfs/configure-ipfs.sh +13 -0
- package/jsconfig.json +9 -0
- package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +48 -0
- package/manifests/cronjobs/dd-cron/dd-cron-dns.yaml +48 -0
- package/manifests/deployment/adminer/deployment.yaml +32 -0
- package/manifests/deployment/adminer/kustomization.yaml +7 -0
- package/manifests/deployment/adminer/service.yaml +13 -0
- package/manifests/deployment/dd-cyberia-development/deployment.yaml +418 -0
- package/manifests/deployment/dd-cyberia-development/grpc-service.yaml +17 -0
- package/manifests/deployment/dd-cyberia-development/proxy.yaml +189 -0
- package/manifests/deployment/dd-cyberia-development/pv-pvc.yaml +164 -0
- package/manifests/deployment/dd-default-development/deployment.yaml +163 -0
- package/manifests/deployment/dd-default-development/proxy.yaml +46 -0
- package/manifests/deployment/fastapi/backend-deployment.yml +120 -0
- package/manifests/deployment/fastapi/backend-service.yml +19 -0
- package/manifests/deployment/fastapi/frontend-deployment.yml +54 -0
- package/manifests/deployment/fastapi/frontend-service.yml +15 -0
- package/manifests/deployment/fastapi/initial_data.sh +8 -0
- package/manifests/deployment/kafka/deployment.yaml +67 -0
- package/manifests/deployment/mongo-express/deployment.yaml +62 -0
- package/manifests/deployment/phpmyadmin/deployment.yaml +54 -0
- package/manifests/deployment/playwright/deployment.yaml +52 -0
- package/manifests/deployment/spark/spark-pi-py.yaml +20 -0
- package/manifests/deployment/tensorflow/tf-gpu-test.yaml +63 -0
- package/manifests/envoy-service-nodeport.yaml +22 -0
- package/manifests/grafana/deployment.yaml +64 -0
- package/manifests/grafana/kustomization.yaml +7 -0
- package/manifests/grafana/pvc.yaml +12 -0
- package/manifests/grafana/service.yaml +14 -0
- package/manifests/grafana/storage-class.yaml +9 -0
- package/manifests/ipfs/configmap.yaml +64 -0
- package/manifests/ipfs/headless-service.yaml +35 -0
- package/manifests/ipfs/kustomization.yaml +8 -0
- package/manifests/ipfs/statefulset.yaml +149 -0
- package/manifests/ipfs/storage-class.yaml +9 -0
- package/manifests/kind-config-dev.yaml +20 -0
- package/manifests/kind-config.yaml +12 -0
- package/manifests/kubeadm-calico-config.yaml +14 -0
- package/manifests/letsencrypt-prod.yaml +14 -0
- package/manifests/lxd/lxd-admin-profile.yaml +26 -0
- package/manifests/lxd/lxd-preseed.yaml +30 -0
- package/manifests/mariadb/kustomization.yaml +9 -0
- package/manifests/mariadb/pv.yaml +12 -0
- package/manifests/mariadb/pvc.yaml +10 -0
- package/manifests/mariadb/service.yaml +10 -0
- package/manifests/mariadb/statefulset.yaml +56 -0
- package/manifests/mariadb/storage-class.yaml +10 -0
- package/manifests/mongodb/headless-service.yaml +10 -0
- package/manifests/mongodb/kustomization.yaml +11 -0
- package/manifests/mongodb/pv-pvc.yaml +59 -0
- package/manifests/mongodb/statefulset.yaml +113 -0
- package/manifests/mongodb/storage-class.yaml +9 -0
- package/manifests/mongodb-4.4/headless-service.yaml +10 -0
- package/manifests/mongodb-4.4/kustomization.yaml +9 -0
- package/manifests/mongodb-4.4/mongodb-nodeport.yaml +17 -0
- package/manifests/mongodb-4.4/pv-pvc.yaml +19 -0
- package/manifests/mongodb-4.4/service-deployment.yaml +61 -0
- package/manifests/mongodb-4.4/statefulset.yaml +79 -0
- package/manifests/mongodb-4.4/storage-class.yaml +9 -0
- package/manifests/mysql/kustomization.yaml +7 -0
- package/manifests/mysql/pv-pvc.yaml +27 -0
- package/manifests/mysql/statefulset.yaml +55 -0
- package/manifests/postgresql/configmap.yaml +9 -0
- package/manifests/postgresql/kustomization.yaml +10 -0
- package/manifests/postgresql/pv.yaml +15 -0
- package/manifests/postgresql/pvc.yaml +13 -0
- package/manifests/postgresql/service.yaml +10 -0
- package/manifests/postgresql/statefulset.yaml +37 -0
- package/manifests/prometheus/deployment.yaml +82 -0
- package/manifests/pv-pvc-dd.yaml +34 -0
- package/manifests/valkey/kustomization.yaml +7 -0
- package/manifests/valkey/service.yaml +10 -0
- package/manifests/valkey/statefulset.yaml +37 -0
- package/manifests/valkey/valkey-nodeport.yaml +17 -0
- package/mongodb/entrypoint.sh +76 -0
- package/nginx.conf +128 -0
- package/nodemon.json +6 -0
- package/package.json +101 -0
- package/packer/images/Rocky9Amd64/Makefile +62 -0
- package/packer/images/Rocky9Amd64/QUICKSTART.md +113 -0
- package/packer/images/Rocky9Amd64/README.md +122 -0
- package/packer/images/Rocky9Amd64/http/rocky9.ks.pkrtpl.hcl +114 -0
- package/packer/images/Rocky9Amd64/rocky9.pkr.hcl +164 -0
- package/packer/images/Rocky9Arm64/Makefile +69 -0
- package/packer/images/Rocky9Arm64/README.md +122 -0
- package/packer/images/Rocky9Arm64/http/rocky9.ks.pkrtpl.hcl +114 -0
- package/packer/images/Rocky9Arm64/rocky9.pkr.hcl +171 -0
- package/packer/scripts/fuse-nbd +64 -0
- package/packer/scripts/fuse-tar-root +63 -0
- package/proxy.yaml +189 -0
- package/pv-pvc.yaml +164 -0
- package/scripts/device-scan.sh +65 -0
- package/scripts/disk-clean.sh +182 -0
- package/scripts/disk-devices.sh +13 -0
- package/scripts/gen-fqdns.sh +14 -0
- package/scripts/gpu-diag.sh +19 -0
- package/scripts/ip-info.sh +118 -0
- package/scripts/ipxe-setup.sh +200 -0
- package/scripts/k3s-node-setup.sh +124 -0
- package/scripts/kubeadm-node-setup.sh +317 -0
- package/scripts/link-local-underpost-cli.sh +6 -0
- package/scripts/lxd-vm-setup.sh +208 -0
- package/scripts/maas-nat-firewalld.sh +145 -0
- package/scripts/maas-setup.sh +135 -0
- package/scripts/maas-upload-boot-resource.sh +183 -0
- package/scripts/nat-iptables.sh +111 -0
- package/scripts/nvim.sh +91 -0
- package/scripts/packer-init-vars-file.sh +40 -0
- package/scripts/packer-setup.sh +289 -0
- package/scripts/ports-ls.sh +33 -0
- package/scripts/quick-tftp.sh +19 -0
- package/scripts/rhel-grpc-setup.sh +56 -0
- package/scripts/rocky-kickstart.sh +986 -0
- package/scripts/rocky-pwa.sh +200 -0
- package/scripts/rocky-setup.sh +106 -0
- package/scripts/rpmfusion-ffmpeg-setup.sh +32 -0
- package/scripts/ssl.sh +170 -0
- package/scripts/test-monitor.sh +248 -0
- package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.controller.js +30 -0
- package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.model.js +155 -0
- package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.router.js +39 -0
- package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.service.js +382 -0
- package/src/api/core/core.controller.js +8 -0
- package/src/api/core/core.model.js +11 -0
- package/src/api/core/core.router.js +23 -0
- package/src/api/core/core.service.js +30 -0
- package/src/api/crypto/crypto.controller.js +10 -0
- package/src/api/crypto/crypto.model.js +23 -0
- package/src/api/crypto/crypto.router.js +23 -0
- package/src/api/crypto/crypto.service.js +64 -0
- package/src/api/cyberia-action/cyberia-action.controller.js +8 -0
- package/src/api/cyberia-action/cyberia-action.model.js +79 -0
- package/src/api/cyberia-action/cyberia-action.router.js +21 -0
- package/src/api/cyberia-action/cyberia-action.service.js +58 -0
- package/src/api/cyberia-client-hints/cyberia-client-hints.controller.js +27 -0
- package/src/api/cyberia-client-hints/cyberia-client-hints.model.js +100 -0
- package/src/api/cyberia-client-hints/cyberia-client-hints.router.js +70 -0
- package/src/api/cyberia-client-hints/cyberia-client-hints.service.js +152 -0
- package/src/api/cyberia-dialogue/cyberia-dialogue.controller.js +8 -0
- package/src/api/cyberia-dialogue/cyberia-dialogue.model.js +36 -0
- package/src/api/cyberia-dialogue/cyberia-dialogue.router.js +20 -0
- package/src/api/cyberia-dialogue/cyberia-dialogue.service.js +57 -0
- package/src/api/cyberia-entity/cyberia-entity.controller.js +6 -0
- package/src/api/cyberia-entity/cyberia-entity.model.js +25 -0
- package/src/api/cyberia-entity/cyberia-entity.router.js +17 -0
- package/src/api/cyberia-entity/cyberia-entity.service.js +42 -0
- package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.controller.js +6 -0
- package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.model.js +67 -0
- package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.router.js +17 -0
- package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.service.js +46 -0
- package/src/api/cyberia-instance/cyberia-fallback-world.js +337 -0
- package/src/api/cyberia-instance/cyberia-instance-boot.service.js +57 -0
- package/src/api/cyberia-instance/cyberia-instance-map.service.js +583 -0
- package/src/api/cyberia-instance/cyberia-instance.controller.js +42 -0
- package/src/api/cyberia-instance/cyberia-instance.model.js +117 -0
- package/src/api/cyberia-instance/cyberia-instance.router.js +75 -0
- package/src/api/cyberia-instance/cyberia-instance.service.js +190 -0
- package/src/api/cyberia-instance/cyberia-portal-connector.js +260 -0
- package/src/api/cyberia-instance/cyberia-world-generator.js +618 -0
- package/src/api/cyberia-instance-conf/cyberia-instance-conf.controller.js +6 -0
- package/src/api/cyberia-instance-conf/cyberia-instance-conf.model.js +200 -0
- package/src/api/cyberia-instance-conf/cyberia-instance-conf.router.js +17 -0
- package/src/api/cyberia-instance-conf/cyberia-instance-conf.service.js +46 -0
- package/src/api/cyberia-map/cyberia-map.controller.js +6 -0
- package/src/api/cyberia-map/cyberia-map.model.js +33 -0
- package/src/api/cyberia-map/cyberia-map.router.js +19 -0
- package/src/api/cyberia-map/cyberia-map.service.js +76 -0
- package/src/api/cyberia-quest/cyberia-quest.controller.js +9 -0
- package/src/api/cyberia-quest/cyberia-quest.model.js +67 -0
- package/src/api/cyberia-quest/cyberia-quest.router.js +26 -0
- package/src/api/cyberia-quest/cyberia-quest.service.js +97 -0
- package/src/api/cyberia-quest-progress/cyberia-quest-progress.controller.js +6 -0
- package/src/api/cyberia-quest-progress/cyberia-quest-progress.model.js +49 -0
- package/src/api/cyberia-quest-progress/cyberia-quest-progress.router.js +21 -0
- package/src/api/cyberia-quest-progress/cyberia-quest-progress.service.js +42 -0
- package/src/api/cyberia-saga/cyberia-saga.controller.js +6 -0
- package/src/api/cyberia-saga/cyberia-saga.model.js +59 -0
- package/src/api/cyberia-saga/cyberia-saga.router.js +17 -0
- package/src/api/cyberia-saga/cyberia-saga.service.js +42 -0
- package/src/api/cyberia-server-defaults/cyberia-server-defaults.js +1076 -0
- package/src/api/cyberia-skill/cyberia-skill.controller.js +6 -0
- package/src/api/cyberia-skill/cyberia-skill.model.js +50 -0
- package/src/api/cyberia-skill/cyberia-skill.router.js +17 -0
- package/src/api/cyberia-skill/cyberia-skill.service.js +42 -0
- package/src/api/default/default.controller.js +6 -0
- package/src/api/default/default.model.js +20 -0
- package/src/api/default/default.router.js +21 -0
- package/src/api/default/default.service.js +42 -0
- package/src/api/document/document.controller.js +9 -0
- package/src/api/document/document.model.js +95 -0
- package/src/api/document/document.router.js +32 -0
- package/src/api/document/document.service.js +633 -0
- package/src/api/file/file.controller.js +15 -0
- package/src/api/file/file.model.js +127 -0
- package/src/api/file/file.ref.json +39 -0
- package/src/api/file/file.router.js +36 -0
- package/src/api/file/file.service.js +499 -0
- package/src/api/instance/instance.controller.js +8 -0
- package/src/api/instance/instance.model.js +34 -0
- package/src/api/instance/instance.router.js +27 -0
- package/src/api/instance/instance.service.js +75 -0
- package/src/api/ipfs/ipfs.controller.js +8 -0
- package/src/api/ipfs/ipfs.model.js +77 -0
- package/src/api/ipfs/ipfs.router.js +26 -0
- package/src/api/ipfs/ipfs.service.js +145 -0
- package/src/api/object-layer/object-layer.controller.js +18 -0
- package/src/api/object-layer/object-layer.model.js +200 -0
- package/src/api/object-layer/object-layer.router.js +729 -0
- package/src/api/object-layer/object-layer.service.js +894 -0
- package/src/api/object-layer-render-frames/object-layer-render-frames.controller.js +6 -0
- package/src/api/object-layer-render-frames/object-layer-render-frames.model.js +93 -0
- package/src/api/object-layer-render-frames/object-layer-render-frames.router.js +17 -0
- package/src/api/object-layer-render-frames/object-layer-render-frames.service.js +46 -0
- package/src/api/test/test.controller.js +14 -0
- package/src/api/test/test.model.js +14 -0
- package/src/api/test/test.router.js +23 -0
- package/src/api/test/test.service.js +35 -0
- package/src/api/types.js +24 -0
- package/src/api/user/guest.service.js +100 -0
- package/src/api/user/postman_collection.json +216 -0
- package/src/api/user/user.build.js +16 -0
- package/src/api/user/user.controller.js +35 -0
- package/src/api/user/user.model.js +142 -0
- package/src/api/user/user.router.js +367 -0
- package/src/api/user/user.service.js +582 -0
- package/src/api.js +23 -0
- package/src/cli/baremetal.js +3947 -0
- package/src/cli/cloud-init.js +673 -0
- package/src/cli/cluster.js +1395 -0
- package/src/cli/db.js +1533 -0
- package/src/cli/deploy.js +1542 -0
- package/src/cli/docker-compose.js +802 -0
- package/src/cli/env.js +177 -0
- package/src/cli/fs.js +380 -0
- package/src/cli/image.js +389 -0
- package/src/cli/index.js +1059 -0
- package/src/cli/ipfs.js +182 -0
- package/src/cli/kickstart.js +271 -0
- package/src/cli/kubectl.js +214 -0
- package/src/cli/lxd.js +1232 -0
- package/src/cli/monitor.js +659 -0
- package/src/cli/release.js +595 -0
- package/src/cli/repository.js +1969 -0
- package/src/cli/run.js +3326 -0
- package/src/cli/secrets.js +151 -0
- package/src/cli/ssh.js +975 -0
- package/src/cli/static.js +653 -0
- package/src/cli/system.js +332 -0
- package/src/cli/test.js +176 -0
- package/src/client/Cryptokoyn.index.js +30 -0
- package/src/client/CyberiaPortal.index.js +31 -0
- package/src/client/Default.index.js +77 -0
- package/src/client/Itemledger.index.js +35 -0
- package/src/client/Underpost.index.js +31 -0
- package/src/client/components/core/404.js +20 -0
- package/src/client/components/core/500.js +20 -0
- package/src/client/components/core/Account.js +630 -0
- package/src/client/components/core/AgGrid.js +238 -0
- package/src/client/components/core/Alert.js +76 -0
- package/src/client/components/core/AppStore.js +69 -0
- package/src/client/components/core/Auth.js +353 -0
- package/src/client/components/core/Badge.js +26 -0
- package/src/client/components/core/Blockchain.js +41 -0
- package/src/client/components/core/Blog.js +9 -0
- package/src/client/components/core/BtnIcon.js +109 -0
- package/src/client/components/core/CalendarCore.js +437 -0
- package/src/client/components/core/Chat.js +62 -0
- package/src/client/components/core/ClientEvents.js +163 -0
- package/src/client/components/core/ColorPaletteElement.js +309 -0
- package/src/client/components/core/CommonJs.js +1014 -0
- package/src/client/components/core/Content.js +349 -0
- package/src/client/components/core/Css.js +1134 -0
- package/src/client/components/core/CssCore.js +881 -0
- package/src/client/components/core/D3Chart.js +44 -0
- package/src/client/components/core/Docs.js +478 -0
- package/src/client/components/core/DropDown.js +321 -0
- package/src/client/components/core/EventBus.js +96 -0
- package/src/client/components/core/EventsUI.js +130 -0
- package/src/client/components/core/FileExplorer.js +1406 -0
- package/src/client/components/core/FullScreen.js +201 -0
- package/src/client/components/core/Input.js +537 -0
- package/src/client/components/core/Keyboard.js +80 -0
- package/src/client/components/core/KeyboardAvoidance.js +145 -0
- package/src/client/components/core/LoadingAnimation.js +152 -0
- package/src/client/components/core/LogIn.js +212 -0
- package/src/client/components/core/LogOut.js +72 -0
- package/src/client/components/core/Logger.js +22 -0
- package/src/client/components/core/Modal.js +2956 -0
- package/src/client/components/core/NotificationManager.js +80 -0
- package/src/client/components/core/Pagination.js +252 -0
- package/src/client/components/core/Panel.js +1308 -0
- package/src/client/components/core/PanelForm.js +915 -0
- package/src/client/components/core/Polyhedron.js +947 -0
- package/src/client/components/core/PublicProfile.js +895 -0
- package/src/client/components/core/Recover.js +211 -0
- package/src/client/components/core/Responsive.js +146 -0
- package/src/client/components/core/RichText.js +33 -0
- package/src/client/components/core/Router.js +523 -0
- package/src/client/components/core/Scroll.js +76 -0
- package/src/client/components/core/SearchBox.js +1007 -0
- package/src/client/components/core/SignUp.js +153 -0
- package/src/client/components/core/SocketIo.js +163 -0
- package/src/client/components/core/SocketIoHandler.js +75 -0
- package/src/client/components/core/Stream.js +161 -0
- package/src/client/components/core/ToggleSwitch.js +89 -0
- package/src/client/components/core/ToolTip.js +78 -0
- package/src/client/components/core/Translate.js +694 -0
- package/src/client/components/core/Validator.js +140 -0
- package/src/client/components/core/VanillaJs.js +485 -0
- package/src/client/components/core/Wallet.js +95 -0
- package/src/client/components/core/WebComponent.js +44 -0
- package/src/client/components/core/Webhook.js +58 -0
- package/src/client/components/core/Worker.js +313 -0
- package/src/client/components/core/windowGetDimensions.js +269 -0
- package/src/client/components/cryptokoyn/AppShellCryptokoyn.js +352 -0
- package/src/client/components/cryptokoyn/AppStoreCryptokoyn.js +5 -0
- package/src/client/components/cryptokoyn/CssCryptokoyn.js +212 -0
- package/src/client/components/cryptokoyn/LogInCryptokoyn.js +16 -0
- package/src/client/components/cryptokoyn/LogOutCryptokoyn.js +12 -0
- package/src/client/components/cryptokoyn/RouterCryptokoyn.js +37 -0
- package/src/client/components/cryptokoyn/SettingsCryptokoyn.js +16 -0
- package/src/client/components/cryptokoyn/SignUpCryptokoyn.js +11 -0
- package/src/client/components/cryptokoyn/SocketIoCryptokoyn.js +6 -0
- package/src/client/components/cyberia/ActionEngineCyberia.js +1867 -0
- package/src/client/components/cyberia/EntityEngineCyberia.js +585 -0
- package/src/client/components/cyberia/InstanceEngineCyberia.js +1088 -0
- package/src/client/components/cyberia/InstanceSelectionView.js +900 -0
- package/src/client/components/cyberia/MapEngineCyberia.js +1976 -0
- package/src/client/components/cyberia/ObjectLayerEngine.js +1540 -0
- package/src/client/components/cyberia/ObjectLayerEngineModal.js +2420 -0
- package/src/client/components/cyberia/ObjectLayerEngineViewer.js +1522 -0
- package/src/client/components/cyberia/SharedDefaultsCyberia.js +528 -0
- package/src/client/components/cyberia-portal/AppShellCyberiaPortal.js +772 -0
- package/src/client/components/cyberia-portal/AppStoreCyberiaPortal.js +5 -0
- package/src/client/components/cyberia-portal/CssCyberiaPortal.js +254 -0
- package/src/client/components/cyberia-portal/LogInCyberiaPortal.js +21 -0
- package/src/client/components/cyberia-portal/LogOutCyberiaPortal.js +16 -0
- package/src/client/components/cyberia-portal/MainBodyCyberiaPortal.js +518 -0
- package/src/client/components/cyberia-portal/RouterCyberiaPortal.js +72 -0
- package/src/client/components/cyberia-portal/SettingsCyberiaPortal.js +16 -0
- package/src/client/components/cyberia-portal/SignUpCyberiaPortal.js +13 -0
- package/src/client/components/cyberia-portal/SocketIoCyberiaPortal.js +6 -0
- package/src/client/components/cyberia-portal/TranslateCyberiaPortal.js +48 -0
- package/src/client/components/default/AppShellDefault.js +765 -0
- package/src/client/components/default/AppStoreDefault.js +5 -0
- package/src/client/components/default/CommonDefault.js +29 -0
- package/src/client/components/default/CssDefault.js +27 -0
- package/src/client/components/default/LogInDefault.js +16 -0
- package/src/client/components/default/LogOutDefault.js +12 -0
- package/src/client/components/default/RouterDefault.js +47 -0
- package/src/client/components/default/SettingsDefault.js +16 -0
- package/src/client/components/default/SignUpDefault.js +11 -0
- package/src/client/components/default/SocketIoDefault.js +6 -0
- package/src/client/components/default/TranslateDefault.js +7 -0
- package/src/client/components/itemledger/AppShellItemledger.js +353 -0
- package/src/client/components/itemledger/AppStoreItemledger.js +5 -0
- package/src/client/components/itemledger/CssItemledger.js +212 -0
- package/src/client/components/itemledger/LogInItemledger.js +17 -0
- package/src/client/components/itemledger/LogOutItemledger.js +12 -0
- package/src/client/components/itemledger/RouterItemledger.js +38 -0
- package/src/client/components/itemledger/SettingsItemledger.js +16 -0
- package/src/client/components/itemledger/SignUpItemledger.js +11 -0
- package/src/client/components/itemledger/SocketIoItemledger.js +6 -0
- package/src/client/components/itemledger/TranslateItemledger.js +7 -0
- package/src/client/components/underpost/AppShellUnderpost.js +691 -0
- package/src/client/components/underpost/AppStoreUnderpost.js +5 -0
- package/src/client/components/underpost/CssUnderpost.js +281 -0
- package/src/client/components/underpost/CyberpunkBloggerUnderpost.js +879 -0
- package/src/client/components/underpost/DocumentSearchProvider.js +448 -0
- package/src/client/components/underpost/LabGalleryUnderpost.js +79 -0
- package/src/client/components/underpost/LogInUnderpost.js +25 -0
- package/src/client/components/underpost/LogOutUnderpost.js +17 -0
- package/src/client/components/underpost/RouterUnderpost.js +45 -0
- package/src/client/components/underpost/SettingsUnderpost.js +16 -0
- package/src/client/components/underpost/SignUpUnderpost.js +11 -0
- package/src/client/components/underpost/SocketIoUnderpost.js +6 -0
- package/src/client/components/underpost/TranslateUnderpost.js +10 -0
- package/src/client/public/cryptokoyn/assets/banner/koyn-social.png +0 -0
- package/src/client/public/cryptokoyn/assets/logo/base-icon.png +0 -0
- package/src/client/public/cryptokoyn/assets/logo/cryptokoyn.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/android-chrome-144x144.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/android-chrome-192x192.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/android-chrome-256x256.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/android-chrome-36x36.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/android-chrome-48x48.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/android-chrome-72x72.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/android-chrome-96x96.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-114x114-precomposed.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-114x114.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-120x120-precomposed.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-120x120.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-144x144-precomposed.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-144x144.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-152x152-precomposed.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-152x152.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-180x180-precomposed.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-180x180.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-57x57-precomposed.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-57x57.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-60x60-precomposed.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-60x60.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-72x72-precomposed.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-72x72.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-76x76-precomposed.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-76x76.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon-precomposed.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/apple-touch-icon.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/favicon-16x16.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/favicon-32x32.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/mstile-144x144.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/mstile-150x150.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/mstile-310x150.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/mstile-310x310.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/mstile-70x70.png +0 -0
- package/src/client/public/cryptokoyn/assets/splash/safari-pinned-tab.svg +42 -0
- package/src/client/public/cryptokoyn/browserconfig.xml +12 -0
- package/src/client/public/cryptokoyn/favicon.ico +0 -0
- package/src/client/public/cryptokoyn/microdata.json +85 -0
- package/src/client/public/cryptokoyn/site.webmanifest +57 -0
- package/src/client/public/cryptokoyn/sitemap +148 -0
- package/src/client/public/cyberia-docs/ACTION-SYSTEM.md +307 -0
- package/src/client/public/cyberia-docs/ARCHITECTURE.md +309 -0
- package/src/client/public/cyberia-docs/CYBERIA-CLI.md +204 -0
- package/src/client/public/cyberia-docs/CYBERIA-CLIENT.md +341 -0
- package/src/client/public/cyberia-docs/CYBERIA-LORE.md +84 -0
- package/src/client/public/cyberia-docs/CYBERIA-SAGA.md +394 -0
- package/src/client/public/cyberia-docs/CYBERIA-SERVER.md +294 -0
- package/src/client/public/cyberia-docs/CYBERIA.md +259 -0
- package/src/client/public/cyberia-docs/ENTITY-PROFILE.md +242 -0
- package/src/client/public/cyberia-docs/HARDHAT-MODULE.md +300 -0
- package/src/client/public/cyberia-docs/OFF-CHAIN-ECONOMY.md +309 -0
- package/src/client/public/cyberia-docs/QUEST-SYSTEM.md +228 -0
- package/src/client/public/cyberia-docs/ROADMAP.md +240 -0
- package/src/client/public/cyberia-docs/UNDERPOST-PLATFORM.md +106 -0
- package/src/client/public/cyberia-docs/WHITE-PAPER.md +740 -0
- package/src/client/public/default/android-chrome-144x144.png +0 -0
- package/src/client/public/default/android-chrome-192x192.png +0 -0
- package/src/client/public/default/android-chrome-256x256.png +0 -0
- package/src/client/public/default/android-chrome-36x36.png +0 -0
- package/src/client/public/default/android-chrome-384x384.png +0 -0
- package/src/client/public/default/android-chrome-48x48.png +0 -0
- package/src/client/public/default/android-chrome-512x512.png +0 -0
- package/src/client/public/default/android-chrome-72x72.png +0 -0
- package/src/client/public/default/android-chrome-96x96.png +0 -0
- package/src/client/public/default/apple-touch-icon-1024x1024.png +0 -0
- package/src/client/public/default/apple-touch-icon-114x114-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-114x114.png +0 -0
- package/src/client/public/default/apple-touch-icon-120x120-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-120x120.png +0 -0
- package/src/client/public/default/apple-touch-icon-144x144-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-144x144.png +0 -0
- package/src/client/public/default/apple-touch-icon-152x152-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-152x152.png +0 -0
- package/src/client/public/default/apple-touch-icon-167x167.png +0 -0
- package/src/client/public/default/apple-touch-icon-180x180-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-180x180.png +0 -0
- package/src/client/public/default/apple-touch-icon-57x57-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-57x57.png +0 -0
- package/src/client/public/default/apple-touch-icon-60x60-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-60x60.png +0 -0
- package/src/client/public/default/apple-touch-icon-72x72-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-72x72.png +0 -0
- package/src/client/public/default/apple-touch-icon-76x76-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon-76x76.png +0 -0
- package/src/client/public/default/apple-touch-icon-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1125x2436.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1136x640.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1170x2532.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1179x2556.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1242x2208.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1242x2688.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1284x2778.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1290x2796.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1334x750.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1488x2266.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1536x2048.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1620x2160.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1640x2160.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1668x2224.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1668x2388.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1792x828.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2048x1536.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2048x2732.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2160x1620.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2160x1640.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2208x1242.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2224x1668.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2266x1488.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2388x1668.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2436x1125.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2532x1170.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2556x1179.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2688x1242.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2732x2048.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2778x1284.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2796x1290.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-640x1136.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-750x1334.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-828x1792.png +0 -0
- package/src/client/public/default/assets/background/dark.jpg +0 -0
- package/src/client/public/default/assets/background/dark.svg +557 -0
- package/src/client/public/default/assets/background/white.jpg +0 -0
- package/src/client/public/default/assets/background/white0-min.jpg +0 -0
- package/src/client/public/default/assets/background/white0.jpg +0 -0
- package/src/client/public/default/assets/logo/base-icon.png +0 -0
- package/src/client/public/default/assets/logo/underpost.gif +0 -0
- package/src/client/public/default/assets/mailer/api-user-check.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-default-avatar.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-invalid-token.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-recover.png +0 -0
- package/src/client/public/default/browserconfig.xml +12 -0
- package/src/client/public/default/favicon-16x16.png +0 -0
- package/src/client/public/default/favicon-32x32.png +0 -0
- package/src/client/public/default/favicon-48x48.png +0 -0
- package/src/client/public/default/favicon.ico +0 -0
- package/src/client/public/default/manifest.webmanifest +69 -0
- package/src/client/public/default/mstile-144x144.png +0 -0
- package/src/client/public/default/mstile-150x150.png +0 -0
- package/src/client/public/default/mstile-310x150.png +0 -0
- package/src/client/public/default/mstile-310x310.png +0 -0
- package/src/client/public/default/mstile-70x70.png +0 -0
- package/src/client/public/default/safari-pinned-tab.svg +24 -0
- package/src/client/public/default/site.webmanifest +69 -0
- package/src/client/public/default/sitemap +148 -0
- package/src/client/public/default/yandex-browser-50x50.png +0 -0
- package/src/client/public/default/yandex-browser-manifest.json +9 -0
- package/src/client/public/doc/favicon.ico +0 -0
- package/src/client/public/doc/sitemap +148 -0
- package/src/client/public/itemledger/android-chrome-144x144.png +0 -0
- package/src/client/public/itemledger/android-chrome-192x192.png +0 -0
- package/src/client/public/itemledger/android-chrome-256x256.png +0 -0
- package/src/client/public/itemledger/android-chrome-36x36.png +0 -0
- package/src/client/public/itemledger/android-chrome-384x384.png +0 -0
- package/src/client/public/itemledger/android-chrome-48x48.png +0 -0
- package/src/client/public/itemledger/android-chrome-512x512.png +0 -0
- package/src/client/public/itemledger/android-chrome-72x72.png +0 -0
- package/src/client/public/itemledger/android-chrome-96x96.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-1024x1024.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-114x114.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-120x120.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-144x144.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-152x152.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-167x167.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-180x180.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-57x57.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-60x60.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-72x72.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-76x76.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon-precomposed.png +0 -0
- package/src/client/public/itemledger/apple-touch-icon.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1125x2436.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1136x640.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1170x2532.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1179x2556.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1242x2208.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1242x2688.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1284x2778.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1290x2796.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1334x750.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1488x2266.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1536x2048.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1620x2160.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1640x2160.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1668x2224.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1668x2388.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-1792x828.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2048x1536.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2048x2732.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2160x1620.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2160x1640.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2208x1242.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2224x1668.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2266x1488.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2388x1668.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2436x1125.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2532x1170.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2556x1179.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2688x1242.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2732x2048.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2778x1284.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-2796x1290.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-640x1136.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-750x1334.png +0 -0
- package/src/client/public/itemledger/apple-touch-startup-image-828x1792.png +0 -0
- package/src/client/public/itemledger/assets/logo/base-icon.png +0 -0
- package/src/client/public/itemledger/browserconfig.xml +12 -0
- package/src/client/public/itemledger/favicon-16x16.png +0 -0
- package/src/client/public/itemledger/favicon-32x32.png +0 -0
- package/src/client/public/itemledger/favicon-48x48.png +0 -0
- package/src/client/public/itemledger/favicon.ico +0 -0
- package/src/client/public/itemledger/manifest.webmanifest +69 -0
- package/src/client/public/itemledger/microdata.json +71 -0
- package/src/client/public/itemledger/mstile-144x144.png +0 -0
- package/src/client/public/itemledger/mstile-150x150.png +0 -0
- package/src/client/public/itemledger/mstile-310x150.png +0 -0
- package/src/client/public/itemledger/mstile-310x310.png +0 -0
- package/src/client/public/itemledger/mstile-70x70.png +0 -0
- package/src/client/public/itemledger/sitemap +148 -0
- package/src/client/public/itemledger/yandex-browser-50x50.png +0 -0
- package/src/client/public/itemledger/yandex-browser-manifest.json +9 -0
- package/src/client/public/test/favicon.ico +0 -0
- package/src/client/public/test/sitemap +148 -0
- package/src/client/services/atlas-sprite-sheet/atlas-sprite-sheet.service.js +137 -0
- package/src/client/services/core/core.service.js +309 -0
- package/src/client/services/crypto/crypto.service.js +68 -0
- package/src/client/services/cyberia-action/cyberia-action.service.js +99 -0
- package/src/client/services/cyberia-client-hints/cyberia-client-hints.service.js +99 -0
- package/src/client/services/cyberia-dialogue/cyberia-dialogue.service.js +99 -0
- package/src/client/services/cyberia-entity/cyberia-entity.management.js +57 -0
- package/src/client/services/cyberia-entity/cyberia-entity.service.js +99 -0
- package/src/client/services/cyberia-entity-type-default/cyberia-entity-type-default.service.js +99 -0
- package/src/client/services/cyberia-instance/cyberia-instance.management.js +194 -0
- package/src/client/services/cyberia-instance/cyberia-instance.service.js +137 -0
- package/src/client/services/cyberia-instance-conf/cyberia-instance-conf.service.js +99 -0
- package/src/client/services/cyberia-map/cyberia-map.management.js +193 -0
- package/src/client/services/cyberia-map/cyberia-map.service.js +120 -0
- package/src/client/services/cyberia-quest/cyberia-quest.service.js +99 -0
- package/src/client/services/cyberia-quest-progress/cyberia-quest-progress.service.js +99 -0
- package/src/client/services/cyberia-saga/cyberia-saga.service.js +99 -0
- package/src/client/services/cyberia-skill/cyberia-skill.service.js +99 -0
- package/src/client/services/default/default.management.js +1015 -0
- package/src/client/services/default/default.service.js +99 -0
- package/src/client/services/document/document.service.js +134 -0
- package/src/client/services/file/file.service.js +94 -0
- package/src/client/services/instance/instance.management.js +78 -0
- package/src/client/services/instance/instance.service.js +107 -0
- package/src/client/services/ipfs/ipfs.service.js +118 -0
- package/src/client/services/object-layer/object-layer.management.js +414 -0
- package/src/client/services/object-layer/object-layer.service.js +208 -0
- package/src/client/services/object-layer-render-frames/object-layer-render-frames.service.js +99 -0
- package/src/client/services/test/test.service.js +68 -0
- package/src/client/services/user/guest.service.js +86 -0
- package/src/client/services/user/user.management.js +51 -0
- package/src/client/services/user/user.service.js +106 -0
- package/src/client/ssr/RootDocument.js +237 -0
- package/src/client/ssr/body/404.js +77 -0
- package/src/client/ssr/body/500.js +76 -0
- package/src/client/ssr/body/CacheControl.js +117 -0
- package/src/client/ssr/body/CyberiaDefaultSplashScreen.js +97 -0
- package/src/client/ssr/body/DefaultSplashScreen.js +97 -0
- package/src/client/ssr/body/SwaggerDarkMode.js +285 -0
- package/src/client/ssr/body/UnderpostDefaultSplashScreen.js +90 -0
- package/src/client/ssr/head/CryptokoynScripts.js +4 -0
- package/src/client/ssr/head/Css.js +241 -0
- package/src/client/ssr/head/CyberiaPortalScripts.js +6 -0
- package/src/client/ssr/head/DefaultScripts.js +6 -0
- package/src/client/ssr/head/ItemledgerScripts.js +4 -0
- package/src/client/ssr/head/Microdata.js +11 -0
- package/src/client/ssr/head/Production.js +1 -0
- package/src/client/ssr/head/Pwa.js +146 -0
- package/src/client/ssr/head/PwaItemledger.js +197 -0
- package/src/client/ssr/head/Seo.js +15 -0
- package/src/client/ssr/head/UnderpostScripts.js +6 -0
- package/src/client/ssr/mailer/DefaultRecoverEmail.js +20 -0
- package/src/client/ssr/mailer/DefaultVerifyEmail.js +16 -0
- package/src/client/ssr/views/Cyberia404.js +328 -0
- package/src/client/ssr/views/CyberiaServerMetrics.js +1070 -0
- package/src/client/ssr/views/Maintenance.js +64 -0
- package/src/client/ssr/views/NoNetworkConnection.js +68 -0
- package/src/client/ssr/views/Test.js +199 -0
- package/src/client/sw/core.sw.js +274 -0
- package/src/client-builder/client-build-docs.js +493 -0
- package/src/client-builder/client-build-live.js +100 -0
- package/src/client-builder/client-build.js +1092 -0
- package/src/client-builder/client-dev-server.js +88 -0
- package/src/client-builder/client-formatted.js +170 -0
- package/src/client-builder/client-icons.js +108 -0
- package/src/client-builder/ssr.js +124 -0
- package/src/client.build.js +17 -0
- package/src/client.dev.js +21 -0
- package/src/db/DataBaseProvider.js +213 -0
- package/src/db/mariadb/MariaDB.js +72 -0
- package/src/db/mongo/MongoBootstrap.js +657 -0
- package/src/db/mongo/MongooseDB.js +199 -0
- package/src/grpc/cyberia/grpc-server.js +162 -0
- package/src/index.js +357 -0
- package/src/mailer/EmailRender.js +116 -0
- package/src/mailer/MailerProvider.js +213 -0
- package/src/projects/cyberia/atlas-sprite-sheet-generator.js +413 -0
- package/src/projects/cyberia/besu-genesis-generator.js +1630 -0
- package/src/projects/cyberia/catalog-cyberia.js +90 -0
- package/src/projects/cyberia/gemini-client.js +175 -0
- package/src/projects/cyberia/generate-saga.js +2137 -0
- package/src/projects/cyberia/hot-reload-trigger.js +163 -0
- package/src/projects/cyberia/instance-data.js +719 -0
- package/src/projects/cyberia/ipfs-client.js +599 -0
- package/src/projects/cyberia/map-preview-generator.js +304 -0
- package/src/projects/cyberia/object-layer.js +978 -0
- package/src/projects/cyberia/semantic-layer-generator-floor.js +319 -0
- package/src/projects/cyberia/semantic-layer-generator-resource.js +259 -0
- package/src/projects/cyberia/semantic-layer-generator-skin.js +1164 -0
- package/src/projects/cyberia/semantic-layer-generator.js +753 -0
- package/src/projects/cyberia/shape-generator.js +1060 -0
- package/src/projects/underpost/catalog-underpost.js +60 -0
- package/src/proxy.js +19 -0
- package/src/runtime/cyberia-client/Dockerfile +49 -0
- package/src/runtime/cyberia-client/Dockerfile.dev +75 -0
- package/src/runtime/cyberia-server/Dockerfile +43 -0
- package/src/runtime/cyberia-server/Dockerfile.dev +56 -0
- package/src/runtime/engine-cyberia/Dockerfile +161 -0
- package/src/runtime/engine-cyberia/Dockerfile.dev +161 -0
- package/src/runtime/engine-cyberia/Dockerfile.test +165 -0
- package/src/runtime/engine-cyberia/compose.env +144 -0
- package/src/runtime/engine-cyberia/docker-compose.yml +434 -0
- package/src/runtime/engine-cyberia/ipfs/configure-ipfs.sh +13 -0
- package/src/runtime/engine-cyberia/mongodb/entrypoint.sh +76 -0
- package/src/runtime/engine-cyberia/nginx.conf +128 -0
- package/src/runtime/express/Dockerfile +45 -0
- package/src/runtime/express/Express.js +285 -0
- package/src/runtime/lampp/Dockerfile +62 -0
- package/src/runtime/lampp/Lampp.js +359 -0
- package/src/runtime/nginx/Nginx.js +250 -0
- package/src/runtime/wp/Dockerfile +62 -0
- package/src/runtime/wp/Wp.js +642 -0
- package/src/server/auth.js +713 -0
- package/src/server/backup.js +102 -0
- package/src/server/catalog.js +72 -0
- package/src/server/conf.js +2316 -0
- package/src/server/cron.js +476 -0
- package/src/server/crypto.js +210 -0
- package/src/server/data-query.js +461 -0
- package/src/server/dns.js +553 -0
- package/src/server/downloader.js +73 -0
- package/src/server/logger.js +229 -0
- package/src/server/middlewares.js +152 -0
- package/src/server/peer.js +75 -0
- package/src/server/process.js +299 -0
- package/src/server/proxy.js +139 -0
- package/src/server/runtime-status.js +252 -0
- package/src/server/runtime.js +183 -0
- package/src/server/start.js +272 -0
- package/src/server/tls.js +254 -0
- package/src/server/valkey.js +201 -0
- package/src/server.js +25 -0
- package/src/ws/IoInterface.js +129 -0
- package/src/ws/IoServer.js +68 -0
- package/src/ws/core/channels/core.ws.chat.js +68 -0
- package/src/ws/core/channels/core.ws.mailer.js +116 -0
- package/src/ws/core/channels/core.ws.stream.js +90 -0
- package/src/ws/core/core.ws.connection.js +41 -0
- package/src/ws/core/core.ws.emit.js +37 -0
- package/src/ws/core/core.ws.server.js +44 -0
- package/src/ws/default/channels/default.ws.main.js +57 -0
- package/src/ws/default/default.ws.connection.js +35 -0
- package/src/ws/default/default.ws.emit.js +14 -0
- package/src/ws/default/default.ws.server.js +39 -0
- package/test/api.test.js +53 -0
- package/test/crypto.test.js +117 -0
- package/test/cyberia-instance-conf-defaults.test.js +140 -0
- package/test/deploy-monitor.test.js +267 -0
- package/test/shape-generator.test.js +463 -0
- package/tsconfig.docs.json +15 -0
- package/typedoc.dd-cyberia.json +31 -0
- package/typedoc.json +31 -0
|
@@ -0,0 +1,2871 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cyberia-hardhat",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "cyberia-hardhat",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@openzeppelin/contracts": "~5.6.1",
|
|
12
|
+
"dotenv": "~17.4.2",
|
|
13
|
+
"fs-extra": "~11.3.6"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"@nomicfoundation/hardhat-toolbox-viem": "^5.0.7",
|
|
17
|
+
"chai": "^6.2.2",
|
|
18
|
+
"hardhat": "~3.10.0"
|
|
19
|
+
},
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=22.0.0"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"node_modules/@actions/core": {
|
|
25
|
+
"version": "1.11.1",
|
|
26
|
+
"resolved": "https://registry.npmjs.org/@actions/core/-/core-1.11.1.tgz",
|
|
27
|
+
"integrity": "sha512-hXJCSrkwfA46Vd9Z3q4cpEpHB1rL5NG04+/rbqW9d3+CSvtB1tYe8UTpAlixa1vj0m/ULglfEK2UKxMGxCxv5A==",
|
|
28
|
+
"dev": true,
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"peer": true,
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@actions/exec": "^1.1.1",
|
|
33
|
+
"@actions/http-client": "^2.0.1"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"node_modules/@actions/exec": {
|
|
37
|
+
"version": "1.1.1",
|
|
38
|
+
"resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.1.1.tgz",
|
|
39
|
+
"integrity": "sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==",
|
|
40
|
+
"dev": true,
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"peer": true,
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@actions/io": "^1.0.1"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"node_modules/@actions/http-client": {
|
|
48
|
+
"version": "2.2.3",
|
|
49
|
+
"resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.2.3.tgz",
|
|
50
|
+
"integrity": "sha512-mx8hyJi/hjFvbPokCg4uRd4ZX78t+YyRPtnKWwIl+RzNaVuFpQHfmlGVfsKEJN8LwTCvL+DfVgAM04XaHkm6bA==",
|
|
51
|
+
"dev": true,
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"peer": true,
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"tunnel": "^0.0.6",
|
|
56
|
+
"undici": "^5.25.4"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"node_modules/@actions/io": {
|
|
60
|
+
"version": "1.1.3",
|
|
61
|
+
"resolved": "https://registry.npmjs.org/@actions/io/-/io-1.1.3.tgz",
|
|
62
|
+
"integrity": "sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==",
|
|
63
|
+
"dev": true,
|
|
64
|
+
"license": "MIT",
|
|
65
|
+
"peer": true
|
|
66
|
+
},
|
|
67
|
+
"node_modules/@adraffy/ens-normalize": {
|
|
68
|
+
"version": "1.11.1",
|
|
69
|
+
"resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.1.tgz",
|
|
70
|
+
"integrity": "sha512-nhCBV3quEgesuf7c7KYfperqSS14T8bYuvJ8PcLJp6znkZpFc0AuW4qBtr8eKVyPPe/8RSr7sglCWPU5eaxwKQ==",
|
|
71
|
+
"dev": true,
|
|
72
|
+
"license": "MIT",
|
|
73
|
+
"peer": true
|
|
74
|
+
},
|
|
75
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
76
|
+
"version": "0.28.1",
|
|
77
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz",
|
|
78
|
+
"integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==",
|
|
79
|
+
"cpu": [
|
|
80
|
+
"ppc64"
|
|
81
|
+
],
|
|
82
|
+
"dev": true,
|
|
83
|
+
"license": "MIT",
|
|
84
|
+
"optional": true,
|
|
85
|
+
"os": [
|
|
86
|
+
"aix"
|
|
87
|
+
],
|
|
88
|
+
"engines": {
|
|
89
|
+
"node": ">=18"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"node_modules/@esbuild/android-arm": {
|
|
93
|
+
"version": "0.28.1",
|
|
94
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz",
|
|
95
|
+
"integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==",
|
|
96
|
+
"cpu": [
|
|
97
|
+
"arm"
|
|
98
|
+
],
|
|
99
|
+
"dev": true,
|
|
100
|
+
"license": "MIT",
|
|
101
|
+
"optional": true,
|
|
102
|
+
"os": [
|
|
103
|
+
"android"
|
|
104
|
+
],
|
|
105
|
+
"engines": {
|
|
106
|
+
"node": ">=18"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"node_modules/@esbuild/android-arm64": {
|
|
110
|
+
"version": "0.28.1",
|
|
111
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz",
|
|
112
|
+
"integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==",
|
|
113
|
+
"cpu": [
|
|
114
|
+
"arm64"
|
|
115
|
+
],
|
|
116
|
+
"dev": true,
|
|
117
|
+
"license": "MIT",
|
|
118
|
+
"optional": true,
|
|
119
|
+
"os": [
|
|
120
|
+
"android"
|
|
121
|
+
],
|
|
122
|
+
"engines": {
|
|
123
|
+
"node": ">=18"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"node_modules/@esbuild/android-x64": {
|
|
127
|
+
"version": "0.28.1",
|
|
128
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz",
|
|
129
|
+
"integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==",
|
|
130
|
+
"cpu": [
|
|
131
|
+
"x64"
|
|
132
|
+
],
|
|
133
|
+
"dev": true,
|
|
134
|
+
"license": "MIT",
|
|
135
|
+
"optional": true,
|
|
136
|
+
"os": [
|
|
137
|
+
"android"
|
|
138
|
+
],
|
|
139
|
+
"engines": {
|
|
140
|
+
"node": ">=18"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
144
|
+
"version": "0.28.1",
|
|
145
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz",
|
|
146
|
+
"integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==",
|
|
147
|
+
"cpu": [
|
|
148
|
+
"arm64"
|
|
149
|
+
],
|
|
150
|
+
"dev": true,
|
|
151
|
+
"license": "MIT",
|
|
152
|
+
"optional": true,
|
|
153
|
+
"os": [
|
|
154
|
+
"darwin"
|
|
155
|
+
],
|
|
156
|
+
"engines": {
|
|
157
|
+
"node": ">=18"
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
161
|
+
"version": "0.28.1",
|
|
162
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz",
|
|
163
|
+
"integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==",
|
|
164
|
+
"cpu": [
|
|
165
|
+
"x64"
|
|
166
|
+
],
|
|
167
|
+
"dev": true,
|
|
168
|
+
"license": "MIT",
|
|
169
|
+
"optional": true,
|
|
170
|
+
"os": [
|
|
171
|
+
"darwin"
|
|
172
|
+
],
|
|
173
|
+
"engines": {
|
|
174
|
+
"node": ">=18"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
178
|
+
"version": "0.28.1",
|
|
179
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz",
|
|
180
|
+
"integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==",
|
|
181
|
+
"cpu": [
|
|
182
|
+
"arm64"
|
|
183
|
+
],
|
|
184
|
+
"dev": true,
|
|
185
|
+
"license": "MIT",
|
|
186
|
+
"optional": true,
|
|
187
|
+
"os": [
|
|
188
|
+
"freebsd"
|
|
189
|
+
],
|
|
190
|
+
"engines": {
|
|
191
|
+
"node": ">=18"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
195
|
+
"version": "0.28.1",
|
|
196
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz",
|
|
197
|
+
"integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==",
|
|
198
|
+
"cpu": [
|
|
199
|
+
"x64"
|
|
200
|
+
],
|
|
201
|
+
"dev": true,
|
|
202
|
+
"license": "MIT",
|
|
203
|
+
"optional": true,
|
|
204
|
+
"os": [
|
|
205
|
+
"freebsd"
|
|
206
|
+
],
|
|
207
|
+
"engines": {
|
|
208
|
+
"node": ">=18"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"node_modules/@esbuild/linux-arm": {
|
|
212
|
+
"version": "0.28.1",
|
|
213
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz",
|
|
214
|
+
"integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==",
|
|
215
|
+
"cpu": [
|
|
216
|
+
"arm"
|
|
217
|
+
],
|
|
218
|
+
"dev": true,
|
|
219
|
+
"license": "MIT",
|
|
220
|
+
"optional": true,
|
|
221
|
+
"os": [
|
|
222
|
+
"linux"
|
|
223
|
+
],
|
|
224
|
+
"engines": {
|
|
225
|
+
"node": ">=18"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
229
|
+
"version": "0.28.1",
|
|
230
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz",
|
|
231
|
+
"integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==",
|
|
232
|
+
"cpu": [
|
|
233
|
+
"arm64"
|
|
234
|
+
],
|
|
235
|
+
"dev": true,
|
|
236
|
+
"license": "MIT",
|
|
237
|
+
"optional": true,
|
|
238
|
+
"os": [
|
|
239
|
+
"linux"
|
|
240
|
+
],
|
|
241
|
+
"engines": {
|
|
242
|
+
"node": ">=18"
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
246
|
+
"version": "0.28.1",
|
|
247
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz",
|
|
248
|
+
"integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==",
|
|
249
|
+
"cpu": [
|
|
250
|
+
"ia32"
|
|
251
|
+
],
|
|
252
|
+
"dev": true,
|
|
253
|
+
"license": "MIT",
|
|
254
|
+
"optional": true,
|
|
255
|
+
"os": [
|
|
256
|
+
"linux"
|
|
257
|
+
],
|
|
258
|
+
"engines": {
|
|
259
|
+
"node": ">=18"
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
263
|
+
"version": "0.28.1",
|
|
264
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz",
|
|
265
|
+
"integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==",
|
|
266
|
+
"cpu": [
|
|
267
|
+
"loong64"
|
|
268
|
+
],
|
|
269
|
+
"dev": true,
|
|
270
|
+
"license": "MIT",
|
|
271
|
+
"optional": true,
|
|
272
|
+
"os": [
|
|
273
|
+
"linux"
|
|
274
|
+
],
|
|
275
|
+
"engines": {
|
|
276
|
+
"node": ">=18"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
280
|
+
"version": "0.28.1",
|
|
281
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz",
|
|
282
|
+
"integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==",
|
|
283
|
+
"cpu": [
|
|
284
|
+
"mips64el"
|
|
285
|
+
],
|
|
286
|
+
"dev": true,
|
|
287
|
+
"license": "MIT",
|
|
288
|
+
"optional": true,
|
|
289
|
+
"os": [
|
|
290
|
+
"linux"
|
|
291
|
+
],
|
|
292
|
+
"engines": {
|
|
293
|
+
"node": ">=18"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
297
|
+
"version": "0.28.1",
|
|
298
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz",
|
|
299
|
+
"integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==",
|
|
300
|
+
"cpu": [
|
|
301
|
+
"ppc64"
|
|
302
|
+
],
|
|
303
|
+
"dev": true,
|
|
304
|
+
"license": "MIT",
|
|
305
|
+
"optional": true,
|
|
306
|
+
"os": [
|
|
307
|
+
"linux"
|
|
308
|
+
],
|
|
309
|
+
"engines": {
|
|
310
|
+
"node": ">=18"
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
314
|
+
"version": "0.28.1",
|
|
315
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz",
|
|
316
|
+
"integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==",
|
|
317
|
+
"cpu": [
|
|
318
|
+
"riscv64"
|
|
319
|
+
],
|
|
320
|
+
"dev": true,
|
|
321
|
+
"license": "MIT",
|
|
322
|
+
"optional": true,
|
|
323
|
+
"os": [
|
|
324
|
+
"linux"
|
|
325
|
+
],
|
|
326
|
+
"engines": {
|
|
327
|
+
"node": ">=18"
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
331
|
+
"version": "0.28.1",
|
|
332
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz",
|
|
333
|
+
"integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==",
|
|
334
|
+
"cpu": [
|
|
335
|
+
"s390x"
|
|
336
|
+
],
|
|
337
|
+
"dev": true,
|
|
338
|
+
"license": "MIT",
|
|
339
|
+
"optional": true,
|
|
340
|
+
"os": [
|
|
341
|
+
"linux"
|
|
342
|
+
],
|
|
343
|
+
"engines": {
|
|
344
|
+
"node": ">=18"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
"node_modules/@esbuild/linux-x64": {
|
|
348
|
+
"version": "0.28.1",
|
|
349
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz",
|
|
350
|
+
"integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==",
|
|
351
|
+
"cpu": [
|
|
352
|
+
"x64"
|
|
353
|
+
],
|
|
354
|
+
"dev": true,
|
|
355
|
+
"license": "MIT",
|
|
356
|
+
"optional": true,
|
|
357
|
+
"os": [
|
|
358
|
+
"linux"
|
|
359
|
+
],
|
|
360
|
+
"engines": {
|
|
361
|
+
"node": ">=18"
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"node_modules/@esbuild/netbsd-arm64": {
|
|
365
|
+
"version": "0.28.1",
|
|
366
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz",
|
|
367
|
+
"integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==",
|
|
368
|
+
"cpu": [
|
|
369
|
+
"arm64"
|
|
370
|
+
],
|
|
371
|
+
"dev": true,
|
|
372
|
+
"license": "MIT",
|
|
373
|
+
"optional": true,
|
|
374
|
+
"os": [
|
|
375
|
+
"netbsd"
|
|
376
|
+
],
|
|
377
|
+
"engines": {
|
|
378
|
+
"node": ">=18"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
382
|
+
"version": "0.28.1",
|
|
383
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz",
|
|
384
|
+
"integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==",
|
|
385
|
+
"cpu": [
|
|
386
|
+
"x64"
|
|
387
|
+
],
|
|
388
|
+
"dev": true,
|
|
389
|
+
"license": "MIT",
|
|
390
|
+
"optional": true,
|
|
391
|
+
"os": [
|
|
392
|
+
"netbsd"
|
|
393
|
+
],
|
|
394
|
+
"engines": {
|
|
395
|
+
"node": ">=18"
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"node_modules/@esbuild/openbsd-arm64": {
|
|
399
|
+
"version": "0.28.1",
|
|
400
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz",
|
|
401
|
+
"integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==",
|
|
402
|
+
"cpu": [
|
|
403
|
+
"arm64"
|
|
404
|
+
],
|
|
405
|
+
"dev": true,
|
|
406
|
+
"license": "MIT",
|
|
407
|
+
"optional": true,
|
|
408
|
+
"os": [
|
|
409
|
+
"openbsd"
|
|
410
|
+
],
|
|
411
|
+
"engines": {
|
|
412
|
+
"node": ">=18"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
416
|
+
"version": "0.28.1",
|
|
417
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz",
|
|
418
|
+
"integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==",
|
|
419
|
+
"cpu": [
|
|
420
|
+
"x64"
|
|
421
|
+
],
|
|
422
|
+
"dev": true,
|
|
423
|
+
"license": "MIT",
|
|
424
|
+
"optional": true,
|
|
425
|
+
"os": [
|
|
426
|
+
"openbsd"
|
|
427
|
+
],
|
|
428
|
+
"engines": {
|
|
429
|
+
"node": ">=18"
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
"node_modules/@esbuild/openharmony-arm64": {
|
|
433
|
+
"version": "0.28.1",
|
|
434
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz",
|
|
435
|
+
"integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==",
|
|
436
|
+
"cpu": [
|
|
437
|
+
"arm64"
|
|
438
|
+
],
|
|
439
|
+
"dev": true,
|
|
440
|
+
"license": "MIT",
|
|
441
|
+
"optional": true,
|
|
442
|
+
"os": [
|
|
443
|
+
"openharmony"
|
|
444
|
+
],
|
|
445
|
+
"engines": {
|
|
446
|
+
"node": ">=18"
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
450
|
+
"version": "0.28.1",
|
|
451
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz",
|
|
452
|
+
"integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==",
|
|
453
|
+
"cpu": [
|
|
454
|
+
"x64"
|
|
455
|
+
],
|
|
456
|
+
"dev": true,
|
|
457
|
+
"license": "MIT",
|
|
458
|
+
"optional": true,
|
|
459
|
+
"os": [
|
|
460
|
+
"sunos"
|
|
461
|
+
],
|
|
462
|
+
"engines": {
|
|
463
|
+
"node": ">=18"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
467
|
+
"version": "0.28.1",
|
|
468
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz",
|
|
469
|
+
"integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==",
|
|
470
|
+
"cpu": [
|
|
471
|
+
"arm64"
|
|
472
|
+
],
|
|
473
|
+
"dev": true,
|
|
474
|
+
"license": "MIT",
|
|
475
|
+
"optional": true,
|
|
476
|
+
"os": [
|
|
477
|
+
"win32"
|
|
478
|
+
],
|
|
479
|
+
"engines": {
|
|
480
|
+
"node": ">=18"
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
484
|
+
"version": "0.28.1",
|
|
485
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz",
|
|
486
|
+
"integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==",
|
|
487
|
+
"cpu": [
|
|
488
|
+
"ia32"
|
|
489
|
+
],
|
|
490
|
+
"dev": true,
|
|
491
|
+
"license": "MIT",
|
|
492
|
+
"optional": true,
|
|
493
|
+
"os": [
|
|
494
|
+
"win32"
|
|
495
|
+
],
|
|
496
|
+
"engines": {
|
|
497
|
+
"node": ">=18"
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
"node_modules/@esbuild/win32-x64": {
|
|
501
|
+
"version": "0.28.1",
|
|
502
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz",
|
|
503
|
+
"integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==",
|
|
504
|
+
"cpu": [
|
|
505
|
+
"x64"
|
|
506
|
+
],
|
|
507
|
+
"dev": true,
|
|
508
|
+
"license": "MIT",
|
|
509
|
+
"optional": true,
|
|
510
|
+
"os": [
|
|
511
|
+
"win32"
|
|
512
|
+
],
|
|
513
|
+
"engines": {
|
|
514
|
+
"node": ">=18"
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
"node_modules/@ethersproject/abi": {
|
|
518
|
+
"version": "5.8.0",
|
|
519
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.8.0.tgz",
|
|
520
|
+
"integrity": "sha512-b9YS/43ObplgyV6SlyQsG53/vkSal0MNA1fskSC4mbnCMi8R+NkcH8K9FPYNESf6jUefBUniE4SOKms0E/KK1Q==",
|
|
521
|
+
"dev": true,
|
|
522
|
+
"funding": [
|
|
523
|
+
{
|
|
524
|
+
"type": "individual",
|
|
525
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"type": "individual",
|
|
529
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
530
|
+
}
|
|
531
|
+
],
|
|
532
|
+
"license": "MIT",
|
|
533
|
+
"peer": true,
|
|
534
|
+
"dependencies": {
|
|
535
|
+
"@ethersproject/address": "^5.8.0",
|
|
536
|
+
"@ethersproject/bignumber": "^5.8.0",
|
|
537
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
538
|
+
"@ethersproject/constants": "^5.8.0",
|
|
539
|
+
"@ethersproject/hash": "^5.8.0",
|
|
540
|
+
"@ethersproject/keccak256": "^5.8.0",
|
|
541
|
+
"@ethersproject/logger": "^5.8.0",
|
|
542
|
+
"@ethersproject/properties": "^5.8.0",
|
|
543
|
+
"@ethersproject/strings": "^5.8.0"
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
"node_modules/@ethersproject/abstract-provider": {
|
|
547
|
+
"version": "5.8.0",
|
|
548
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.8.0.tgz",
|
|
549
|
+
"integrity": "sha512-wC9SFcmh4UK0oKuLJQItoQdzS/qZ51EJegK6EmAWlh+OptpQ/npECOR3QqECd8iGHC0RJb4WKbVdSfif4ammrg==",
|
|
550
|
+
"dev": true,
|
|
551
|
+
"funding": [
|
|
552
|
+
{
|
|
553
|
+
"type": "individual",
|
|
554
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"type": "individual",
|
|
558
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
559
|
+
}
|
|
560
|
+
],
|
|
561
|
+
"license": "MIT",
|
|
562
|
+
"peer": true,
|
|
563
|
+
"dependencies": {
|
|
564
|
+
"@ethersproject/bignumber": "^5.8.0",
|
|
565
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
566
|
+
"@ethersproject/logger": "^5.8.0",
|
|
567
|
+
"@ethersproject/networks": "^5.8.0",
|
|
568
|
+
"@ethersproject/properties": "^5.8.0",
|
|
569
|
+
"@ethersproject/transactions": "^5.8.0",
|
|
570
|
+
"@ethersproject/web": "^5.8.0"
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
"node_modules/@ethersproject/abstract-signer": {
|
|
574
|
+
"version": "5.8.0",
|
|
575
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.8.0.tgz",
|
|
576
|
+
"integrity": "sha512-N0XhZTswXcmIZQdYtUnd79VJzvEwXQw6PK0dTl9VoYrEBxxCPXqS0Eod7q5TNKRxe1/5WUMuR0u0nqTF/avdCA==",
|
|
577
|
+
"dev": true,
|
|
578
|
+
"funding": [
|
|
579
|
+
{
|
|
580
|
+
"type": "individual",
|
|
581
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"type": "individual",
|
|
585
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
586
|
+
}
|
|
587
|
+
],
|
|
588
|
+
"license": "MIT",
|
|
589
|
+
"peer": true,
|
|
590
|
+
"dependencies": {
|
|
591
|
+
"@ethersproject/abstract-provider": "^5.8.0",
|
|
592
|
+
"@ethersproject/bignumber": "^5.8.0",
|
|
593
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
594
|
+
"@ethersproject/logger": "^5.8.0",
|
|
595
|
+
"@ethersproject/properties": "^5.8.0"
|
|
596
|
+
}
|
|
597
|
+
},
|
|
598
|
+
"node_modules/@ethersproject/address": {
|
|
599
|
+
"version": "5.8.0",
|
|
600
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.8.0.tgz",
|
|
601
|
+
"integrity": "sha512-GhH/abcC46LJwshoN+uBNoKVFPxUuZm6dA257z0vZkKmU1+t8xTn8oK7B9qrj8W2rFRMch4gbJl6PmVxjxBEBA==",
|
|
602
|
+
"dev": true,
|
|
603
|
+
"funding": [
|
|
604
|
+
{
|
|
605
|
+
"type": "individual",
|
|
606
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"type": "individual",
|
|
610
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
611
|
+
}
|
|
612
|
+
],
|
|
613
|
+
"license": "MIT",
|
|
614
|
+
"peer": true,
|
|
615
|
+
"dependencies": {
|
|
616
|
+
"@ethersproject/bignumber": "^5.8.0",
|
|
617
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
618
|
+
"@ethersproject/keccak256": "^5.8.0",
|
|
619
|
+
"@ethersproject/logger": "^5.8.0",
|
|
620
|
+
"@ethersproject/rlp": "^5.8.0"
|
|
621
|
+
}
|
|
622
|
+
},
|
|
623
|
+
"node_modules/@ethersproject/base64": {
|
|
624
|
+
"version": "5.8.0",
|
|
625
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.8.0.tgz",
|
|
626
|
+
"integrity": "sha512-lN0oIwfkYj9LbPx4xEkie6rAMJtySbpOAFXSDVQaBnAzYfB4X2Qr+FXJGxMoc3Bxp2Sm8OwvzMrywxyw0gLjIQ==",
|
|
627
|
+
"dev": true,
|
|
628
|
+
"funding": [
|
|
629
|
+
{
|
|
630
|
+
"type": "individual",
|
|
631
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"type": "individual",
|
|
635
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
636
|
+
}
|
|
637
|
+
],
|
|
638
|
+
"license": "MIT",
|
|
639
|
+
"peer": true,
|
|
640
|
+
"dependencies": {
|
|
641
|
+
"@ethersproject/bytes": "^5.8.0"
|
|
642
|
+
}
|
|
643
|
+
},
|
|
644
|
+
"node_modules/@ethersproject/bignumber": {
|
|
645
|
+
"version": "5.8.0",
|
|
646
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.8.0.tgz",
|
|
647
|
+
"integrity": "sha512-ZyaT24bHaSeJon2tGPKIiHszWjD/54Sz8t57Toch475lCLljC6MgPmxk7Gtzz+ddNN5LuHea9qhAe0x3D+uYPA==",
|
|
648
|
+
"dev": true,
|
|
649
|
+
"funding": [
|
|
650
|
+
{
|
|
651
|
+
"type": "individual",
|
|
652
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"type": "individual",
|
|
656
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
657
|
+
}
|
|
658
|
+
],
|
|
659
|
+
"license": "MIT",
|
|
660
|
+
"peer": true,
|
|
661
|
+
"dependencies": {
|
|
662
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
663
|
+
"@ethersproject/logger": "^5.8.0",
|
|
664
|
+
"bn.js": "^5.2.1"
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
"node_modules/@ethersproject/bytes": {
|
|
668
|
+
"version": "5.8.0",
|
|
669
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.8.0.tgz",
|
|
670
|
+
"integrity": "sha512-vTkeohgJVCPVHu5c25XWaWQOZ4v+DkGoC42/TS2ond+PARCxTJvgTFUNDZovyQ/uAQ4EcpqqowKydcdmRKjg7A==",
|
|
671
|
+
"dev": true,
|
|
672
|
+
"funding": [
|
|
673
|
+
{
|
|
674
|
+
"type": "individual",
|
|
675
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"type": "individual",
|
|
679
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
680
|
+
}
|
|
681
|
+
],
|
|
682
|
+
"license": "MIT",
|
|
683
|
+
"peer": true,
|
|
684
|
+
"dependencies": {
|
|
685
|
+
"@ethersproject/logger": "^5.8.0"
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
"node_modules/@ethersproject/constants": {
|
|
689
|
+
"version": "5.8.0",
|
|
690
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.8.0.tgz",
|
|
691
|
+
"integrity": "sha512-wigX4lrf5Vu+axVTIvNsuL6YrV4O5AXl5ubcURKMEME5TnWBouUh0CDTWxZ2GpnRn1kcCgE7l8O5+VbV9QTTcg==",
|
|
692
|
+
"dev": true,
|
|
693
|
+
"funding": [
|
|
694
|
+
{
|
|
695
|
+
"type": "individual",
|
|
696
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"type": "individual",
|
|
700
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
701
|
+
}
|
|
702
|
+
],
|
|
703
|
+
"license": "MIT",
|
|
704
|
+
"peer": true,
|
|
705
|
+
"dependencies": {
|
|
706
|
+
"@ethersproject/bignumber": "^5.8.0"
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
"node_modules/@ethersproject/hash": {
|
|
710
|
+
"version": "5.8.0",
|
|
711
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.8.0.tgz",
|
|
712
|
+
"integrity": "sha512-ac/lBcTbEWW/VGJij0CNSw/wPcw9bSRgCB0AIBz8CvED/jfvDoV9hsIIiWfvWmFEi8RcXtlNwp2jv6ozWOsooA==",
|
|
713
|
+
"dev": true,
|
|
714
|
+
"funding": [
|
|
715
|
+
{
|
|
716
|
+
"type": "individual",
|
|
717
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"type": "individual",
|
|
721
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
722
|
+
}
|
|
723
|
+
],
|
|
724
|
+
"license": "MIT",
|
|
725
|
+
"peer": true,
|
|
726
|
+
"dependencies": {
|
|
727
|
+
"@ethersproject/abstract-signer": "^5.8.0",
|
|
728
|
+
"@ethersproject/address": "^5.8.0",
|
|
729
|
+
"@ethersproject/base64": "^5.8.0",
|
|
730
|
+
"@ethersproject/bignumber": "^5.8.0",
|
|
731
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
732
|
+
"@ethersproject/keccak256": "^5.8.0",
|
|
733
|
+
"@ethersproject/logger": "^5.8.0",
|
|
734
|
+
"@ethersproject/properties": "^5.8.0",
|
|
735
|
+
"@ethersproject/strings": "^5.8.0"
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
"node_modules/@ethersproject/keccak256": {
|
|
739
|
+
"version": "5.8.0",
|
|
740
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.8.0.tgz",
|
|
741
|
+
"integrity": "sha512-A1pkKLZSz8pDaQ1ftutZoaN46I6+jvuqugx5KYNeQOPqq+JZ0Txm7dlWesCHB5cndJSu5vP2VKptKf7cksERng==",
|
|
742
|
+
"dev": true,
|
|
743
|
+
"funding": [
|
|
744
|
+
{
|
|
745
|
+
"type": "individual",
|
|
746
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"type": "individual",
|
|
750
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
751
|
+
}
|
|
752
|
+
],
|
|
753
|
+
"license": "MIT",
|
|
754
|
+
"peer": true,
|
|
755
|
+
"dependencies": {
|
|
756
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
757
|
+
"js-sha3": "0.8.0"
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
"node_modules/@ethersproject/logger": {
|
|
761
|
+
"version": "5.8.0",
|
|
762
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.8.0.tgz",
|
|
763
|
+
"integrity": "sha512-Qe6knGmY+zPPWTC+wQrpitodgBfH7XoceCGL5bJVejmH+yCS3R8jJm8iiWuvWbG76RUmyEG53oqv6GMVWqunjA==",
|
|
764
|
+
"dev": true,
|
|
765
|
+
"funding": [
|
|
766
|
+
{
|
|
767
|
+
"type": "individual",
|
|
768
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"type": "individual",
|
|
772
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
773
|
+
}
|
|
774
|
+
],
|
|
775
|
+
"license": "MIT",
|
|
776
|
+
"peer": true
|
|
777
|
+
},
|
|
778
|
+
"node_modules/@ethersproject/networks": {
|
|
779
|
+
"version": "5.8.0",
|
|
780
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.8.0.tgz",
|
|
781
|
+
"integrity": "sha512-egPJh3aPVAzbHwq8DD7Po53J4OUSsA1MjQp8Vf/OZPav5rlmWUaFLiq8cvQiGK0Z5K6LYzm29+VA/p4RL1FzNg==",
|
|
782
|
+
"dev": true,
|
|
783
|
+
"funding": [
|
|
784
|
+
{
|
|
785
|
+
"type": "individual",
|
|
786
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"type": "individual",
|
|
790
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
791
|
+
}
|
|
792
|
+
],
|
|
793
|
+
"license": "MIT",
|
|
794
|
+
"peer": true,
|
|
795
|
+
"dependencies": {
|
|
796
|
+
"@ethersproject/logger": "^5.8.0"
|
|
797
|
+
}
|
|
798
|
+
},
|
|
799
|
+
"node_modules/@ethersproject/properties": {
|
|
800
|
+
"version": "5.8.0",
|
|
801
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.8.0.tgz",
|
|
802
|
+
"integrity": "sha512-PYuiEoQ+FMaZZNGrStmN7+lWjlsoufGIHdww7454FIaGdbe/p5rnaCXTr5MtBYl3NkeoVhHZuyzChPeGeKIpQw==",
|
|
803
|
+
"dev": true,
|
|
804
|
+
"funding": [
|
|
805
|
+
{
|
|
806
|
+
"type": "individual",
|
|
807
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"type": "individual",
|
|
811
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
812
|
+
}
|
|
813
|
+
],
|
|
814
|
+
"license": "MIT",
|
|
815
|
+
"peer": true,
|
|
816
|
+
"dependencies": {
|
|
817
|
+
"@ethersproject/logger": "^5.8.0"
|
|
818
|
+
}
|
|
819
|
+
},
|
|
820
|
+
"node_modules/@ethersproject/rlp": {
|
|
821
|
+
"version": "5.8.0",
|
|
822
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.8.0.tgz",
|
|
823
|
+
"integrity": "sha512-LqZgAznqDbiEunaUvykH2JAoXTT9NV0Atqk8rQN9nx9SEgThA/WMx5DnW8a9FOufo//6FZOCHZ+XiClzgbqV9Q==",
|
|
824
|
+
"dev": true,
|
|
825
|
+
"funding": [
|
|
826
|
+
{
|
|
827
|
+
"type": "individual",
|
|
828
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"type": "individual",
|
|
832
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
833
|
+
}
|
|
834
|
+
],
|
|
835
|
+
"license": "MIT",
|
|
836
|
+
"peer": true,
|
|
837
|
+
"dependencies": {
|
|
838
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
839
|
+
"@ethersproject/logger": "^5.8.0"
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
"node_modules/@ethersproject/signing-key": {
|
|
843
|
+
"version": "5.8.0",
|
|
844
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.8.0.tgz",
|
|
845
|
+
"integrity": "sha512-LrPW2ZxoigFi6U6aVkFN/fa9Yx/+4AtIUe4/HACTvKJdhm0eeb107EVCIQcrLZkxaSIgc/eCrX8Q1GtbH+9n3w==",
|
|
846
|
+
"dev": true,
|
|
847
|
+
"funding": [
|
|
848
|
+
{
|
|
849
|
+
"type": "individual",
|
|
850
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"type": "individual",
|
|
854
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
855
|
+
}
|
|
856
|
+
],
|
|
857
|
+
"license": "MIT",
|
|
858
|
+
"peer": true,
|
|
859
|
+
"dependencies": {
|
|
860
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
861
|
+
"@ethersproject/logger": "^5.8.0",
|
|
862
|
+
"@ethersproject/properties": "^5.8.0",
|
|
863
|
+
"bn.js": "^5.2.1",
|
|
864
|
+
"elliptic": "6.6.1",
|
|
865
|
+
"hash.js": "1.1.7"
|
|
866
|
+
}
|
|
867
|
+
},
|
|
868
|
+
"node_modules/@ethersproject/strings": {
|
|
869
|
+
"version": "5.8.0",
|
|
870
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.8.0.tgz",
|
|
871
|
+
"integrity": "sha512-qWEAk0MAvl0LszjdfnZ2uC8xbR2wdv4cDabyHiBh3Cldq/T8dPH3V4BbBsAYJUeonwD+8afVXld274Ls+Y1xXg==",
|
|
872
|
+
"dev": true,
|
|
873
|
+
"funding": [
|
|
874
|
+
{
|
|
875
|
+
"type": "individual",
|
|
876
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"type": "individual",
|
|
880
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
881
|
+
}
|
|
882
|
+
],
|
|
883
|
+
"license": "MIT",
|
|
884
|
+
"peer": true,
|
|
885
|
+
"dependencies": {
|
|
886
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
887
|
+
"@ethersproject/constants": "^5.8.0",
|
|
888
|
+
"@ethersproject/logger": "^5.8.0"
|
|
889
|
+
}
|
|
890
|
+
},
|
|
891
|
+
"node_modules/@ethersproject/transactions": {
|
|
892
|
+
"version": "5.8.0",
|
|
893
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.8.0.tgz",
|
|
894
|
+
"integrity": "sha512-UglxSDjByHG0TuU17bDfCemZ3AnKO2vYrL5/2n2oXvKzvb7Cz+W9gOWXKARjp2URVwcWlQlPOEQyAviKwT4AHg==",
|
|
895
|
+
"dev": true,
|
|
896
|
+
"funding": [
|
|
897
|
+
{
|
|
898
|
+
"type": "individual",
|
|
899
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"type": "individual",
|
|
903
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
904
|
+
}
|
|
905
|
+
],
|
|
906
|
+
"license": "MIT",
|
|
907
|
+
"peer": true,
|
|
908
|
+
"dependencies": {
|
|
909
|
+
"@ethersproject/address": "^5.8.0",
|
|
910
|
+
"@ethersproject/bignumber": "^5.8.0",
|
|
911
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
912
|
+
"@ethersproject/constants": "^5.8.0",
|
|
913
|
+
"@ethersproject/keccak256": "^5.8.0",
|
|
914
|
+
"@ethersproject/logger": "^5.8.0",
|
|
915
|
+
"@ethersproject/properties": "^5.8.0",
|
|
916
|
+
"@ethersproject/rlp": "^5.8.0",
|
|
917
|
+
"@ethersproject/signing-key": "^5.8.0"
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
"node_modules/@ethersproject/web": {
|
|
921
|
+
"version": "5.8.0",
|
|
922
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.8.0.tgz",
|
|
923
|
+
"integrity": "sha512-j7+Ksi/9KfGviws6Qtf9Q7KCqRhpwrYKQPs+JBA/rKVFF/yaWLHJEH3zfVP2plVu+eys0d2DlFmhoQJayFewcw==",
|
|
924
|
+
"dev": true,
|
|
925
|
+
"funding": [
|
|
926
|
+
{
|
|
927
|
+
"type": "individual",
|
|
928
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"type": "individual",
|
|
932
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
933
|
+
}
|
|
934
|
+
],
|
|
935
|
+
"license": "MIT",
|
|
936
|
+
"peer": true,
|
|
937
|
+
"dependencies": {
|
|
938
|
+
"@ethersproject/base64": "^5.8.0",
|
|
939
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
940
|
+
"@ethersproject/logger": "^5.8.0",
|
|
941
|
+
"@ethersproject/properties": "^5.8.0",
|
|
942
|
+
"@ethersproject/strings": "^5.8.0"
|
|
943
|
+
}
|
|
944
|
+
},
|
|
945
|
+
"node_modules/@jest/schemas": {
|
|
946
|
+
"version": "29.6.3",
|
|
947
|
+
"resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz",
|
|
948
|
+
"integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
|
|
949
|
+
"dev": true,
|
|
950
|
+
"license": "MIT",
|
|
951
|
+
"peer": true,
|
|
952
|
+
"dependencies": {
|
|
953
|
+
"@sinclair/typebox": "^0.27.8"
|
|
954
|
+
},
|
|
955
|
+
"engines": {
|
|
956
|
+
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
957
|
+
}
|
|
958
|
+
},
|
|
959
|
+
"node_modules/@noble/ciphers": {
|
|
960
|
+
"version": "1.2.1",
|
|
961
|
+
"resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.2.1.tgz",
|
|
962
|
+
"integrity": "sha512-rONPWMC7PeExE077uLE4oqWrZ1IvAfz3oH9LibVAcVCopJiA9R62uavnbEzdkVmJYI6M6Zgkbeb07+tWjlq2XA==",
|
|
963
|
+
"dev": true,
|
|
964
|
+
"license": "MIT",
|
|
965
|
+
"peer": true,
|
|
966
|
+
"engines": {
|
|
967
|
+
"node": "^14.21.3 || >=16"
|
|
968
|
+
},
|
|
969
|
+
"funding": {
|
|
970
|
+
"url": "https://paulmillr.com/funding/"
|
|
971
|
+
}
|
|
972
|
+
},
|
|
973
|
+
"node_modules/@noble/curves": {
|
|
974
|
+
"version": "1.4.2",
|
|
975
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz",
|
|
976
|
+
"integrity": "sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==",
|
|
977
|
+
"dev": true,
|
|
978
|
+
"license": "MIT",
|
|
979
|
+
"dependencies": {
|
|
980
|
+
"@noble/hashes": "1.4.0"
|
|
981
|
+
},
|
|
982
|
+
"funding": {
|
|
983
|
+
"url": "https://paulmillr.com/funding/"
|
|
984
|
+
}
|
|
985
|
+
},
|
|
986
|
+
"node_modules/@noble/curves/node_modules/@noble/hashes": {
|
|
987
|
+
"version": "1.4.0",
|
|
988
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz",
|
|
989
|
+
"integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==",
|
|
990
|
+
"dev": true,
|
|
991
|
+
"license": "MIT",
|
|
992
|
+
"engines": {
|
|
993
|
+
"node": ">= 16"
|
|
994
|
+
},
|
|
995
|
+
"funding": {
|
|
996
|
+
"url": "https://paulmillr.com/funding/"
|
|
997
|
+
}
|
|
998
|
+
},
|
|
999
|
+
"node_modules/@noble/hashes": {
|
|
1000
|
+
"version": "1.7.1",
|
|
1001
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.1.tgz",
|
|
1002
|
+
"integrity": "sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==",
|
|
1003
|
+
"dev": true,
|
|
1004
|
+
"license": "MIT",
|
|
1005
|
+
"peer": true,
|
|
1006
|
+
"engines": {
|
|
1007
|
+
"node": "^14.21.3 || >=16"
|
|
1008
|
+
},
|
|
1009
|
+
"funding": {
|
|
1010
|
+
"url": "https://paulmillr.com/funding/"
|
|
1011
|
+
}
|
|
1012
|
+
},
|
|
1013
|
+
"node_modules/@nomicfoundation/edr": {
|
|
1014
|
+
"version": "0.14.0",
|
|
1015
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr/-/edr-0.14.0.tgz",
|
|
1016
|
+
"integrity": "sha512-Cgg1IZv+i2itOa3Unc8wX9y8TCuzpofdxga8ekEJ3DPsaVGBhjsuaBqf/65TyF3ExogUpUdk5rHKZmnpKcfACg==",
|
|
1017
|
+
"dev": true,
|
|
1018
|
+
"license": "MIT",
|
|
1019
|
+
"dependencies": {
|
|
1020
|
+
"@nomicfoundation/edr-darwin-arm64": "0.14.0",
|
|
1021
|
+
"@nomicfoundation/edr-darwin-x64": "0.14.0",
|
|
1022
|
+
"@nomicfoundation/edr-linux-arm64-gnu": "0.14.0",
|
|
1023
|
+
"@nomicfoundation/edr-linux-arm64-musl": "0.14.0",
|
|
1024
|
+
"@nomicfoundation/edr-linux-x64-gnu": "0.14.0",
|
|
1025
|
+
"@nomicfoundation/edr-linux-x64-musl": "0.14.0",
|
|
1026
|
+
"@nomicfoundation/edr-win32-x64-msvc": "0.14.0"
|
|
1027
|
+
},
|
|
1028
|
+
"engines": {
|
|
1029
|
+
"node": ">= 22"
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
"node_modules/@nomicfoundation/edr-darwin-arm64": {
|
|
1033
|
+
"version": "0.14.0",
|
|
1034
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-arm64/-/edr-darwin-arm64-0.14.0.tgz",
|
|
1035
|
+
"integrity": "sha512-WeIfUKa270gPWssrDYWQM8GcjeYHGuzr2P2oPtBJIKhU5UOsEbF0RM9JFtcy2zp7ZBn2iQp7BHZc6kboz5Pd5w==",
|
|
1036
|
+
"dev": true,
|
|
1037
|
+
"license": "MIT",
|
|
1038
|
+
"engines": {
|
|
1039
|
+
"node": ">= 22"
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
1042
|
+
"node_modules/@nomicfoundation/edr-darwin-x64": {
|
|
1043
|
+
"version": "0.14.0",
|
|
1044
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-x64/-/edr-darwin-x64-0.14.0.tgz",
|
|
1045
|
+
"integrity": "sha512-V/cftSD8hl1mr37tCrZ1Rd4eSppAWGUFAZNNBeEUWw4VAA80at26cdboR66TWj5wy4LmbAMMu12apVs5nlOAMw==",
|
|
1046
|
+
"dev": true,
|
|
1047
|
+
"license": "MIT",
|
|
1048
|
+
"engines": {
|
|
1049
|
+
"node": ">= 22"
|
|
1050
|
+
}
|
|
1051
|
+
},
|
|
1052
|
+
"node_modules/@nomicfoundation/edr-linux-arm64-gnu": {
|
|
1053
|
+
"version": "0.14.0",
|
|
1054
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-gnu/-/edr-linux-arm64-gnu-0.14.0.tgz",
|
|
1055
|
+
"integrity": "sha512-wydy0IGuVzK5K69Nbj+Vhw9CegabE6Ib9MbepOB/l4hKxxV0dZSFO3d2xUme12+94GS3gZVJ7l8OkyjENLkiLA==",
|
|
1056
|
+
"dev": true,
|
|
1057
|
+
"license": "MIT",
|
|
1058
|
+
"engines": {
|
|
1059
|
+
"node": ">= 22"
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
"node_modules/@nomicfoundation/edr-linux-arm64-musl": {
|
|
1063
|
+
"version": "0.14.0",
|
|
1064
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-musl/-/edr-linux-arm64-musl-0.14.0.tgz",
|
|
1065
|
+
"integrity": "sha512-D2GI/IP+8KBG4wljRSaHxzvEmmaJc2AmGj3vL6wEPWmP8k09p/ZxasxvH077Yh6e72CxrcRmVsfGSDAMmc/6yA==",
|
|
1066
|
+
"dev": true,
|
|
1067
|
+
"license": "MIT",
|
|
1068
|
+
"engines": {
|
|
1069
|
+
"node": ">= 22"
|
|
1070
|
+
}
|
|
1071
|
+
},
|
|
1072
|
+
"node_modules/@nomicfoundation/edr-linux-x64-gnu": {
|
|
1073
|
+
"version": "0.14.0",
|
|
1074
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-gnu/-/edr-linux-x64-gnu-0.14.0.tgz",
|
|
1075
|
+
"integrity": "sha512-Y5mTwLUZd6W3WfLrv/sw9TNE3+wzzPEy9Pz+euB/XLoWeX/QNpYy+0tck+CB4kUUWG7dz2a2nCyobbp4Plo3WQ==",
|
|
1076
|
+
"dev": true,
|
|
1077
|
+
"license": "MIT",
|
|
1078
|
+
"engines": {
|
|
1079
|
+
"node": ">= 22"
|
|
1080
|
+
}
|
|
1081
|
+
},
|
|
1082
|
+
"node_modules/@nomicfoundation/edr-linux-x64-musl": {
|
|
1083
|
+
"version": "0.14.0",
|
|
1084
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-musl/-/edr-linux-x64-musl-0.14.0.tgz",
|
|
1085
|
+
"integrity": "sha512-LM1zWgi0ZytlHccBXDC8q0+mQQkbc0zpJJ5qSAFeUPn3qKXW4XRel4HzEkZOOO8NWCstdPqU589lIRrfPIzbUw==",
|
|
1086
|
+
"dev": true,
|
|
1087
|
+
"license": "MIT",
|
|
1088
|
+
"engines": {
|
|
1089
|
+
"node": ">= 22"
|
|
1090
|
+
}
|
|
1091
|
+
},
|
|
1092
|
+
"node_modules/@nomicfoundation/edr-win32-x64-msvc": {
|
|
1093
|
+
"version": "0.14.0",
|
|
1094
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-win32-x64-msvc/-/edr-win32-x64-msvc-0.14.0.tgz",
|
|
1095
|
+
"integrity": "sha512-0SfpLVuzZZwHVY7ptMqshtEFByRJlfF9XLJ9MjLoAlGjhf6jHLSgltw3Mos+6bukUXLbLaxeNHfDaTLMnX+N4g==",
|
|
1096
|
+
"dev": true,
|
|
1097
|
+
"license": "MIT",
|
|
1098
|
+
"engines": {
|
|
1099
|
+
"node": ">= 22"
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
"node_modules/@nomicfoundation/hardhat-errors": {
|
|
1103
|
+
"version": "3.0.17",
|
|
1104
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-errors/-/hardhat-errors-3.0.17.tgz",
|
|
1105
|
+
"integrity": "sha512-x8/Bv7Mn0a90ZRX4ZfWuq8uGuqF10LzLMXD1LD0kEIRBwSvr71fcxYyONcuf+MzznbrJ+WBTNz3ov9Rd++8DfQ==",
|
|
1106
|
+
"dev": true,
|
|
1107
|
+
"license": "MIT",
|
|
1108
|
+
"dependencies": {
|
|
1109
|
+
"@nomicfoundation/hardhat-utils": "^4.1.5"
|
|
1110
|
+
}
|
|
1111
|
+
},
|
|
1112
|
+
"node_modules/@nomicfoundation/hardhat-ignition": {
|
|
1113
|
+
"version": "3.1.7",
|
|
1114
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition/-/hardhat-ignition-3.1.7.tgz",
|
|
1115
|
+
"integrity": "sha512-VaJpdKzVTKhEWOb9lQdXQcghlF/H1kasyfeOw21i69NaZ49QmFc2kRLhnTcJA+vLj+jV1fYk29fK0NO1Jsnavg==",
|
|
1116
|
+
"dev": true,
|
|
1117
|
+
"license": "MIT",
|
|
1118
|
+
"peer": true,
|
|
1119
|
+
"dependencies": {
|
|
1120
|
+
"@nomicfoundation/hardhat-errors": "^3.0.15",
|
|
1121
|
+
"@nomicfoundation/hardhat-utils": "^4.1.2",
|
|
1122
|
+
"@nomicfoundation/ignition-core": "^3.1.7",
|
|
1123
|
+
"@nomicfoundation/ignition-ui": "^3.1.2",
|
|
1124
|
+
"json5": "^2.2.3",
|
|
1125
|
+
"prompts": "^2.4.2"
|
|
1126
|
+
},
|
|
1127
|
+
"peerDependencies": {
|
|
1128
|
+
"@nomicfoundation/hardhat-verify": "^3.0.0",
|
|
1129
|
+
"hardhat": "^3.8.0"
|
|
1130
|
+
}
|
|
1131
|
+
},
|
|
1132
|
+
"node_modules/@nomicfoundation/hardhat-ignition-viem": {
|
|
1133
|
+
"version": "3.1.6",
|
|
1134
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition-viem/-/hardhat-ignition-viem-3.1.6.tgz",
|
|
1135
|
+
"integrity": "sha512-ggjHftjDNLQPnHBMEtDcTafYJfTzqTMlorKlAWj0HunzwiDhC5p7ox2MuEGmZHqt2oVjrnPF5E+Dp3G0RlYRgg==",
|
|
1136
|
+
"dev": true,
|
|
1137
|
+
"license": "MIT",
|
|
1138
|
+
"peer": true,
|
|
1139
|
+
"dependencies": {
|
|
1140
|
+
"@nomicfoundation/hardhat-errors": "^3.0.15"
|
|
1141
|
+
},
|
|
1142
|
+
"peerDependencies": {
|
|
1143
|
+
"@nomicfoundation/hardhat-ignition": "^3.1.2",
|
|
1144
|
+
"@nomicfoundation/hardhat-verify": "^3.0.0",
|
|
1145
|
+
"@nomicfoundation/hardhat-viem": "^3.0.4",
|
|
1146
|
+
"@nomicfoundation/ignition-core": "^3.0.7",
|
|
1147
|
+
"hardhat": "^3.8.0",
|
|
1148
|
+
"viem": "^2.47.6"
|
|
1149
|
+
}
|
|
1150
|
+
},
|
|
1151
|
+
"node_modules/@nomicfoundation/hardhat-keystore": {
|
|
1152
|
+
"version": "3.0.12",
|
|
1153
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-keystore/-/hardhat-keystore-3.0.12.tgz",
|
|
1154
|
+
"integrity": "sha512-uXySRPOOHtAg/RrwmqiQyw0QDA6Er3H6rB4su0J59mBPC/QHw9B5F9dDfF2u+FZn5LVWH6Gh58mEvJhRt0a4dQ==",
|
|
1155
|
+
"dev": true,
|
|
1156
|
+
"license": "MIT",
|
|
1157
|
+
"peer": true,
|
|
1158
|
+
"dependencies": {
|
|
1159
|
+
"@noble/ciphers": "1.2.1",
|
|
1160
|
+
"@noble/hashes": "1.7.1",
|
|
1161
|
+
"@nomicfoundation/hardhat-errors": "^3.0.15",
|
|
1162
|
+
"@nomicfoundation/hardhat-utils": "^4.1.3",
|
|
1163
|
+
"@nomicfoundation/hardhat-zod-utils": "^3.0.5",
|
|
1164
|
+
"zod": "^3.23.8"
|
|
1165
|
+
},
|
|
1166
|
+
"peerDependencies": {
|
|
1167
|
+
"hardhat": "^3.8.0"
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
"node_modules/@nomicfoundation/hardhat-network-helpers": {
|
|
1171
|
+
"version": "3.0.10",
|
|
1172
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-network-helpers/-/hardhat-network-helpers-3.0.10.tgz",
|
|
1173
|
+
"integrity": "sha512-zSw6vHOQYP5FOgbM1pvOerO6/022HFQUfzGCAb+CFu5iDq2Skpc1BI0DASOKBTTklwuXMHzDmsCJFHF07c9nuA==",
|
|
1174
|
+
"dev": true,
|
|
1175
|
+
"license": "MIT",
|
|
1176
|
+
"peer": true,
|
|
1177
|
+
"dependencies": {
|
|
1178
|
+
"@nomicfoundation/hardhat-errors": "^3.0.15",
|
|
1179
|
+
"@nomicfoundation/hardhat-utils": "^4.1.2"
|
|
1180
|
+
},
|
|
1181
|
+
"peerDependencies": {
|
|
1182
|
+
"hardhat": "^3.8.0"
|
|
1183
|
+
}
|
|
1184
|
+
},
|
|
1185
|
+
"node_modules/@nomicfoundation/hardhat-node-test-reporter": {
|
|
1186
|
+
"version": "3.1.0",
|
|
1187
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-node-test-reporter/-/hardhat-node-test-reporter-3.1.0.tgz",
|
|
1188
|
+
"integrity": "sha512-mcVaJyqQnryVOv/fWmo0IofVfRYvcoLyzR+D2LiLLtxvmmMTYLYW5ktPk0XHuJ+UBK735aZTrMTDUR3S/x9Edw==",
|
|
1189
|
+
"dev": true,
|
|
1190
|
+
"license": "MIT",
|
|
1191
|
+
"peer": true,
|
|
1192
|
+
"dependencies": {
|
|
1193
|
+
"@actions/core": "^1.10.1",
|
|
1194
|
+
"jest-diff": "^29.7.0"
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
"node_modules/@nomicfoundation/hardhat-node-test-runner": {
|
|
1198
|
+
"version": "3.0.17",
|
|
1199
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-node-test-runner/-/hardhat-node-test-runner-3.0.17.tgz",
|
|
1200
|
+
"integrity": "sha512-zn+5BJ00n9pCFIAKJDegf65P7AM8+tcgCsrtXkjVH7wA46jssGaKQ8VduTwoekfZn8DdmwPTL7MWXqwjSS/Lkg==",
|
|
1201
|
+
"dev": true,
|
|
1202
|
+
"license": "MIT",
|
|
1203
|
+
"peer": true,
|
|
1204
|
+
"dependencies": {
|
|
1205
|
+
"@nomicfoundation/hardhat-errors": "^3.0.15",
|
|
1206
|
+
"@nomicfoundation/hardhat-node-test-reporter": "^3.1.0",
|
|
1207
|
+
"@nomicfoundation/hardhat-utils": "^4.1.2",
|
|
1208
|
+
"@nomicfoundation/hardhat-zod-utils": "^3.0.5",
|
|
1209
|
+
"tsx": "^4.19.3",
|
|
1210
|
+
"zod": "^3.23.8"
|
|
1211
|
+
},
|
|
1212
|
+
"peerDependencies": {
|
|
1213
|
+
"hardhat": "^3.8.0"
|
|
1214
|
+
}
|
|
1215
|
+
},
|
|
1216
|
+
"node_modules/@nomicfoundation/hardhat-toolbox-viem": {
|
|
1217
|
+
"version": "5.0.7",
|
|
1218
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-toolbox-viem/-/hardhat-toolbox-viem-5.0.7.tgz",
|
|
1219
|
+
"integrity": "sha512-aHF77tTYmBIbuxY99KKBPx4cLWdcQvvar1PpzWJyrDgC+P6rA7Edi1GpvvPcwO/HdfZXuACQ74zSS2PnmJu3mA==",
|
|
1220
|
+
"dev": true,
|
|
1221
|
+
"license": "MIT",
|
|
1222
|
+
"peerDependencies": {
|
|
1223
|
+
"@nomicfoundation/hardhat-ignition": "^3.0.7",
|
|
1224
|
+
"@nomicfoundation/hardhat-ignition-viem": "^3.0.7",
|
|
1225
|
+
"@nomicfoundation/hardhat-keystore": "^3.0.0",
|
|
1226
|
+
"@nomicfoundation/hardhat-network-helpers": "^3.0.0",
|
|
1227
|
+
"@nomicfoundation/hardhat-node-test-runner": "^3.0.0",
|
|
1228
|
+
"@nomicfoundation/hardhat-verify": "^3.0.0",
|
|
1229
|
+
"@nomicfoundation/hardhat-viem": "^3.0.4",
|
|
1230
|
+
"@nomicfoundation/hardhat-viem-assertions": "^3.0.5",
|
|
1231
|
+
"@nomicfoundation/ignition-core": "^3.0.7",
|
|
1232
|
+
"hardhat": "^3.8.0",
|
|
1233
|
+
"viem": "^2.47.6"
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
"node_modules/@nomicfoundation/hardhat-utils": {
|
|
1237
|
+
"version": "4.1.5",
|
|
1238
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-utils/-/hardhat-utils-4.1.5.tgz",
|
|
1239
|
+
"integrity": "sha512-EokhnMFDkDQPSsxrzyDAuCJuMbEsNWfMIMPgeB+FY8wnArl+dZR7tkd5UV2iooSlyxF+H3zj/0RKReXscTyijQ==",
|
|
1240
|
+
"dev": true,
|
|
1241
|
+
"license": "MIT",
|
|
1242
|
+
"dependencies": {
|
|
1243
|
+
"@streamparser/json-node": "^0.0.22",
|
|
1244
|
+
"env-paths": "^2.2.0",
|
|
1245
|
+
"ethereum-cryptography": "^2.2.1",
|
|
1246
|
+
"fast-equals": "^5.4.0",
|
|
1247
|
+
"json-stream-stringify": "^3.1.6",
|
|
1248
|
+
"rfdc": "^1.3.1",
|
|
1249
|
+
"undici": "^6.16.1"
|
|
1250
|
+
}
|
|
1251
|
+
},
|
|
1252
|
+
"node_modules/@nomicfoundation/hardhat-vendored": {
|
|
1253
|
+
"version": "3.0.4",
|
|
1254
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-vendored/-/hardhat-vendored-3.0.4.tgz",
|
|
1255
|
+
"integrity": "sha512-RO8Otj1FvRvxJmXzkxh1vTwK/+cqSVPYLqY6RrWkmzHEEcxnAwAFsBYdW7xyTEyW/pVbSSNd2gs3aoGdGZaoNA==",
|
|
1256
|
+
"dev": true,
|
|
1257
|
+
"license": "MIT"
|
|
1258
|
+
},
|
|
1259
|
+
"node_modules/@nomicfoundation/hardhat-verify": {
|
|
1260
|
+
"version": "3.0.20",
|
|
1261
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-verify/-/hardhat-verify-3.0.20.tgz",
|
|
1262
|
+
"integrity": "sha512-chMhQpnE8FWv5QKmbD9Mn6HvBLuaxkUQ6LlZw4STyubsaXb4pemRh+e5Aqbb07BbMTm7inPUZvUEzmdhGUvE7w==",
|
|
1263
|
+
"dev": true,
|
|
1264
|
+
"license": "MIT",
|
|
1265
|
+
"peer": true,
|
|
1266
|
+
"dependencies": {
|
|
1267
|
+
"@ethersproject/abi": "^5.8.0",
|
|
1268
|
+
"@nomicfoundation/hardhat-errors": "^3.0.15",
|
|
1269
|
+
"@nomicfoundation/hardhat-utils": "^4.1.2",
|
|
1270
|
+
"@nomicfoundation/hardhat-zod-utils": "^3.0.5",
|
|
1271
|
+
"cbor2": "^1.9.0",
|
|
1272
|
+
"zod": "^3.23.8"
|
|
1273
|
+
},
|
|
1274
|
+
"peerDependencies": {
|
|
1275
|
+
"hardhat": "^3.8.0"
|
|
1276
|
+
}
|
|
1277
|
+
},
|
|
1278
|
+
"node_modules/@nomicfoundation/hardhat-viem": {
|
|
1279
|
+
"version": "3.0.9",
|
|
1280
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-viem/-/hardhat-viem-3.0.9.tgz",
|
|
1281
|
+
"integrity": "sha512-GtQ7l55C70Jj80yrZGdW7Kah0vPmEje29G/xVfcxchVxRRFdj1XyFZFn+7e53b11qhHMWDB787pVN+I8YZae3w==",
|
|
1282
|
+
"dev": true,
|
|
1283
|
+
"license": "MIT",
|
|
1284
|
+
"peer": true,
|
|
1285
|
+
"dependencies": {
|
|
1286
|
+
"@nomicfoundation/hardhat-errors": "^3.0.15",
|
|
1287
|
+
"@nomicfoundation/hardhat-utils": "^4.1.2"
|
|
1288
|
+
},
|
|
1289
|
+
"peerDependencies": {
|
|
1290
|
+
"hardhat": "^3.8.0",
|
|
1291
|
+
"viem": "^2.47.6"
|
|
1292
|
+
}
|
|
1293
|
+
},
|
|
1294
|
+
"node_modules/@nomicfoundation/hardhat-viem-assertions": {
|
|
1295
|
+
"version": "3.1.1",
|
|
1296
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-viem-assertions/-/hardhat-viem-assertions-3.1.1.tgz",
|
|
1297
|
+
"integrity": "sha512-FHoG4U0HmJkBPoGgC22QKGM/3BxcyBpYGpnUzlwF1vA7Q1XPyWpiDNUHUkiUZoVESww9aoG+1Phk09TDCXa7Pg==",
|
|
1298
|
+
"dev": true,
|
|
1299
|
+
"license": "MIT",
|
|
1300
|
+
"peer": true,
|
|
1301
|
+
"dependencies": {
|
|
1302
|
+
"@nomicfoundation/hardhat-errors": "^3.0.15",
|
|
1303
|
+
"@nomicfoundation/hardhat-utils": "^4.1.3"
|
|
1304
|
+
},
|
|
1305
|
+
"peerDependencies": {
|
|
1306
|
+
"@nomicfoundation/hardhat-viem": "^3.0.4",
|
|
1307
|
+
"hardhat": "^3.8.0",
|
|
1308
|
+
"viem": "^2.47.6"
|
|
1309
|
+
}
|
|
1310
|
+
},
|
|
1311
|
+
"node_modules/@nomicfoundation/hardhat-zod-utils": {
|
|
1312
|
+
"version": "3.0.5",
|
|
1313
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-zod-utils/-/hardhat-zod-utils-3.0.5.tgz",
|
|
1314
|
+
"integrity": "sha512-A1G9Jcizf/vYcGMtqkf+st94zBPTDB+bXXlojOMu77gmBZYbywY0k7hdRM2B4uJY+8nM0oe0sNVGVkARITXdcw==",
|
|
1315
|
+
"dev": true,
|
|
1316
|
+
"license": "MIT",
|
|
1317
|
+
"dependencies": {
|
|
1318
|
+
"@nomicfoundation/hardhat-errors": "^3.0.13",
|
|
1319
|
+
"@nomicfoundation/hardhat-utils": "^4.1.2"
|
|
1320
|
+
},
|
|
1321
|
+
"peerDependencies": {
|
|
1322
|
+
"zod": "^3.23.8"
|
|
1323
|
+
}
|
|
1324
|
+
},
|
|
1325
|
+
"node_modules/@nomicfoundation/ignition-core": {
|
|
1326
|
+
"version": "3.1.7",
|
|
1327
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/ignition-core/-/ignition-core-3.1.7.tgz",
|
|
1328
|
+
"integrity": "sha512-3u9dZ3+tRW8uSNTMHlYONNKZ2psHjmMdUwtHKHOLsaWdyGBSNMwMnGmLCpXlqhPm+p40cmMSruyzogAQkcEseA==",
|
|
1329
|
+
"dev": true,
|
|
1330
|
+
"license": "MIT",
|
|
1331
|
+
"peer": true,
|
|
1332
|
+
"dependencies": {
|
|
1333
|
+
"@ethersproject/address": "5.6.1",
|
|
1334
|
+
"@nomicfoundation/hardhat-errors": "^3.0.15",
|
|
1335
|
+
"@nomicfoundation/hardhat-utils": "^4.1.2",
|
|
1336
|
+
"@nomicfoundation/solidity-analyzer": "^0.1.1",
|
|
1337
|
+
"cbor2": "^1.9.0",
|
|
1338
|
+
"ethers": "^6.14.0",
|
|
1339
|
+
"immer": "10.0.2",
|
|
1340
|
+
"lodash-es": "4.17.21",
|
|
1341
|
+
"ndjson": "2.0.0"
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1344
|
+
"node_modules/@nomicfoundation/ignition-core/node_modules/@ethersproject/address": {
|
|
1345
|
+
"version": "5.6.1",
|
|
1346
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.6.1.tgz",
|
|
1347
|
+
"integrity": "sha512-uOgF0kS5MJv9ZvCz7x6T2EXJSzotiybApn4XlOgoTX0xdtyVIJ7pF+6cGPxiEq/dpBiTfMiw7Yc81JcwhSYA0Q==",
|
|
1348
|
+
"dev": true,
|
|
1349
|
+
"funding": [
|
|
1350
|
+
{
|
|
1351
|
+
"type": "individual",
|
|
1352
|
+
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
"type": "individual",
|
|
1356
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1357
|
+
}
|
|
1358
|
+
],
|
|
1359
|
+
"license": "MIT",
|
|
1360
|
+
"peer": true,
|
|
1361
|
+
"dependencies": {
|
|
1362
|
+
"@ethersproject/bignumber": "^5.6.2",
|
|
1363
|
+
"@ethersproject/bytes": "^5.6.1",
|
|
1364
|
+
"@ethersproject/keccak256": "^5.6.1",
|
|
1365
|
+
"@ethersproject/logger": "^5.6.0",
|
|
1366
|
+
"@ethersproject/rlp": "^5.6.1"
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
"node_modules/@nomicfoundation/ignition-ui": {
|
|
1370
|
+
"version": "3.1.2",
|
|
1371
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/ignition-ui/-/ignition-ui-3.1.2.tgz",
|
|
1372
|
+
"integrity": "sha512-OoS5eQi9WBeiYI6EXurhqrpr6syRVhnaUzdx5fyK/1syKGq9BsjWWHXTNru0qk5ZFQ9f/KMTZotcDZD4eAdCpg==",
|
|
1373
|
+
"dev": true,
|
|
1374
|
+
"peer": true
|
|
1375
|
+
},
|
|
1376
|
+
"node_modules/@nomicfoundation/solidity-analyzer": {
|
|
1377
|
+
"version": "0.1.2",
|
|
1378
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer/-/solidity-analyzer-0.1.2.tgz",
|
|
1379
|
+
"integrity": "sha512-q4n32/FNKIhQ3zQGGw5CvPF6GTvDCpYwIf7bEY/dZTZbgfDsHyjJwURxUJf3VQuuJj+fDIFl4+KkBVbw4Ef6jA==",
|
|
1380
|
+
"dev": true,
|
|
1381
|
+
"license": "MIT",
|
|
1382
|
+
"engines": {
|
|
1383
|
+
"node": ">= 12"
|
|
1384
|
+
},
|
|
1385
|
+
"optionalDependencies": {
|
|
1386
|
+
"@nomicfoundation/solidity-analyzer-darwin-arm64": "0.1.2",
|
|
1387
|
+
"@nomicfoundation/solidity-analyzer-darwin-x64": "0.1.2",
|
|
1388
|
+
"@nomicfoundation/solidity-analyzer-linux-arm64-gnu": "0.1.2",
|
|
1389
|
+
"@nomicfoundation/solidity-analyzer-linux-arm64-musl": "0.1.2",
|
|
1390
|
+
"@nomicfoundation/solidity-analyzer-linux-x64-gnu": "0.1.2",
|
|
1391
|
+
"@nomicfoundation/solidity-analyzer-linux-x64-musl": "0.1.2",
|
|
1392
|
+
"@nomicfoundation/solidity-analyzer-win32-x64-msvc": "0.1.2"
|
|
1393
|
+
}
|
|
1394
|
+
},
|
|
1395
|
+
"node_modules/@nomicfoundation/solidity-analyzer-darwin-arm64": {
|
|
1396
|
+
"version": "0.1.2",
|
|
1397
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-arm64/-/solidity-analyzer-darwin-arm64-0.1.2.tgz",
|
|
1398
|
+
"integrity": "sha512-JaqcWPDZENCvm++lFFGjrDd8mxtf+CtLd2MiXvMNTBD33dContTZ9TWETwNFwg7JTJT5Q9HEecH7FA+HTSsIUw==",
|
|
1399
|
+
"dev": true,
|
|
1400
|
+
"license": "MIT",
|
|
1401
|
+
"optional": true,
|
|
1402
|
+
"engines": {
|
|
1403
|
+
"node": ">= 12"
|
|
1404
|
+
}
|
|
1405
|
+
},
|
|
1406
|
+
"node_modules/@nomicfoundation/solidity-analyzer-darwin-x64": {
|
|
1407
|
+
"version": "0.1.2",
|
|
1408
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-x64/-/solidity-analyzer-darwin-x64-0.1.2.tgz",
|
|
1409
|
+
"integrity": "sha512-fZNmVztrSXC03e9RONBT+CiksSeYcxI1wlzqyr0L7hsQlK1fzV+f04g2JtQ1c/Fe74ZwdV6aQBdd6Uwl1052sw==",
|
|
1410
|
+
"dev": true,
|
|
1411
|
+
"license": "MIT",
|
|
1412
|
+
"optional": true,
|
|
1413
|
+
"engines": {
|
|
1414
|
+
"node": ">= 12"
|
|
1415
|
+
}
|
|
1416
|
+
},
|
|
1417
|
+
"node_modules/@nomicfoundation/solidity-analyzer-linux-arm64-gnu": {
|
|
1418
|
+
"version": "0.1.2",
|
|
1419
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-arm64-gnu/-/solidity-analyzer-linux-arm64-gnu-0.1.2.tgz",
|
|
1420
|
+
"integrity": "sha512-3d54oc+9ZVBuB6nbp8wHylk4xh0N0Gc+bk+/uJae+rUgbOBwQSfuGIbAZt1wBXs5REkSmynEGcqx6DutoK0tPA==",
|
|
1421
|
+
"dev": true,
|
|
1422
|
+
"license": "MIT",
|
|
1423
|
+
"optional": true,
|
|
1424
|
+
"engines": {
|
|
1425
|
+
"node": ">= 12"
|
|
1426
|
+
}
|
|
1427
|
+
},
|
|
1428
|
+
"node_modules/@nomicfoundation/solidity-analyzer-linux-arm64-musl": {
|
|
1429
|
+
"version": "0.1.2",
|
|
1430
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-arm64-musl/-/solidity-analyzer-linux-arm64-musl-0.1.2.tgz",
|
|
1431
|
+
"integrity": "sha512-iDJfR2qf55vgsg7BtJa7iPiFAsYf2d0Tv/0B+vhtnI16+wfQeTbP7teookbGvAo0eJo7aLLm0xfS/GTkvHIucA==",
|
|
1432
|
+
"dev": true,
|
|
1433
|
+
"license": "MIT",
|
|
1434
|
+
"optional": true,
|
|
1435
|
+
"engines": {
|
|
1436
|
+
"node": ">= 12"
|
|
1437
|
+
}
|
|
1438
|
+
},
|
|
1439
|
+
"node_modules/@nomicfoundation/solidity-analyzer-linux-x64-gnu": {
|
|
1440
|
+
"version": "0.1.2",
|
|
1441
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-x64-gnu/-/solidity-analyzer-linux-x64-gnu-0.1.2.tgz",
|
|
1442
|
+
"integrity": "sha512-9dlHMAt5/2cpWyuJ9fQNOUXFB/vgSFORg1jpjX1Mh9hJ/MfZXlDdHQ+DpFCs32Zk5pxRBb07yGvSHk9/fezL+g==",
|
|
1443
|
+
"dev": true,
|
|
1444
|
+
"license": "MIT",
|
|
1445
|
+
"optional": true,
|
|
1446
|
+
"engines": {
|
|
1447
|
+
"node": ">= 12"
|
|
1448
|
+
}
|
|
1449
|
+
},
|
|
1450
|
+
"node_modules/@nomicfoundation/solidity-analyzer-linux-x64-musl": {
|
|
1451
|
+
"version": "0.1.2",
|
|
1452
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-x64-musl/-/solidity-analyzer-linux-x64-musl-0.1.2.tgz",
|
|
1453
|
+
"integrity": "sha512-GzzVeeJob3lfrSlDKQw2bRJ8rBf6mEYaWY+gW0JnTDHINA0s2gPR4km5RLIj1xeZZOYz4zRw+AEeYgLRqB2NXg==",
|
|
1454
|
+
"dev": true,
|
|
1455
|
+
"license": "MIT",
|
|
1456
|
+
"optional": true,
|
|
1457
|
+
"engines": {
|
|
1458
|
+
"node": ">= 12"
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
"node_modules/@nomicfoundation/solidity-analyzer-win32-x64-msvc": {
|
|
1462
|
+
"version": "0.1.2",
|
|
1463
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-win32-x64-msvc/-/solidity-analyzer-win32-x64-msvc-0.1.2.tgz",
|
|
1464
|
+
"integrity": "sha512-Fdjli4DCcFHb4Zgsz0uEJXZ2K7VEO+w5KVv7HmT7WO10iODdU9csC2az4jrhEsRtiR9Gfd74FlG0NYlw1BMdyA==",
|
|
1465
|
+
"dev": true,
|
|
1466
|
+
"license": "MIT",
|
|
1467
|
+
"optional": true,
|
|
1468
|
+
"engines": {
|
|
1469
|
+
"node": ">= 12"
|
|
1470
|
+
}
|
|
1471
|
+
},
|
|
1472
|
+
"node_modules/@openzeppelin/contracts": {
|
|
1473
|
+
"version": "5.6.1",
|
|
1474
|
+
"resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-5.6.1.tgz",
|
|
1475
|
+
"integrity": "sha512-Ly6SlsVJ3mj+b18W3R8gNufB7dTICT105fJhodGAGgyC2oqnBAhqSiNDJ8V8DLY05cCz81GLI0CU5vNYA1EC/w==",
|
|
1476
|
+
"license": "MIT"
|
|
1477
|
+
},
|
|
1478
|
+
"node_modules/@scure/base": {
|
|
1479
|
+
"version": "1.1.9",
|
|
1480
|
+
"resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz",
|
|
1481
|
+
"integrity": "sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==",
|
|
1482
|
+
"dev": true,
|
|
1483
|
+
"license": "MIT",
|
|
1484
|
+
"funding": {
|
|
1485
|
+
"url": "https://paulmillr.com/funding/"
|
|
1486
|
+
}
|
|
1487
|
+
},
|
|
1488
|
+
"node_modules/@scure/bip32": {
|
|
1489
|
+
"version": "1.4.0",
|
|
1490
|
+
"resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz",
|
|
1491
|
+
"integrity": "sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==",
|
|
1492
|
+
"dev": true,
|
|
1493
|
+
"license": "MIT",
|
|
1494
|
+
"dependencies": {
|
|
1495
|
+
"@noble/curves": "~1.4.0",
|
|
1496
|
+
"@noble/hashes": "~1.4.0",
|
|
1497
|
+
"@scure/base": "~1.1.6"
|
|
1498
|
+
},
|
|
1499
|
+
"funding": {
|
|
1500
|
+
"url": "https://paulmillr.com/funding/"
|
|
1501
|
+
}
|
|
1502
|
+
},
|
|
1503
|
+
"node_modules/@scure/bip32/node_modules/@noble/hashes": {
|
|
1504
|
+
"version": "1.4.0",
|
|
1505
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz",
|
|
1506
|
+
"integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==",
|
|
1507
|
+
"dev": true,
|
|
1508
|
+
"license": "MIT",
|
|
1509
|
+
"engines": {
|
|
1510
|
+
"node": ">= 16"
|
|
1511
|
+
},
|
|
1512
|
+
"funding": {
|
|
1513
|
+
"url": "https://paulmillr.com/funding/"
|
|
1514
|
+
}
|
|
1515
|
+
},
|
|
1516
|
+
"node_modules/@scure/bip39": {
|
|
1517
|
+
"version": "1.3.0",
|
|
1518
|
+
"resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz",
|
|
1519
|
+
"integrity": "sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==",
|
|
1520
|
+
"dev": true,
|
|
1521
|
+
"license": "MIT",
|
|
1522
|
+
"dependencies": {
|
|
1523
|
+
"@noble/hashes": "~1.4.0",
|
|
1524
|
+
"@scure/base": "~1.1.6"
|
|
1525
|
+
},
|
|
1526
|
+
"funding": {
|
|
1527
|
+
"url": "https://paulmillr.com/funding/"
|
|
1528
|
+
}
|
|
1529
|
+
},
|
|
1530
|
+
"node_modules/@scure/bip39/node_modules/@noble/hashes": {
|
|
1531
|
+
"version": "1.4.0",
|
|
1532
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz",
|
|
1533
|
+
"integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==",
|
|
1534
|
+
"dev": true,
|
|
1535
|
+
"license": "MIT",
|
|
1536
|
+
"engines": {
|
|
1537
|
+
"node": ">= 16"
|
|
1538
|
+
},
|
|
1539
|
+
"funding": {
|
|
1540
|
+
"url": "https://paulmillr.com/funding/"
|
|
1541
|
+
}
|
|
1542
|
+
},
|
|
1543
|
+
"node_modules/@sentry/core": {
|
|
1544
|
+
"version": "9.47.1",
|
|
1545
|
+
"resolved": "https://registry.npmjs.org/@sentry/core/-/core-9.47.1.tgz",
|
|
1546
|
+
"integrity": "sha512-KX62+qIt4xgy8eHKHiikfhz2p5fOciXd0Cl+dNzhgPFq8klq4MGMNaf148GB3M/vBqP4nw/eFvRMAayFCgdRQw==",
|
|
1547
|
+
"dev": true,
|
|
1548
|
+
"license": "MIT",
|
|
1549
|
+
"engines": {
|
|
1550
|
+
"node": ">=18"
|
|
1551
|
+
}
|
|
1552
|
+
},
|
|
1553
|
+
"node_modules/@sinclair/typebox": {
|
|
1554
|
+
"version": "0.27.10",
|
|
1555
|
+
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.10.tgz",
|
|
1556
|
+
"integrity": "sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==",
|
|
1557
|
+
"dev": true,
|
|
1558
|
+
"license": "MIT",
|
|
1559
|
+
"peer": true
|
|
1560
|
+
},
|
|
1561
|
+
"node_modules/@streamparser/json": {
|
|
1562
|
+
"version": "0.0.22",
|
|
1563
|
+
"resolved": "https://registry.npmjs.org/@streamparser/json/-/json-0.0.22.tgz",
|
|
1564
|
+
"integrity": "sha512-b6gTSBjJ8G8SuO3Gbbj+zXbVx8NSs1EbpbMKpzGLWMdkR+98McH9bEjSz3+0mPJf68c5nxa3CrJHp5EQNXM6zQ==",
|
|
1565
|
+
"dev": true,
|
|
1566
|
+
"license": "MIT"
|
|
1567
|
+
},
|
|
1568
|
+
"node_modules/@streamparser/json-node": {
|
|
1569
|
+
"version": "0.0.22",
|
|
1570
|
+
"resolved": "https://registry.npmjs.org/@streamparser/json-node/-/json-node-0.0.22.tgz",
|
|
1571
|
+
"integrity": "sha512-sJT2ptNRwqB1lIsQrQlCoWk5rF4tif9wDh+7yluAGijJamAhrHGYpFB/Zg3hJeceoZypi74ftXk8DHzwYpbZSg==",
|
|
1572
|
+
"dev": true,
|
|
1573
|
+
"license": "MIT",
|
|
1574
|
+
"dependencies": {
|
|
1575
|
+
"@streamparser/json": "^0.0.22"
|
|
1576
|
+
}
|
|
1577
|
+
},
|
|
1578
|
+
"node_modules/@types/node": {
|
|
1579
|
+
"version": "22.7.5",
|
|
1580
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz",
|
|
1581
|
+
"integrity": "sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==",
|
|
1582
|
+
"dev": true,
|
|
1583
|
+
"license": "MIT",
|
|
1584
|
+
"peer": true,
|
|
1585
|
+
"dependencies": {
|
|
1586
|
+
"undici-types": "~6.19.2"
|
|
1587
|
+
}
|
|
1588
|
+
},
|
|
1589
|
+
"node_modules/abitype": {
|
|
1590
|
+
"version": "1.2.3",
|
|
1591
|
+
"resolved": "https://registry.npmjs.org/abitype/-/abitype-1.2.3.tgz",
|
|
1592
|
+
"integrity": "sha512-Ofer5QUnuUdTFsBRwARMoWKOH1ND5ehwYhJ3OJ/BQO+StkwQjHw0XyVh4vDttzHB7QOFhPHa/o413PJ82gU/Tg==",
|
|
1593
|
+
"dev": true,
|
|
1594
|
+
"license": "MIT",
|
|
1595
|
+
"peer": true,
|
|
1596
|
+
"funding": {
|
|
1597
|
+
"url": "https://github.com/sponsors/wevm"
|
|
1598
|
+
},
|
|
1599
|
+
"peerDependencies": {
|
|
1600
|
+
"typescript": ">=5.0.4",
|
|
1601
|
+
"zod": "^3.22.0 || ^4.0.0"
|
|
1602
|
+
},
|
|
1603
|
+
"peerDependenciesMeta": {
|
|
1604
|
+
"typescript": {
|
|
1605
|
+
"optional": true
|
|
1606
|
+
},
|
|
1607
|
+
"zod": {
|
|
1608
|
+
"optional": true
|
|
1609
|
+
}
|
|
1610
|
+
}
|
|
1611
|
+
},
|
|
1612
|
+
"node_modules/adm-zip": {
|
|
1613
|
+
"version": "0.6.0",
|
|
1614
|
+
"resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.6.0.tgz",
|
|
1615
|
+
"integrity": "sha512-XleryMhbuksdKtofnWZ9Sk+4CUTbms4Mb/EU32SZwToAyZ5RgVos/ki8n+yr0LWHOGKuakbXTuuYNHLQjhddgg==",
|
|
1616
|
+
"dev": true,
|
|
1617
|
+
"license": "MIT",
|
|
1618
|
+
"engines": {
|
|
1619
|
+
"node": ">=14.0"
|
|
1620
|
+
}
|
|
1621
|
+
},
|
|
1622
|
+
"node_modules/aes-js": {
|
|
1623
|
+
"version": "4.0.0-beta.5",
|
|
1624
|
+
"resolved": "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz",
|
|
1625
|
+
"integrity": "sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==",
|
|
1626
|
+
"dev": true,
|
|
1627
|
+
"license": "MIT",
|
|
1628
|
+
"peer": true
|
|
1629
|
+
},
|
|
1630
|
+
"node_modules/ansi-colors": {
|
|
1631
|
+
"version": "4.1.3",
|
|
1632
|
+
"resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz",
|
|
1633
|
+
"integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==",
|
|
1634
|
+
"dev": true,
|
|
1635
|
+
"license": "MIT",
|
|
1636
|
+
"engines": {
|
|
1637
|
+
"node": ">=6"
|
|
1638
|
+
}
|
|
1639
|
+
},
|
|
1640
|
+
"node_modules/ansi-regex": {
|
|
1641
|
+
"version": "5.0.1",
|
|
1642
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
1643
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
1644
|
+
"dev": true,
|
|
1645
|
+
"license": "MIT",
|
|
1646
|
+
"engines": {
|
|
1647
|
+
"node": ">=8"
|
|
1648
|
+
}
|
|
1649
|
+
},
|
|
1650
|
+
"node_modules/ansi-styles": {
|
|
1651
|
+
"version": "4.3.0",
|
|
1652
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
1653
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
1654
|
+
"dev": true,
|
|
1655
|
+
"license": "MIT",
|
|
1656
|
+
"peer": true,
|
|
1657
|
+
"dependencies": {
|
|
1658
|
+
"color-convert": "^2.0.1"
|
|
1659
|
+
},
|
|
1660
|
+
"engines": {
|
|
1661
|
+
"node": ">=8"
|
|
1662
|
+
},
|
|
1663
|
+
"funding": {
|
|
1664
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
1665
|
+
}
|
|
1666
|
+
},
|
|
1667
|
+
"node_modules/bn.js": {
|
|
1668
|
+
"version": "5.2.3",
|
|
1669
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.3.tgz",
|
|
1670
|
+
"integrity": "sha512-EAcmnPkxpntVL+DS7bO1zhcZNvCkxqtkd0ZY53h06GNQ3DEkkGZ/gKgmDv6DdZQGj9BgfSPKtJJ7Dp1GPP8f7w==",
|
|
1671
|
+
"dev": true,
|
|
1672
|
+
"license": "MIT",
|
|
1673
|
+
"peer": true
|
|
1674
|
+
},
|
|
1675
|
+
"node_modules/brorand": {
|
|
1676
|
+
"version": "1.1.0",
|
|
1677
|
+
"resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
|
|
1678
|
+
"integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==",
|
|
1679
|
+
"dev": true,
|
|
1680
|
+
"license": "MIT",
|
|
1681
|
+
"peer": true
|
|
1682
|
+
},
|
|
1683
|
+
"node_modules/cbor2": {
|
|
1684
|
+
"version": "1.12.0",
|
|
1685
|
+
"resolved": "https://registry.npmjs.org/cbor2/-/cbor2-1.12.0.tgz",
|
|
1686
|
+
"integrity": "sha512-3Cco8XQhi27DogSp9Ri6LYNZLi/TBY/JVnDe+mj06NkBjW/ZYOtekaEU4wZ4xcRMNrFkDv8KNtOAqHyDfz3lYg==",
|
|
1687
|
+
"dev": true,
|
|
1688
|
+
"license": "MIT",
|
|
1689
|
+
"peer": true,
|
|
1690
|
+
"engines": {
|
|
1691
|
+
"node": ">=18.7"
|
|
1692
|
+
}
|
|
1693
|
+
},
|
|
1694
|
+
"node_modules/chai": {
|
|
1695
|
+
"version": "6.2.2",
|
|
1696
|
+
"resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz",
|
|
1697
|
+
"integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==",
|
|
1698
|
+
"dev": true,
|
|
1699
|
+
"license": "MIT",
|
|
1700
|
+
"engines": {
|
|
1701
|
+
"node": ">=18"
|
|
1702
|
+
}
|
|
1703
|
+
},
|
|
1704
|
+
"node_modules/chalk": {
|
|
1705
|
+
"version": "4.1.2",
|
|
1706
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
1707
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
1708
|
+
"dev": true,
|
|
1709
|
+
"license": "MIT",
|
|
1710
|
+
"peer": true,
|
|
1711
|
+
"dependencies": {
|
|
1712
|
+
"ansi-styles": "^4.1.0",
|
|
1713
|
+
"supports-color": "^7.1.0"
|
|
1714
|
+
},
|
|
1715
|
+
"engines": {
|
|
1716
|
+
"node": ">=10"
|
|
1717
|
+
},
|
|
1718
|
+
"funding": {
|
|
1719
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
1720
|
+
}
|
|
1721
|
+
},
|
|
1722
|
+
"node_modules/chokidar": {
|
|
1723
|
+
"version": "4.0.3",
|
|
1724
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
|
|
1725
|
+
"integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
|
|
1726
|
+
"dev": true,
|
|
1727
|
+
"license": "MIT",
|
|
1728
|
+
"dependencies": {
|
|
1729
|
+
"readdirp": "^4.0.1"
|
|
1730
|
+
},
|
|
1731
|
+
"engines": {
|
|
1732
|
+
"node": ">= 14.16.0"
|
|
1733
|
+
},
|
|
1734
|
+
"funding": {
|
|
1735
|
+
"url": "https://paulmillr.com/funding/"
|
|
1736
|
+
}
|
|
1737
|
+
},
|
|
1738
|
+
"node_modules/color-convert": {
|
|
1739
|
+
"version": "2.0.1",
|
|
1740
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
1741
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
1742
|
+
"dev": true,
|
|
1743
|
+
"license": "MIT",
|
|
1744
|
+
"peer": true,
|
|
1745
|
+
"dependencies": {
|
|
1746
|
+
"color-name": "~1.1.4"
|
|
1747
|
+
},
|
|
1748
|
+
"engines": {
|
|
1749
|
+
"node": ">=7.0.0"
|
|
1750
|
+
}
|
|
1751
|
+
},
|
|
1752
|
+
"node_modules/color-name": {
|
|
1753
|
+
"version": "1.1.4",
|
|
1754
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
1755
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
1756
|
+
"dev": true,
|
|
1757
|
+
"license": "MIT",
|
|
1758
|
+
"peer": true
|
|
1759
|
+
},
|
|
1760
|
+
"node_modules/diff-sequences": {
|
|
1761
|
+
"version": "29.6.3",
|
|
1762
|
+
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz",
|
|
1763
|
+
"integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==",
|
|
1764
|
+
"dev": true,
|
|
1765
|
+
"license": "MIT",
|
|
1766
|
+
"peer": true,
|
|
1767
|
+
"engines": {
|
|
1768
|
+
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
1769
|
+
}
|
|
1770
|
+
},
|
|
1771
|
+
"node_modules/dotenv": {
|
|
1772
|
+
"version": "17.4.2",
|
|
1773
|
+
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.4.2.tgz",
|
|
1774
|
+
"integrity": "sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==",
|
|
1775
|
+
"license": "BSD-2-Clause",
|
|
1776
|
+
"engines": {
|
|
1777
|
+
"node": ">=12"
|
|
1778
|
+
},
|
|
1779
|
+
"funding": {
|
|
1780
|
+
"url": "https://dotenvx.com"
|
|
1781
|
+
}
|
|
1782
|
+
},
|
|
1783
|
+
"node_modules/elliptic": {
|
|
1784
|
+
"version": "6.6.1",
|
|
1785
|
+
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz",
|
|
1786
|
+
"integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==",
|
|
1787
|
+
"dev": true,
|
|
1788
|
+
"license": "MIT",
|
|
1789
|
+
"peer": true,
|
|
1790
|
+
"dependencies": {
|
|
1791
|
+
"bn.js": "^4.11.9",
|
|
1792
|
+
"brorand": "^1.1.0",
|
|
1793
|
+
"hash.js": "^1.0.0",
|
|
1794
|
+
"hmac-drbg": "^1.0.1",
|
|
1795
|
+
"inherits": "^2.0.4",
|
|
1796
|
+
"minimalistic-assert": "^1.0.1",
|
|
1797
|
+
"minimalistic-crypto-utils": "^1.0.1"
|
|
1798
|
+
}
|
|
1799
|
+
},
|
|
1800
|
+
"node_modules/elliptic/node_modules/bn.js": {
|
|
1801
|
+
"version": "4.12.3",
|
|
1802
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz",
|
|
1803
|
+
"integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==",
|
|
1804
|
+
"dev": true,
|
|
1805
|
+
"license": "MIT",
|
|
1806
|
+
"peer": true
|
|
1807
|
+
},
|
|
1808
|
+
"node_modules/enquirer": {
|
|
1809
|
+
"version": "2.4.1",
|
|
1810
|
+
"resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz",
|
|
1811
|
+
"integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==",
|
|
1812
|
+
"dev": true,
|
|
1813
|
+
"license": "MIT",
|
|
1814
|
+
"dependencies": {
|
|
1815
|
+
"ansi-colors": "^4.1.1",
|
|
1816
|
+
"strip-ansi": "^6.0.1"
|
|
1817
|
+
},
|
|
1818
|
+
"engines": {
|
|
1819
|
+
"node": ">=8.6"
|
|
1820
|
+
}
|
|
1821
|
+
},
|
|
1822
|
+
"node_modules/env-paths": {
|
|
1823
|
+
"version": "2.2.1",
|
|
1824
|
+
"resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
|
|
1825
|
+
"integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
|
|
1826
|
+
"dev": true,
|
|
1827
|
+
"license": "MIT",
|
|
1828
|
+
"engines": {
|
|
1829
|
+
"node": ">=6"
|
|
1830
|
+
}
|
|
1831
|
+
},
|
|
1832
|
+
"node_modules/esbuild": {
|
|
1833
|
+
"version": "0.28.1",
|
|
1834
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz",
|
|
1835
|
+
"integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==",
|
|
1836
|
+
"dev": true,
|
|
1837
|
+
"hasInstallScript": true,
|
|
1838
|
+
"license": "MIT",
|
|
1839
|
+
"bin": {
|
|
1840
|
+
"esbuild": "bin/esbuild"
|
|
1841
|
+
},
|
|
1842
|
+
"engines": {
|
|
1843
|
+
"node": ">=18"
|
|
1844
|
+
},
|
|
1845
|
+
"optionalDependencies": {
|
|
1846
|
+
"@esbuild/aix-ppc64": "0.28.1",
|
|
1847
|
+
"@esbuild/android-arm": "0.28.1",
|
|
1848
|
+
"@esbuild/android-arm64": "0.28.1",
|
|
1849
|
+
"@esbuild/android-x64": "0.28.1",
|
|
1850
|
+
"@esbuild/darwin-arm64": "0.28.1",
|
|
1851
|
+
"@esbuild/darwin-x64": "0.28.1",
|
|
1852
|
+
"@esbuild/freebsd-arm64": "0.28.1",
|
|
1853
|
+
"@esbuild/freebsd-x64": "0.28.1",
|
|
1854
|
+
"@esbuild/linux-arm": "0.28.1",
|
|
1855
|
+
"@esbuild/linux-arm64": "0.28.1",
|
|
1856
|
+
"@esbuild/linux-ia32": "0.28.1",
|
|
1857
|
+
"@esbuild/linux-loong64": "0.28.1",
|
|
1858
|
+
"@esbuild/linux-mips64el": "0.28.1",
|
|
1859
|
+
"@esbuild/linux-ppc64": "0.28.1",
|
|
1860
|
+
"@esbuild/linux-riscv64": "0.28.1",
|
|
1861
|
+
"@esbuild/linux-s390x": "0.28.1",
|
|
1862
|
+
"@esbuild/linux-x64": "0.28.1",
|
|
1863
|
+
"@esbuild/netbsd-arm64": "0.28.1",
|
|
1864
|
+
"@esbuild/netbsd-x64": "0.28.1",
|
|
1865
|
+
"@esbuild/openbsd-arm64": "0.28.1",
|
|
1866
|
+
"@esbuild/openbsd-x64": "0.28.1",
|
|
1867
|
+
"@esbuild/openharmony-arm64": "0.28.1",
|
|
1868
|
+
"@esbuild/sunos-x64": "0.28.1",
|
|
1869
|
+
"@esbuild/win32-arm64": "0.28.1",
|
|
1870
|
+
"@esbuild/win32-ia32": "0.28.1",
|
|
1871
|
+
"@esbuild/win32-x64": "0.28.1"
|
|
1872
|
+
}
|
|
1873
|
+
},
|
|
1874
|
+
"node_modules/ethereum-cryptography": {
|
|
1875
|
+
"version": "2.2.1",
|
|
1876
|
+
"resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz",
|
|
1877
|
+
"integrity": "sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==",
|
|
1878
|
+
"dev": true,
|
|
1879
|
+
"license": "MIT",
|
|
1880
|
+
"dependencies": {
|
|
1881
|
+
"@noble/curves": "1.4.2",
|
|
1882
|
+
"@noble/hashes": "1.4.0",
|
|
1883
|
+
"@scure/bip32": "1.4.0",
|
|
1884
|
+
"@scure/bip39": "1.3.0"
|
|
1885
|
+
}
|
|
1886
|
+
},
|
|
1887
|
+
"node_modules/ethereum-cryptography/node_modules/@noble/hashes": {
|
|
1888
|
+
"version": "1.4.0",
|
|
1889
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz",
|
|
1890
|
+
"integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==",
|
|
1891
|
+
"dev": true,
|
|
1892
|
+
"license": "MIT",
|
|
1893
|
+
"engines": {
|
|
1894
|
+
"node": ">= 16"
|
|
1895
|
+
},
|
|
1896
|
+
"funding": {
|
|
1897
|
+
"url": "https://paulmillr.com/funding/"
|
|
1898
|
+
}
|
|
1899
|
+
},
|
|
1900
|
+
"node_modules/ethers": {
|
|
1901
|
+
"version": "6.17.0",
|
|
1902
|
+
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.17.0.tgz",
|
|
1903
|
+
"integrity": "sha512-BpyrpIPJ3ydEVow8zGaz1DuPS7YU8DcWxuBnY9a0UA/lvAPwrMr+EPXsfrul628SRaekPNeIM4UFh/91GWZang==",
|
|
1904
|
+
"dev": true,
|
|
1905
|
+
"funding": [
|
|
1906
|
+
{
|
|
1907
|
+
"type": "individual",
|
|
1908
|
+
"url": "https://github.com/sponsors/ethers-io/"
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
"type": "individual",
|
|
1912
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1913
|
+
}
|
|
1914
|
+
],
|
|
1915
|
+
"license": "MIT",
|
|
1916
|
+
"peer": true,
|
|
1917
|
+
"dependencies": {
|
|
1918
|
+
"@adraffy/ens-normalize": "1.11.1",
|
|
1919
|
+
"@noble/curves": "1.2.0",
|
|
1920
|
+
"@noble/hashes": "1.3.2",
|
|
1921
|
+
"@types/node": "22.7.5",
|
|
1922
|
+
"aes-js": "4.0.0-beta.5",
|
|
1923
|
+
"tslib": "2.7.0",
|
|
1924
|
+
"ws": "8.21.0"
|
|
1925
|
+
},
|
|
1926
|
+
"engines": {
|
|
1927
|
+
"node": ">=14.0.0"
|
|
1928
|
+
}
|
|
1929
|
+
},
|
|
1930
|
+
"node_modules/ethers/node_modules/@noble/curves": {
|
|
1931
|
+
"version": "1.2.0",
|
|
1932
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
|
|
1933
|
+
"integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
|
|
1934
|
+
"dev": true,
|
|
1935
|
+
"license": "MIT",
|
|
1936
|
+
"peer": true,
|
|
1937
|
+
"dependencies": {
|
|
1938
|
+
"@noble/hashes": "1.3.2"
|
|
1939
|
+
},
|
|
1940
|
+
"funding": {
|
|
1941
|
+
"url": "https://paulmillr.com/funding/"
|
|
1942
|
+
}
|
|
1943
|
+
},
|
|
1944
|
+
"node_modules/ethers/node_modules/@noble/hashes": {
|
|
1945
|
+
"version": "1.3.2",
|
|
1946
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
|
|
1947
|
+
"integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
|
|
1948
|
+
"dev": true,
|
|
1949
|
+
"license": "MIT",
|
|
1950
|
+
"peer": true,
|
|
1951
|
+
"engines": {
|
|
1952
|
+
"node": ">= 16"
|
|
1953
|
+
},
|
|
1954
|
+
"funding": {
|
|
1955
|
+
"url": "https://paulmillr.com/funding/"
|
|
1956
|
+
}
|
|
1957
|
+
},
|
|
1958
|
+
"node_modules/eventemitter3": {
|
|
1959
|
+
"version": "5.0.1",
|
|
1960
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz",
|
|
1961
|
+
"integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==",
|
|
1962
|
+
"dev": true,
|
|
1963
|
+
"license": "MIT",
|
|
1964
|
+
"peer": true
|
|
1965
|
+
},
|
|
1966
|
+
"node_modules/fast-equals": {
|
|
1967
|
+
"version": "5.4.0",
|
|
1968
|
+
"resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.4.0.tgz",
|
|
1969
|
+
"integrity": "sha512-jt2DW/aNFNwke7AUd+Z+e6pz39KO5rzdbbFCg2sGafS4mk13MI7Z8O5z9cADNn5lhGODIgLwug6TZO2ctf7kcw==",
|
|
1970
|
+
"dev": true,
|
|
1971
|
+
"license": "MIT",
|
|
1972
|
+
"engines": {
|
|
1973
|
+
"node": ">=6.0.0"
|
|
1974
|
+
}
|
|
1975
|
+
},
|
|
1976
|
+
"node_modules/fs-extra": {
|
|
1977
|
+
"version": "11.3.6",
|
|
1978
|
+
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.6.tgz",
|
|
1979
|
+
"integrity": "sha512-w8ZNZr2mKIc7qeNaQ9AVPT1+iFaI+Avd4xudVOvdDJ8VytREi1Ft5Ih7hd9jjehod8vAM5GMsfQ/TpPf4EyoEA==",
|
|
1980
|
+
"license": "MIT",
|
|
1981
|
+
"dependencies": {
|
|
1982
|
+
"graceful-fs": "^4.2.0",
|
|
1983
|
+
"jsonfile": "^6.0.1",
|
|
1984
|
+
"universalify": "^2.0.0"
|
|
1985
|
+
},
|
|
1986
|
+
"engines": {
|
|
1987
|
+
"node": ">=14.14"
|
|
1988
|
+
}
|
|
1989
|
+
},
|
|
1990
|
+
"node_modules/fsevents": {
|
|
1991
|
+
"version": "2.3.3",
|
|
1992
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
1993
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
1994
|
+
"dev": true,
|
|
1995
|
+
"hasInstallScript": true,
|
|
1996
|
+
"license": "MIT",
|
|
1997
|
+
"optional": true,
|
|
1998
|
+
"os": [
|
|
1999
|
+
"darwin"
|
|
2000
|
+
],
|
|
2001
|
+
"engines": {
|
|
2002
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
2003
|
+
}
|
|
2004
|
+
},
|
|
2005
|
+
"node_modules/graceful-fs": {
|
|
2006
|
+
"version": "4.2.11",
|
|
2007
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
2008
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
2009
|
+
"license": "ISC"
|
|
2010
|
+
},
|
|
2011
|
+
"node_modules/hardhat": {
|
|
2012
|
+
"version": "3.10.0",
|
|
2013
|
+
"resolved": "https://registry.npmjs.org/hardhat/-/hardhat-3.10.0.tgz",
|
|
2014
|
+
"integrity": "sha512-cdKIhSX0zVH/oONOexChuE4w1/w/D3wNFdXpxKeIV5Z1xkyoc0QFXVTWR079eIz+ZcHEND24+hfY878UOFezeA==",
|
|
2015
|
+
"dev": true,
|
|
2016
|
+
"license": "MIT",
|
|
2017
|
+
"dependencies": {
|
|
2018
|
+
"@nomicfoundation/edr": "0.14.0",
|
|
2019
|
+
"@nomicfoundation/hardhat-errors": "^3.0.17",
|
|
2020
|
+
"@nomicfoundation/hardhat-utils": "^4.1.5",
|
|
2021
|
+
"@nomicfoundation/hardhat-vendored": "^3.0.4",
|
|
2022
|
+
"@nomicfoundation/hardhat-zod-utils": "^3.0.5",
|
|
2023
|
+
"@nomicfoundation/solidity-analyzer": "^0.1.1",
|
|
2024
|
+
"@sentry/core": "^9.4.0",
|
|
2025
|
+
"adm-zip": "^0.4.16",
|
|
2026
|
+
"chokidar": "^4.0.3",
|
|
2027
|
+
"enquirer": "^2.3.0",
|
|
2028
|
+
"ethereum-cryptography": "^2.2.1",
|
|
2029
|
+
"micro-eth-signer": "^0.14.0",
|
|
2030
|
+
"p-map": "^7.0.2",
|
|
2031
|
+
"resolve.exports": "^2.0.3",
|
|
2032
|
+
"semver": "^7.6.3",
|
|
2033
|
+
"tsx": "^4.19.3",
|
|
2034
|
+
"ws": "^8.18.0",
|
|
2035
|
+
"zod": "^3.23.8"
|
|
2036
|
+
},
|
|
2037
|
+
"bin": {
|
|
2038
|
+
"hardhat": "dist/src/cli.js"
|
|
2039
|
+
}
|
|
2040
|
+
},
|
|
2041
|
+
"node_modules/has-flag": {
|
|
2042
|
+
"version": "4.0.0",
|
|
2043
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
2044
|
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
2045
|
+
"dev": true,
|
|
2046
|
+
"license": "MIT",
|
|
2047
|
+
"peer": true,
|
|
2048
|
+
"engines": {
|
|
2049
|
+
"node": ">=8"
|
|
2050
|
+
}
|
|
2051
|
+
},
|
|
2052
|
+
"node_modules/hash.js": {
|
|
2053
|
+
"version": "1.1.7",
|
|
2054
|
+
"resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
|
|
2055
|
+
"integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
|
|
2056
|
+
"dev": true,
|
|
2057
|
+
"license": "MIT",
|
|
2058
|
+
"peer": true,
|
|
2059
|
+
"dependencies": {
|
|
2060
|
+
"inherits": "^2.0.3",
|
|
2061
|
+
"minimalistic-assert": "^1.0.1"
|
|
2062
|
+
}
|
|
2063
|
+
},
|
|
2064
|
+
"node_modules/hmac-drbg": {
|
|
2065
|
+
"version": "1.0.1",
|
|
2066
|
+
"resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
|
|
2067
|
+
"integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==",
|
|
2068
|
+
"dev": true,
|
|
2069
|
+
"license": "MIT",
|
|
2070
|
+
"peer": true,
|
|
2071
|
+
"dependencies": {
|
|
2072
|
+
"hash.js": "^1.0.3",
|
|
2073
|
+
"minimalistic-assert": "^1.0.0",
|
|
2074
|
+
"minimalistic-crypto-utils": "^1.0.1"
|
|
2075
|
+
}
|
|
2076
|
+
},
|
|
2077
|
+
"node_modules/immer": {
|
|
2078
|
+
"version": "10.0.2",
|
|
2079
|
+
"resolved": "https://registry.npmjs.org/immer/-/immer-10.0.2.tgz",
|
|
2080
|
+
"integrity": "sha512-Rx3CqeqQ19sxUtYV9CU911Vhy8/721wRFnJv3REVGWUmoAcIwzifTsdmJte/MV+0/XpM35LZdQMBGkRIoLPwQA==",
|
|
2081
|
+
"dev": true,
|
|
2082
|
+
"license": "MIT",
|
|
2083
|
+
"peer": true,
|
|
2084
|
+
"funding": {
|
|
2085
|
+
"type": "opencollective",
|
|
2086
|
+
"url": "https://opencollective.com/immer"
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
"node_modules/inherits": {
|
|
2090
|
+
"version": "2.0.4",
|
|
2091
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
2092
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
2093
|
+
"dev": true,
|
|
2094
|
+
"license": "ISC",
|
|
2095
|
+
"peer": true
|
|
2096
|
+
},
|
|
2097
|
+
"node_modules/isows": {
|
|
2098
|
+
"version": "1.0.7",
|
|
2099
|
+
"resolved": "https://registry.npmjs.org/isows/-/isows-1.0.7.tgz",
|
|
2100
|
+
"integrity": "sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg==",
|
|
2101
|
+
"dev": true,
|
|
2102
|
+
"funding": [
|
|
2103
|
+
{
|
|
2104
|
+
"type": "github",
|
|
2105
|
+
"url": "https://github.com/sponsors/wevm"
|
|
2106
|
+
}
|
|
2107
|
+
],
|
|
2108
|
+
"license": "MIT",
|
|
2109
|
+
"peer": true,
|
|
2110
|
+
"peerDependencies": {
|
|
2111
|
+
"ws": "*"
|
|
2112
|
+
}
|
|
2113
|
+
},
|
|
2114
|
+
"node_modules/jest-diff": {
|
|
2115
|
+
"version": "29.7.0",
|
|
2116
|
+
"resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz",
|
|
2117
|
+
"integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==",
|
|
2118
|
+
"dev": true,
|
|
2119
|
+
"license": "MIT",
|
|
2120
|
+
"peer": true,
|
|
2121
|
+
"dependencies": {
|
|
2122
|
+
"chalk": "^4.0.0",
|
|
2123
|
+
"diff-sequences": "^29.6.3",
|
|
2124
|
+
"jest-get-type": "^29.6.3",
|
|
2125
|
+
"pretty-format": "^29.7.0"
|
|
2126
|
+
},
|
|
2127
|
+
"engines": {
|
|
2128
|
+
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
2129
|
+
}
|
|
2130
|
+
},
|
|
2131
|
+
"node_modules/jest-get-type": {
|
|
2132
|
+
"version": "29.6.3",
|
|
2133
|
+
"resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz",
|
|
2134
|
+
"integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==",
|
|
2135
|
+
"dev": true,
|
|
2136
|
+
"license": "MIT",
|
|
2137
|
+
"peer": true,
|
|
2138
|
+
"engines": {
|
|
2139
|
+
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
2140
|
+
}
|
|
2141
|
+
},
|
|
2142
|
+
"node_modules/js-sha3": {
|
|
2143
|
+
"version": "0.8.0",
|
|
2144
|
+
"resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz",
|
|
2145
|
+
"integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==",
|
|
2146
|
+
"dev": true,
|
|
2147
|
+
"license": "MIT",
|
|
2148
|
+
"peer": true
|
|
2149
|
+
},
|
|
2150
|
+
"node_modules/json-stream-stringify": {
|
|
2151
|
+
"version": "3.1.7",
|
|
2152
|
+
"resolved": "https://registry.npmjs.org/json-stream-stringify/-/json-stream-stringify-3.1.7.tgz",
|
|
2153
|
+
"integrity": "sha512-F4MWetLtY42YMaAKw5cV4e47zMD5aOT+tjjQWjX18ACtdkQ5Y/vrcfbcQ107Rh+MXjOCIx4KhW0wPmOvG8iQ5w==",
|
|
2154
|
+
"dev": true,
|
|
2155
|
+
"license": "MIT",
|
|
2156
|
+
"engines": {
|
|
2157
|
+
"node": ">=7.10.1"
|
|
2158
|
+
}
|
|
2159
|
+
},
|
|
2160
|
+
"node_modules/json-stringify-safe": {
|
|
2161
|
+
"version": "5.0.1",
|
|
2162
|
+
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
|
|
2163
|
+
"integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==",
|
|
2164
|
+
"dev": true,
|
|
2165
|
+
"license": "ISC",
|
|
2166
|
+
"peer": true
|
|
2167
|
+
},
|
|
2168
|
+
"node_modules/json5": {
|
|
2169
|
+
"version": "2.2.3",
|
|
2170
|
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
|
|
2171
|
+
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
|
|
2172
|
+
"dev": true,
|
|
2173
|
+
"license": "MIT",
|
|
2174
|
+
"peer": true,
|
|
2175
|
+
"bin": {
|
|
2176
|
+
"json5": "lib/cli.js"
|
|
2177
|
+
},
|
|
2178
|
+
"engines": {
|
|
2179
|
+
"node": ">=6"
|
|
2180
|
+
}
|
|
2181
|
+
},
|
|
2182
|
+
"node_modules/jsonfile": {
|
|
2183
|
+
"version": "6.2.1",
|
|
2184
|
+
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz",
|
|
2185
|
+
"integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==",
|
|
2186
|
+
"license": "MIT",
|
|
2187
|
+
"dependencies": {
|
|
2188
|
+
"universalify": "^2.0.0"
|
|
2189
|
+
},
|
|
2190
|
+
"optionalDependencies": {
|
|
2191
|
+
"graceful-fs": "^4.1.6"
|
|
2192
|
+
}
|
|
2193
|
+
},
|
|
2194
|
+
"node_modules/kleur": {
|
|
2195
|
+
"version": "3.0.3",
|
|
2196
|
+
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
|
|
2197
|
+
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
|
|
2198
|
+
"dev": true,
|
|
2199
|
+
"license": "MIT",
|
|
2200
|
+
"peer": true,
|
|
2201
|
+
"engines": {
|
|
2202
|
+
"node": ">=6"
|
|
2203
|
+
}
|
|
2204
|
+
},
|
|
2205
|
+
"node_modules/lodash-es": {
|
|
2206
|
+
"version": "4.18.1",
|
|
2207
|
+
"resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.18.1.tgz",
|
|
2208
|
+
"integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
|
|
2209
|
+
"dev": true,
|
|
2210
|
+
"license": "MIT",
|
|
2211
|
+
"peer": true
|
|
2212
|
+
},
|
|
2213
|
+
"node_modules/micro-eth-signer": {
|
|
2214
|
+
"version": "0.14.0",
|
|
2215
|
+
"resolved": "https://registry.npmjs.org/micro-eth-signer/-/micro-eth-signer-0.14.0.tgz",
|
|
2216
|
+
"integrity": "sha512-5PLLzHiVYPWClEvZIXXFu5yutzpadb73rnQCpUqIHu3No3coFuWQNfE5tkBQJ7djuLYl6aRLaS0MgWJYGoqiBw==",
|
|
2217
|
+
"dev": true,
|
|
2218
|
+
"license": "MIT",
|
|
2219
|
+
"dependencies": {
|
|
2220
|
+
"@noble/curves": "~1.8.1",
|
|
2221
|
+
"@noble/hashes": "~1.7.1",
|
|
2222
|
+
"micro-packed": "~0.7.2"
|
|
2223
|
+
}
|
|
2224
|
+
},
|
|
2225
|
+
"node_modules/micro-eth-signer/node_modules/@noble/curves": {
|
|
2226
|
+
"version": "1.8.2",
|
|
2227
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.8.2.tgz",
|
|
2228
|
+
"integrity": "sha512-vnI7V6lFNe0tLAuJMu+2sX+FcL14TaCWy1qiczg1VwRmPrpQCdq5ESXQMqUc2tluRNf6irBXrWbl1mGN8uaU/g==",
|
|
2229
|
+
"dev": true,
|
|
2230
|
+
"license": "MIT",
|
|
2231
|
+
"dependencies": {
|
|
2232
|
+
"@noble/hashes": "1.7.2"
|
|
2233
|
+
},
|
|
2234
|
+
"engines": {
|
|
2235
|
+
"node": "^14.21.3 || >=16"
|
|
2236
|
+
},
|
|
2237
|
+
"funding": {
|
|
2238
|
+
"url": "https://paulmillr.com/funding/"
|
|
2239
|
+
}
|
|
2240
|
+
},
|
|
2241
|
+
"node_modules/micro-eth-signer/node_modules/@noble/hashes": {
|
|
2242
|
+
"version": "1.7.2",
|
|
2243
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.2.tgz",
|
|
2244
|
+
"integrity": "sha512-biZ0NUSxyjLLqo6KxEJ1b+C2NAx0wtDoFvCaXHGgUkeHzf3Xc1xKumFKREuT7f7DARNZ/slvYUwFG6B0f2b6hQ==",
|
|
2245
|
+
"dev": true,
|
|
2246
|
+
"license": "MIT",
|
|
2247
|
+
"engines": {
|
|
2248
|
+
"node": "^14.21.3 || >=16"
|
|
2249
|
+
},
|
|
2250
|
+
"funding": {
|
|
2251
|
+
"url": "https://paulmillr.com/funding/"
|
|
2252
|
+
}
|
|
2253
|
+
},
|
|
2254
|
+
"node_modules/micro-packed": {
|
|
2255
|
+
"version": "0.7.3",
|
|
2256
|
+
"resolved": "https://registry.npmjs.org/micro-packed/-/micro-packed-0.7.3.tgz",
|
|
2257
|
+
"integrity": "sha512-2Milxs+WNC00TRlem41oRswvw31146GiSaoCT7s3Xi2gMUglW5QBeqlQaZeHr5tJx9nm3i57LNXPqxOOaWtTYg==",
|
|
2258
|
+
"dev": true,
|
|
2259
|
+
"license": "MIT",
|
|
2260
|
+
"dependencies": {
|
|
2261
|
+
"@scure/base": "~1.2.5"
|
|
2262
|
+
},
|
|
2263
|
+
"funding": {
|
|
2264
|
+
"url": "https://paulmillr.com/funding/"
|
|
2265
|
+
}
|
|
2266
|
+
},
|
|
2267
|
+
"node_modules/micro-packed/node_modules/@scure/base": {
|
|
2268
|
+
"version": "1.2.6",
|
|
2269
|
+
"resolved": "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz",
|
|
2270
|
+
"integrity": "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==",
|
|
2271
|
+
"dev": true,
|
|
2272
|
+
"license": "MIT",
|
|
2273
|
+
"funding": {
|
|
2274
|
+
"url": "https://paulmillr.com/funding/"
|
|
2275
|
+
}
|
|
2276
|
+
},
|
|
2277
|
+
"node_modules/minimalistic-assert": {
|
|
2278
|
+
"version": "1.0.1",
|
|
2279
|
+
"resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
|
|
2280
|
+
"integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
|
|
2281
|
+
"dev": true,
|
|
2282
|
+
"license": "ISC",
|
|
2283
|
+
"peer": true
|
|
2284
|
+
},
|
|
2285
|
+
"node_modules/minimalistic-crypto-utils": {
|
|
2286
|
+
"version": "1.0.1",
|
|
2287
|
+
"resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
|
|
2288
|
+
"integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==",
|
|
2289
|
+
"dev": true,
|
|
2290
|
+
"license": "MIT",
|
|
2291
|
+
"peer": true
|
|
2292
|
+
},
|
|
2293
|
+
"node_modules/minimist": {
|
|
2294
|
+
"version": "1.2.8",
|
|
2295
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
|
|
2296
|
+
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
|
|
2297
|
+
"dev": true,
|
|
2298
|
+
"license": "MIT",
|
|
2299
|
+
"peer": true,
|
|
2300
|
+
"funding": {
|
|
2301
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2302
|
+
}
|
|
2303
|
+
},
|
|
2304
|
+
"node_modules/ndjson": {
|
|
2305
|
+
"version": "2.0.0",
|
|
2306
|
+
"resolved": "https://registry.npmjs.org/ndjson/-/ndjson-2.0.0.tgz",
|
|
2307
|
+
"integrity": "sha512-nGl7LRGrzugTtaFcJMhLbpzJM6XdivmbkdlaGcrk/LXg2KL/YBC6z1g70xh0/al+oFuVFP8N8kiWRucmeEH/qQ==",
|
|
2308
|
+
"dev": true,
|
|
2309
|
+
"license": "BSD-3-Clause",
|
|
2310
|
+
"peer": true,
|
|
2311
|
+
"dependencies": {
|
|
2312
|
+
"json-stringify-safe": "^5.0.1",
|
|
2313
|
+
"minimist": "^1.2.5",
|
|
2314
|
+
"readable-stream": "^3.6.0",
|
|
2315
|
+
"split2": "^3.0.0",
|
|
2316
|
+
"through2": "^4.0.0"
|
|
2317
|
+
},
|
|
2318
|
+
"bin": {
|
|
2319
|
+
"ndjson": "cli.js"
|
|
2320
|
+
},
|
|
2321
|
+
"engines": {
|
|
2322
|
+
"node": ">=10"
|
|
2323
|
+
}
|
|
2324
|
+
},
|
|
2325
|
+
"node_modules/ox": {
|
|
2326
|
+
"version": "0.14.29",
|
|
2327
|
+
"resolved": "https://registry.npmjs.org/ox/-/ox-0.14.29.tgz",
|
|
2328
|
+
"integrity": "sha512-M5j87Ec4V99MQdRct/g09eWXW60g6zhHTUs1lr4deUtrPDnezBdCJTgKd7pxqTpSZBFveV0ALi9jMMuT1qKyNg==",
|
|
2329
|
+
"dev": true,
|
|
2330
|
+
"funding": [
|
|
2331
|
+
{
|
|
2332
|
+
"type": "github",
|
|
2333
|
+
"url": "https://github.com/sponsors/wevm"
|
|
2334
|
+
}
|
|
2335
|
+
],
|
|
2336
|
+
"license": "MIT",
|
|
2337
|
+
"peer": true,
|
|
2338
|
+
"dependencies": {
|
|
2339
|
+
"@adraffy/ens-normalize": "^1.11.0",
|
|
2340
|
+
"@noble/ciphers": "^1.3.0",
|
|
2341
|
+
"@noble/curves": "1.9.1",
|
|
2342
|
+
"@noble/hashes": "^1.8.0",
|
|
2343
|
+
"@scure/bip32": "^1.7.0",
|
|
2344
|
+
"@scure/bip39": "^1.6.0",
|
|
2345
|
+
"abitype": "^1.2.3",
|
|
2346
|
+
"eventemitter3": "5.0.1"
|
|
2347
|
+
},
|
|
2348
|
+
"peerDependencies": {
|
|
2349
|
+
"typescript": ">=5.4.0"
|
|
2350
|
+
},
|
|
2351
|
+
"peerDependenciesMeta": {
|
|
2352
|
+
"typescript": {
|
|
2353
|
+
"optional": true
|
|
2354
|
+
}
|
|
2355
|
+
}
|
|
2356
|
+
},
|
|
2357
|
+
"node_modules/ox/node_modules/@noble/ciphers": {
|
|
2358
|
+
"version": "1.3.0",
|
|
2359
|
+
"resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.3.0.tgz",
|
|
2360
|
+
"integrity": "sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==",
|
|
2361
|
+
"dev": true,
|
|
2362
|
+
"license": "MIT",
|
|
2363
|
+
"peer": true,
|
|
2364
|
+
"engines": {
|
|
2365
|
+
"node": "^14.21.3 || >=16"
|
|
2366
|
+
},
|
|
2367
|
+
"funding": {
|
|
2368
|
+
"url": "https://paulmillr.com/funding/"
|
|
2369
|
+
}
|
|
2370
|
+
},
|
|
2371
|
+
"node_modules/ox/node_modules/@noble/curves": {
|
|
2372
|
+
"version": "1.9.1",
|
|
2373
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.1.tgz",
|
|
2374
|
+
"integrity": "sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==",
|
|
2375
|
+
"dev": true,
|
|
2376
|
+
"license": "MIT",
|
|
2377
|
+
"peer": true,
|
|
2378
|
+
"dependencies": {
|
|
2379
|
+
"@noble/hashes": "1.8.0"
|
|
2380
|
+
},
|
|
2381
|
+
"engines": {
|
|
2382
|
+
"node": "^14.21.3 || >=16"
|
|
2383
|
+
},
|
|
2384
|
+
"funding": {
|
|
2385
|
+
"url": "https://paulmillr.com/funding/"
|
|
2386
|
+
}
|
|
2387
|
+
},
|
|
2388
|
+
"node_modules/ox/node_modules/@noble/hashes": {
|
|
2389
|
+
"version": "1.8.0",
|
|
2390
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz",
|
|
2391
|
+
"integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==",
|
|
2392
|
+
"dev": true,
|
|
2393
|
+
"license": "MIT",
|
|
2394
|
+
"peer": true,
|
|
2395
|
+
"engines": {
|
|
2396
|
+
"node": "^14.21.3 || >=16"
|
|
2397
|
+
},
|
|
2398
|
+
"funding": {
|
|
2399
|
+
"url": "https://paulmillr.com/funding/"
|
|
2400
|
+
}
|
|
2401
|
+
},
|
|
2402
|
+
"node_modules/ox/node_modules/@scure/base": {
|
|
2403
|
+
"version": "1.2.6",
|
|
2404
|
+
"resolved": "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz",
|
|
2405
|
+
"integrity": "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==",
|
|
2406
|
+
"dev": true,
|
|
2407
|
+
"license": "MIT",
|
|
2408
|
+
"peer": true,
|
|
2409
|
+
"funding": {
|
|
2410
|
+
"url": "https://paulmillr.com/funding/"
|
|
2411
|
+
}
|
|
2412
|
+
},
|
|
2413
|
+
"node_modules/ox/node_modules/@scure/bip32": {
|
|
2414
|
+
"version": "1.7.0",
|
|
2415
|
+
"resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.7.0.tgz",
|
|
2416
|
+
"integrity": "sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==",
|
|
2417
|
+
"dev": true,
|
|
2418
|
+
"license": "MIT",
|
|
2419
|
+
"peer": true,
|
|
2420
|
+
"dependencies": {
|
|
2421
|
+
"@noble/curves": "~1.9.0",
|
|
2422
|
+
"@noble/hashes": "~1.8.0",
|
|
2423
|
+
"@scure/base": "~1.2.5"
|
|
2424
|
+
},
|
|
2425
|
+
"funding": {
|
|
2426
|
+
"url": "https://paulmillr.com/funding/"
|
|
2427
|
+
}
|
|
2428
|
+
},
|
|
2429
|
+
"node_modules/ox/node_modules/@scure/bip39": {
|
|
2430
|
+
"version": "1.6.0",
|
|
2431
|
+
"resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.6.0.tgz",
|
|
2432
|
+
"integrity": "sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==",
|
|
2433
|
+
"dev": true,
|
|
2434
|
+
"license": "MIT",
|
|
2435
|
+
"peer": true,
|
|
2436
|
+
"dependencies": {
|
|
2437
|
+
"@noble/hashes": "~1.8.0",
|
|
2438
|
+
"@scure/base": "~1.2.5"
|
|
2439
|
+
},
|
|
2440
|
+
"funding": {
|
|
2441
|
+
"url": "https://paulmillr.com/funding/"
|
|
2442
|
+
}
|
|
2443
|
+
},
|
|
2444
|
+
"node_modules/p-map": {
|
|
2445
|
+
"version": "7.0.4",
|
|
2446
|
+
"resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz",
|
|
2447
|
+
"integrity": "sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==",
|
|
2448
|
+
"dev": true,
|
|
2449
|
+
"license": "MIT",
|
|
2450
|
+
"engines": {
|
|
2451
|
+
"node": ">=18"
|
|
2452
|
+
},
|
|
2453
|
+
"funding": {
|
|
2454
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2455
|
+
}
|
|
2456
|
+
},
|
|
2457
|
+
"node_modules/pretty-format": {
|
|
2458
|
+
"version": "29.7.0",
|
|
2459
|
+
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
|
|
2460
|
+
"integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
|
|
2461
|
+
"dev": true,
|
|
2462
|
+
"license": "MIT",
|
|
2463
|
+
"peer": true,
|
|
2464
|
+
"dependencies": {
|
|
2465
|
+
"@jest/schemas": "^29.6.3",
|
|
2466
|
+
"ansi-styles": "^5.0.0",
|
|
2467
|
+
"react-is": "^18.0.0"
|
|
2468
|
+
},
|
|
2469
|
+
"engines": {
|
|
2470
|
+
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
2471
|
+
}
|
|
2472
|
+
},
|
|
2473
|
+
"node_modules/pretty-format/node_modules/ansi-styles": {
|
|
2474
|
+
"version": "5.2.0",
|
|
2475
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
|
|
2476
|
+
"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
|
|
2477
|
+
"dev": true,
|
|
2478
|
+
"license": "MIT",
|
|
2479
|
+
"peer": true,
|
|
2480
|
+
"engines": {
|
|
2481
|
+
"node": ">=10"
|
|
2482
|
+
},
|
|
2483
|
+
"funding": {
|
|
2484
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
2485
|
+
}
|
|
2486
|
+
},
|
|
2487
|
+
"node_modules/prompts": {
|
|
2488
|
+
"version": "2.4.2",
|
|
2489
|
+
"resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
|
|
2490
|
+
"integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
|
|
2491
|
+
"dev": true,
|
|
2492
|
+
"license": "MIT",
|
|
2493
|
+
"peer": true,
|
|
2494
|
+
"dependencies": {
|
|
2495
|
+
"kleur": "^3.0.3",
|
|
2496
|
+
"sisteransi": "^1.0.5"
|
|
2497
|
+
},
|
|
2498
|
+
"engines": {
|
|
2499
|
+
"node": ">= 6"
|
|
2500
|
+
}
|
|
2501
|
+
},
|
|
2502
|
+
"node_modules/react-is": {
|
|
2503
|
+
"version": "18.3.1",
|
|
2504
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
2505
|
+
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
2506
|
+
"dev": true,
|
|
2507
|
+
"license": "MIT",
|
|
2508
|
+
"peer": true
|
|
2509
|
+
},
|
|
2510
|
+
"node_modules/readable-stream": {
|
|
2511
|
+
"version": "3.6.2",
|
|
2512
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
2513
|
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
2514
|
+
"dev": true,
|
|
2515
|
+
"license": "MIT",
|
|
2516
|
+
"peer": true,
|
|
2517
|
+
"dependencies": {
|
|
2518
|
+
"inherits": "^2.0.3",
|
|
2519
|
+
"string_decoder": "^1.1.1",
|
|
2520
|
+
"util-deprecate": "^1.0.1"
|
|
2521
|
+
},
|
|
2522
|
+
"engines": {
|
|
2523
|
+
"node": ">= 6"
|
|
2524
|
+
}
|
|
2525
|
+
},
|
|
2526
|
+
"node_modules/readdirp": {
|
|
2527
|
+
"version": "4.1.2",
|
|
2528
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
|
|
2529
|
+
"integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
|
|
2530
|
+
"dev": true,
|
|
2531
|
+
"license": "MIT",
|
|
2532
|
+
"engines": {
|
|
2533
|
+
"node": ">= 14.18.0"
|
|
2534
|
+
},
|
|
2535
|
+
"funding": {
|
|
2536
|
+
"type": "individual",
|
|
2537
|
+
"url": "https://paulmillr.com/funding/"
|
|
2538
|
+
}
|
|
2539
|
+
},
|
|
2540
|
+
"node_modules/resolve.exports": {
|
|
2541
|
+
"version": "2.0.3",
|
|
2542
|
+
"resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz",
|
|
2543
|
+
"integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==",
|
|
2544
|
+
"dev": true,
|
|
2545
|
+
"license": "MIT",
|
|
2546
|
+
"engines": {
|
|
2547
|
+
"node": ">=10"
|
|
2548
|
+
}
|
|
2549
|
+
},
|
|
2550
|
+
"node_modules/rfdc": {
|
|
2551
|
+
"version": "1.4.1",
|
|
2552
|
+
"resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
|
|
2553
|
+
"integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
|
|
2554
|
+
"dev": true,
|
|
2555
|
+
"license": "MIT"
|
|
2556
|
+
},
|
|
2557
|
+
"node_modules/safe-buffer": {
|
|
2558
|
+
"version": "5.2.1",
|
|
2559
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
2560
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
2561
|
+
"dev": true,
|
|
2562
|
+
"funding": [
|
|
2563
|
+
{
|
|
2564
|
+
"type": "github",
|
|
2565
|
+
"url": "https://github.com/sponsors/feross"
|
|
2566
|
+
},
|
|
2567
|
+
{
|
|
2568
|
+
"type": "patreon",
|
|
2569
|
+
"url": "https://www.patreon.com/feross"
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
"type": "consulting",
|
|
2573
|
+
"url": "https://feross.org/support"
|
|
2574
|
+
}
|
|
2575
|
+
],
|
|
2576
|
+
"license": "MIT",
|
|
2577
|
+
"peer": true
|
|
2578
|
+
},
|
|
2579
|
+
"node_modules/semver": {
|
|
2580
|
+
"version": "7.8.5",
|
|
2581
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
|
|
2582
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
2583
|
+
"dev": true,
|
|
2584
|
+
"license": "ISC",
|
|
2585
|
+
"bin": {
|
|
2586
|
+
"semver": "bin/semver.js"
|
|
2587
|
+
},
|
|
2588
|
+
"engines": {
|
|
2589
|
+
"node": ">=10"
|
|
2590
|
+
}
|
|
2591
|
+
},
|
|
2592
|
+
"node_modules/sisteransi": {
|
|
2593
|
+
"version": "1.0.5",
|
|
2594
|
+
"resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
|
|
2595
|
+
"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
|
|
2596
|
+
"dev": true,
|
|
2597
|
+
"license": "MIT",
|
|
2598
|
+
"peer": true
|
|
2599
|
+
},
|
|
2600
|
+
"node_modules/split2": {
|
|
2601
|
+
"version": "3.2.2",
|
|
2602
|
+
"resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz",
|
|
2603
|
+
"integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==",
|
|
2604
|
+
"dev": true,
|
|
2605
|
+
"license": "ISC",
|
|
2606
|
+
"peer": true,
|
|
2607
|
+
"dependencies": {
|
|
2608
|
+
"readable-stream": "^3.0.0"
|
|
2609
|
+
}
|
|
2610
|
+
},
|
|
2611
|
+
"node_modules/string_decoder": {
|
|
2612
|
+
"version": "1.3.0",
|
|
2613
|
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
2614
|
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
|
2615
|
+
"dev": true,
|
|
2616
|
+
"license": "MIT",
|
|
2617
|
+
"peer": true,
|
|
2618
|
+
"dependencies": {
|
|
2619
|
+
"safe-buffer": "~5.2.0"
|
|
2620
|
+
}
|
|
2621
|
+
},
|
|
2622
|
+
"node_modules/strip-ansi": {
|
|
2623
|
+
"version": "6.0.1",
|
|
2624
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
2625
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
2626
|
+
"dev": true,
|
|
2627
|
+
"license": "MIT",
|
|
2628
|
+
"dependencies": {
|
|
2629
|
+
"ansi-regex": "^5.0.1"
|
|
2630
|
+
},
|
|
2631
|
+
"engines": {
|
|
2632
|
+
"node": ">=8"
|
|
2633
|
+
}
|
|
2634
|
+
},
|
|
2635
|
+
"node_modules/supports-color": {
|
|
2636
|
+
"version": "7.2.0",
|
|
2637
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
2638
|
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
2639
|
+
"dev": true,
|
|
2640
|
+
"license": "MIT",
|
|
2641
|
+
"peer": true,
|
|
2642
|
+
"dependencies": {
|
|
2643
|
+
"has-flag": "^4.0.0"
|
|
2644
|
+
},
|
|
2645
|
+
"engines": {
|
|
2646
|
+
"node": ">=8"
|
|
2647
|
+
}
|
|
2648
|
+
},
|
|
2649
|
+
"node_modules/through2": {
|
|
2650
|
+
"version": "4.0.2",
|
|
2651
|
+
"resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
|
|
2652
|
+
"integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==",
|
|
2653
|
+
"dev": true,
|
|
2654
|
+
"license": "MIT",
|
|
2655
|
+
"peer": true,
|
|
2656
|
+
"dependencies": {
|
|
2657
|
+
"readable-stream": "3"
|
|
2658
|
+
}
|
|
2659
|
+
},
|
|
2660
|
+
"node_modules/tslib": {
|
|
2661
|
+
"version": "2.7.0",
|
|
2662
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz",
|
|
2663
|
+
"integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==",
|
|
2664
|
+
"dev": true,
|
|
2665
|
+
"license": "0BSD",
|
|
2666
|
+
"peer": true
|
|
2667
|
+
},
|
|
2668
|
+
"node_modules/tsx": {
|
|
2669
|
+
"version": "4.22.4",
|
|
2670
|
+
"resolved": "https://registry.npmjs.org/tsx/-/tsx-4.22.4.tgz",
|
|
2671
|
+
"integrity": "sha512-X8EX+XV4QR5xCsrgxaED954zTDfY8KqlDtskKEL0cHhyS/P8b4IFOvGDQpsC9Q1XnLq915wEfwwY/zzskCtmhg==",
|
|
2672
|
+
"dev": true,
|
|
2673
|
+
"license": "MIT",
|
|
2674
|
+
"dependencies": {
|
|
2675
|
+
"esbuild": "~0.28.0"
|
|
2676
|
+
},
|
|
2677
|
+
"bin": {
|
|
2678
|
+
"tsx": "dist/cli.mjs"
|
|
2679
|
+
},
|
|
2680
|
+
"engines": {
|
|
2681
|
+
"node": ">=18.0.0"
|
|
2682
|
+
},
|
|
2683
|
+
"optionalDependencies": {
|
|
2684
|
+
"fsevents": "~2.3.3"
|
|
2685
|
+
}
|
|
2686
|
+
},
|
|
2687
|
+
"node_modules/tunnel": {
|
|
2688
|
+
"version": "0.0.6",
|
|
2689
|
+
"resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
|
|
2690
|
+
"integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==",
|
|
2691
|
+
"dev": true,
|
|
2692
|
+
"license": "MIT",
|
|
2693
|
+
"peer": true,
|
|
2694
|
+
"engines": {
|
|
2695
|
+
"node": ">=0.6.11 <=0.7.0 || >=0.7.3"
|
|
2696
|
+
}
|
|
2697
|
+
},
|
|
2698
|
+
"node_modules/undici": {
|
|
2699
|
+
"version": "6.27.0",
|
|
2700
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-6.27.0.tgz",
|
|
2701
|
+
"integrity": "sha512-YmfV3YnEDzXRC5lZ2jWtWWHKGUm1zIt8AhesR1tens+HTNv+YZlN/dp6G727LOvMJ8xjP9Be7Y2Sdr96LDm+pg==",
|
|
2702
|
+
"dev": true,
|
|
2703
|
+
"license": "MIT",
|
|
2704
|
+
"engines": {
|
|
2705
|
+
"node": ">=18.17"
|
|
2706
|
+
}
|
|
2707
|
+
},
|
|
2708
|
+
"node_modules/undici-types": {
|
|
2709
|
+
"version": "6.19.8",
|
|
2710
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz",
|
|
2711
|
+
"integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==",
|
|
2712
|
+
"dev": true,
|
|
2713
|
+
"license": "MIT",
|
|
2714
|
+
"peer": true
|
|
2715
|
+
},
|
|
2716
|
+
"node_modules/universalify": {
|
|
2717
|
+
"version": "2.0.1",
|
|
2718
|
+
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
|
|
2719
|
+
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
|
|
2720
|
+
"license": "MIT",
|
|
2721
|
+
"engines": {
|
|
2722
|
+
"node": ">= 10.0.0"
|
|
2723
|
+
}
|
|
2724
|
+
},
|
|
2725
|
+
"node_modules/util-deprecate": {
|
|
2726
|
+
"version": "1.0.2",
|
|
2727
|
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
2728
|
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
|
2729
|
+
"dev": true,
|
|
2730
|
+
"license": "MIT",
|
|
2731
|
+
"peer": true
|
|
2732
|
+
},
|
|
2733
|
+
"node_modules/viem": {
|
|
2734
|
+
"version": "2.53.1",
|
|
2735
|
+
"resolved": "https://registry.npmjs.org/viem/-/viem-2.53.1.tgz",
|
|
2736
|
+
"integrity": "sha512-FhfJ/SW73CVosiyVLmIMVgKDRKYV1AGCLzZoHYvmNayyVff63Qi1ocPCk59LqC/cNw244RbBJjHnmxqXkE7NpA==",
|
|
2737
|
+
"dev": true,
|
|
2738
|
+
"funding": [
|
|
2739
|
+
{
|
|
2740
|
+
"type": "github",
|
|
2741
|
+
"url": "https://github.com/sponsors/wevm"
|
|
2742
|
+
}
|
|
2743
|
+
],
|
|
2744
|
+
"license": "MIT",
|
|
2745
|
+
"peer": true,
|
|
2746
|
+
"dependencies": {
|
|
2747
|
+
"@noble/curves": "1.9.1",
|
|
2748
|
+
"@noble/hashes": "1.8.0",
|
|
2749
|
+
"@scure/bip32": "1.7.0",
|
|
2750
|
+
"@scure/bip39": "1.6.0",
|
|
2751
|
+
"abitype": "1.2.3",
|
|
2752
|
+
"isows": "1.0.7",
|
|
2753
|
+
"ox": "0.14.29",
|
|
2754
|
+
"ws": "8.20.1"
|
|
2755
|
+
},
|
|
2756
|
+
"peerDependencies": {
|
|
2757
|
+
"typescript": ">=5.0.4"
|
|
2758
|
+
},
|
|
2759
|
+
"peerDependenciesMeta": {
|
|
2760
|
+
"typescript": {
|
|
2761
|
+
"optional": true
|
|
2762
|
+
}
|
|
2763
|
+
}
|
|
2764
|
+
},
|
|
2765
|
+
"node_modules/viem/node_modules/@noble/curves": {
|
|
2766
|
+
"version": "1.9.1",
|
|
2767
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.1.tgz",
|
|
2768
|
+
"integrity": "sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==",
|
|
2769
|
+
"dev": true,
|
|
2770
|
+
"license": "MIT",
|
|
2771
|
+
"peer": true,
|
|
2772
|
+
"dependencies": {
|
|
2773
|
+
"@noble/hashes": "1.8.0"
|
|
2774
|
+
},
|
|
2775
|
+
"engines": {
|
|
2776
|
+
"node": "^14.21.3 || >=16"
|
|
2777
|
+
},
|
|
2778
|
+
"funding": {
|
|
2779
|
+
"url": "https://paulmillr.com/funding/"
|
|
2780
|
+
}
|
|
2781
|
+
},
|
|
2782
|
+
"node_modules/viem/node_modules/@noble/hashes": {
|
|
2783
|
+
"version": "1.8.0",
|
|
2784
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz",
|
|
2785
|
+
"integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==",
|
|
2786
|
+
"dev": true,
|
|
2787
|
+
"license": "MIT",
|
|
2788
|
+
"peer": true,
|
|
2789
|
+
"engines": {
|
|
2790
|
+
"node": "^14.21.3 || >=16"
|
|
2791
|
+
},
|
|
2792
|
+
"funding": {
|
|
2793
|
+
"url": "https://paulmillr.com/funding/"
|
|
2794
|
+
}
|
|
2795
|
+
},
|
|
2796
|
+
"node_modules/viem/node_modules/@scure/base": {
|
|
2797
|
+
"version": "1.2.6",
|
|
2798
|
+
"resolved": "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz",
|
|
2799
|
+
"integrity": "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==",
|
|
2800
|
+
"dev": true,
|
|
2801
|
+
"license": "MIT",
|
|
2802
|
+
"peer": true,
|
|
2803
|
+
"funding": {
|
|
2804
|
+
"url": "https://paulmillr.com/funding/"
|
|
2805
|
+
}
|
|
2806
|
+
},
|
|
2807
|
+
"node_modules/viem/node_modules/@scure/bip32": {
|
|
2808
|
+
"version": "1.7.0",
|
|
2809
|
+
"resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.7.0.tgz",
|
|
2810
|
+
"integrity": "sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==",
|
|
2811
|
+
"dev": true,
|
|
2812
|
+
"license": "MIT",
|
|
2813
|
+
"peer": true,
|
|
2814
|
+
"dependencies": {
|
|
2815
|
+
"@noble/curves": "~1.9.0",
|
|
2816
|
+
"@noble/hashes": "~1.8.0",
|
|
2817
|
+
"@scure/base": "~1.2.5"
|
|
2818
|
+
},
|
|
2819
|
+
"funding": {
|
|
2820
|
+
"url": "https://paulmillr.com/funding/"
|
|
2821
|
+
}
|
|
2822
|
+
},
|
|
2823
|
+
"node_modules/viem/node_modules/@scure/bip39": {
|
|
2824
|
+
"version": "1.6.0",
|
|
2825
|
+
"resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.6.0.tgz",
|
|
2826
|
+
"integrity": "sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==",
|
|
2827
|
+
"dev": true,
|
|
2828
|
+
"license": "MIT",
|
|
2829
|
+
"peer": true,
|
|
2830
|
+
"dependencies": {
|
|
2831
|
+
"@noble/hashes": "~1.8.0",
|
|
2832
|
+
"@scure/base": "~1.2.5"
|
|
2833
|
+
},
|
|
2834
|
+
"funding": {
|
|
2835
|
+
"url": "https://paulmillr.com/funding/"
|
|
2836
|
+
}
|
|
2837
|
+
},
|
|
2838
|
+
"node_modules/ws": {
|
|
2839
|
+
"version": "8.21.0",
|
|
2840
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
|
|
2841
|
+
"integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
|
|
2842
|
+
"dev": true,
|
|
2843
|
+
"license": "MIT",
|
|
2844
|
+
"engines": {
|
|
2845
|
+
"node": ">=10.0.0"
|
|
2846
|
+
},
|
|
2847
|
+
"peerDependencies": {
|
|
2848
|
+
"bufferutil": "^4.0.1",
|
|
2849
|
+
"utf-8-validate": ">=5.0.2"
|
|
2850
|
+
},
|
|
2851
|
+
"peerDependenciesMeta": {
|
|
2852
|
+
"bufferutil": {
|
|
2853
|
+
"optional": true
|
|
2854
|
+
},
|
|
2855
|
+
"utf-8-validate": {
|
|
2856
|
+
"optional": true
|
|
2857
|
+
}
|
|
2858
|
+
}
|
|
2859
|
+
},
|
|
2860
|
+
"node_modules/zod": {
|
|
2861
|
+
"version": "3.25.76",
|
|
2862
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
2863
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
2864
|
+
"dev": true,
|
|
2865
|
+
"license": "MIT",
|
|
2866
|
+
"funding": {
|
|
2867
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
2868
|
+
}
|
|
2869
|
+
}
|
|
2870
|
+
}
|
|
2871
|
+
}
|