From b93d056479adfc4a1f557578d8b66eda48b104a9 Mon Sep 17 00:00:00 2001 From: Daniel Wang <99078276+dantaik@users.noreply.github.com> Date: Fri, 27 Sep 2024 07:51:13 +0800 Subject: [PATCH] refactor(protocol): slightly change defender monitors (#18086) --- .github/workflows/protocol-monitors.yml | 37 + .github/workflows/protocol.yml | 4 + packages/monitors/.gitignore | 1 + .../.defender/deployment-log.mystack.json | 9 + .../monitors/defender/mainnet/.env.example | 2 + .../defender/mainnet}/README.md | 0 .../actions/Bridge-MessageProcessed/index.js} | 2 +- .../ER20Vault-BridgedTokenChanged/index.js} | 0 .../actions/ERC20Vault-BalanceDrop/index.js} | 0 .../GuardianProver-ApprovedCount/index.js} | 6 +- .../index.js} | 8 +- .../GuardianProver-GuardiansUpdated/index.js} | 8 +- .../index.js} | 7 +- .../SGXVerifier-verifyProofFailure/index.js} | 2 +- .../actions/TaikoL1-BlockProposed/index.js} | 12 +- .../actions/TaikoL1-BlockVerified/index.js} | 12 +- .../TaikoL1-CalldataTxListCount/index.js} | 2 +- .../actions/TaikoL1-ProvingPaused/index.js} | 2 +- .../index.js} | 2 +- .../TaikoL1-TransitionProved/index.js} | 2 +- .../Vaults-BridgedTokenDeployed/index.js} | 23 +- .../defender/mainnet}/serverless.yml | 411 +- packages/monitors/package.json | 16 + packages/protocol/.env.example | 2 +- .../ERC1155Vault-BridgedTokenDeployed.js | 162 - .../ERC20Vault-BridgedTokenDeployed.js | 168 - .../ERC721Vault-BridgedTokenDeployed.js | 162 - pnpm-lock.yaml | 17888 +++++++++------- 28 files changed, 11157 insertions(+), 7793 deletions(-) create mode 100644 .github/workflows/protocol-monitors.yml create mode 100644 packages/monitors/.gitignore create mode 100644 packages/monitors/defender/mainnet/.defender/deployment-log.mystack.json create mode 100644 packages/monitors/defender/mainnet/.env.example rename packages/{protocol/monitors => monitors/defender/mainnet}/README.md (100%) rename packages/{protocol/monitors/actions/Bridge-MessageProcessed.js => monitors/defender/mainnet/actions/Bridge-MessageProcessed/index.js} (97%) rename packages/{protocol/monitors/actions/ER20Vault-BridgedTokenChanged.js => monitors/defender/mainnet/actions/ER20Vault-BridgedTokenChanged/index.js} (100%) rename packages/{protocol/monitors/actions/ERC20Vault-BalanceDrop.js => monitors/defender/mainnet/actions/ERC20Vault-BalanceDrop/index.js} (100%) rename packages/{protocol/monitors/actions/GuardianProver-ApprovedCount.js => monitors/defender/mainnet/actions/GuardianProver-ApprovedCount/index.js} (94%) rename packages/{protocol/monitors/actions/GuardianProver-ConflictingProofs.js => monitors/defender/mainnet/actions/GuardianProver-ConflictingProofs/index.js} (94%) rename packages/{protocol/monitors/actions/GuardianProver-GuardiansUpdated.js => monitors/defender/mainnet/actions/GuardianProver-GuardiansUpdated/index.js} (93%) rename packages/{protocol/monitors/actions/GuardianProver-ProvingAutoPauseEnabled.js => monitors/defender/mainnet/actions/GuardianProver-ProvingAutoPauseEnabled/index.js} (93%) rename packages/{protocol/monitors/actions/SGXVerifier-verifyProofFailure.js => monitors/defender/mainnet/actions/SGXVerifier-verifyProofFailure/index.js} (98%) rename packages/{protocol/monitors/actions/TaikoL1-BlockProposed.js => monitors/defender/mainnet/actions/TaikoL1-BlockProposed/index.js} (96%) rename packages/{protocol/monitors/actions/TaikoL1-BlockVerified.js => monitors/defender/mainnet/actions/TaikoL1-BlockVerified/index.js} (91%) rename packages/{protocol/monitors/actions/TaikoL1-CalldataTxListCount.js => monitors/defender/mainnet/actions/TaikoL1-CalldataTxListCount/index.js} (98%) rename packages/{protocol/monitors/actions/TaikoL1-ProvingPaused.js => monitors/defender/mainnet/actions/TaikoL1-ProvingPaused/index.js} (98%) rename packages/{protocol/monitors/actions/TaikoL1-TransitionContestedCount.js => monitors/defender/mainnet/actions/TaikoL1-TransitionContestedCount/index.js} (99%) rename packages/{protocol/monitors/actions/TaikoL1-TransitionProved.js => monitors/defender/mainnet/actions/TaikoL1-TransitionProved/index.js} (99%) rename packages/{protocol/monitors/actions/Vaults-BridgedTokenDeployed.js => monitors/defender/mainnet/actions/Vaults-BridgedTokenDeployed/index.js} (93%) rename packages/{protocol/monitors => monitors/defender/mainnet}/serverless.yml (65%) create mode 100644 packages/monitors/package.json delete mode 100644 packages/protocol/monitors/actions/ERC1155Vault-BridgedTokenDeployed.js delete mode 100644 packages/protocol/monitors/actions/ERC20Vault-BridgedTokenDeployed.js delete mode 100644 packages/protocol/monitors/actions/ERC721Vault-BridgedTokenDeployed.js diff --git a/.github/workflows/protocol-monitors.yml b/.github/workflows/protocol-monitors.yml new file mode 100644 index 0000000000..8c6a051c20 --- /dev/null +++ b/.github/workflows/protocol-monitors.yml @@ -0,0 +1,37 @@ +name: Monitors + +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + paths: + - "packages/monitors/**" + +jobs: + deploy-protocol-monitors: + if: github.event.pull_request.draft == false + runs-on: [taiko-runner] + permissions: + # Give the necessary permissions for stefanzweifel/git-auto-commit-action. + contents: write + steps: + - name: Cancel previous runs + uses: styfle/cancel-workflow-action@0.12.1 + with: + access_token: ${{ github.token }} + + - name: Checkout repository + uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Install pnpm dependencies + uses: ./.github/actions/install-pnpm-dependencies + + - name: Deploy Monitors on OZ Defender + working-directory: packages/monitors/defender/mainnet + env: + DEFENDER_API_KEY: ${{ secrets.DEFENDER_API_KEY }} + DEFENDER_API_SECRET: ${{ secrets.DEFENDER_API_SECRET }} + SERVERLESS_ACCESS_KEY: ${{ secrets.SERVERLESS_ACCESS_KEY }} + run: | + npx serverless deploy diff --git a/.github/workflows/protocol.yml b/.github/workflows/protocol.yml index a64fdd72c0..59bf052499 100644 --- a/.github/workflows/protocol.yml +++ b/.github/workflows/protocol.yml @@ -5,6 +5,10 @@ on: types: [opened, synchronize, reopened, ready_for_review] paths: - "packages/protocol/**" + - "!packages/protocol/audit/**" + - "!packages/protocol/docs/**" + - "!packages/protocol/simulation/**" + - "!packages/protocol/deployments/**" jobs: build-protocol: diff --git a/packages/monitors/.gitignore b/packages/monitors/.gitignore new file mode 100644 index 0000000000..86092cef1c --- /dev/null +++ b/packages/monitors/.gitignore @@ -0,0 +1 @@ +.defender diff --git a/packages/monitors/defender/mainnet/.defender/deployment-log.mystack.json b/packages/monitors/defender/mainnet/.defender/deployment-log.mystack.json new file mode 100644 index 0000000000..cf6a9a2b95 --- /dev/null +++ b/packages/monitors/defender/mainnet/.defender/deployment-log.mystack.json @@ -0,0 +1,9 @@ +{"stack":"mystack","timestamp":"2024-09-18T21:39:53.367Z","monitors":{"removed":[],"created":[],"updated":[{"skipABIValidation":true,"alertThreshold":null,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"Defender Monitor: TaikoL1: Pause/Unpause triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]}],"abi":"[{\"type\":\"error\",\"name\":\"AM_ADDRESS_ALREADY_SET\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"spender\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"approved\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ApprovalForAll\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"operationId\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"approvalBits\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"minGuardiansReached\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Authorized\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"authorized\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"BB_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_MINT_DISALLOWED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_CANNOT_RECEIVE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_BURN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INSUFFICIENT_GAS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CONTEXT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_GAS_LIMIT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_VALUE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_MESSAGE_NOT_SENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_OUT_OF_ETH_QUOTA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PROOF_TOO_LARGE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_RETRY_FAILED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_SIGNAL_NOT_RECEIVED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockProposed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"assignedProver\",\"indexed\":true},{\"type\":\"uint96\",\"name\":\"livenessBond\",\"indexed\":false},{\"type\":\"tuple\",\"name\":\"meta\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"depositsProcessed\",\"indexed\":false,\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockVerified\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"stateRoot\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondCredited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondDebited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenChanged\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btokenOld\",\"indexed\":false},{\"type\":\"address\",\"name\":\"btokenNew\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"CLOCK_MODE\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"CalldataTxList\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"txList\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ChainDataSynced\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"kind\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"data\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ConflictingProofs\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"guardian\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"currentProofHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"newProofHash\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"provingPaused\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"DOMAIN_SEPARATOR\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"fromDelegate\",\"indexed\":true},{\"type\":\"address\",\"name\":\"toDelegate\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateVotesChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegate\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"previousBalance\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"newBalance\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EIP712DomainChanged\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ETH_TRANSFER_FAILED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EtherPaymentFailed\",\"inputs\":[{\"type\":\"address\",\"name\":\"to\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"maxGas\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"FUNC_NOT_IMPLEMENTED\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"GAS_OVERHEAD\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"GAS_RESERVE\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN_SET\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_MIN_GUARDIANS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardianApproval\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false},{\"type\":\"bytes\",\"name\":\"proofData\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardiansUpdated\",\"inputs\":[{\"type\":\"uint32\",\"name\":\"version\",\"indexed\":false},{\"type\":\"address[]\",\"name\":\"guardians\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_EXPIRED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"error\",\"name\":\"INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"L1_ALREADY_CONTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_ALREADY_PROVED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_AVAILABLE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOCK_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_CANNOT_CONTEST\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_BLOCK_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_GENESIS_HASH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TIER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TRANSITION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_NOT_ASSIGNED_PROVER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_PROVING_PAUSED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_RECEIVE_DISABLED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TOO_MANY_BLOCKS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TRANSITION_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_PARENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_TRANSITION_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_ACCOUNT_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_INCLUSION_PROOF\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"LocalReportCheckToggled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"checkLocalEnclaveReport\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"MAX_GAS_PAYING_PROVER\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"MIN_MIGRATION_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageProcessed\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"stats\",\"indexed\":false,\"components\":[{\"type\":\"uint32\",\"name\":\"gasUsedInFeeCalc\"},{\"type\":\"uint32\",\"name\":\"proofSize\"},{\"type\":\"uint32\",\"name\":\"numCacheOps\"},{\"type\":\"bool\",\"name\":\"processedByRelayer\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageStatusChanged\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"uint8\",\"name\":\"status\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigratedTo\",\"inputs\":[{\"type\":\"address\",\"name\":\"fromToken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigrationStatusChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"inbound\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrEnclaveUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrEnclave\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrSignerUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrSigner\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingAutoPauseEnabled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"enabled\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingPaused\",\"inputs\":[{\"type\":\"bool\",\"name\":\"paused\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"QeIdentityConfigured\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"indexed\":false,\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}]},{\"type\":\"error\",\"name\":\"REENTRANT_CALL\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"RELAYER_MAX_PROOF_BYTES\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"error\",\"name\":\"RESOLVER_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_INVALID_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_UNEXPECTED_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_ZERO_ADDR\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"name\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumRemoved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"SGX_ALREADY_ATTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_ATTESTATION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_INSTANCE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_RA_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_EMPTY_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_HOPS_WITH_LOOP\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_LAST_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_MID_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_STATE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_SIGNAL_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_UNAUTHORIZED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"SignalSent\",\"inputs\":[{\"type\":\"address\",\"name\":\"app\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"slot\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"StateVariablesUpdated\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"slotB\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"error\",\"name\":\"TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"TT_INVALID_PARAM\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TcbInfoJsonConfigured\",\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"indexed\":false,\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"canonicalChainId\",\"indexed\":false},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferBatch\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256[]\",\"name\":\"ids\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"values\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferSingle\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionContested\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"contester\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"contestBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionProved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"validityBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"URI\",\"inputs\":[{\"type\":\"string\",\"name\":\"value\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_DATA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_ECDSA_SIGNATURE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEAUTHDATA_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEREPORT_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_MEMBER_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_UNSUPPORT_CERTIFICATION_TYPE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_BTOKEN_BLACKLISTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_CTOKEN_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INSUFFICIENT_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INTERFACE_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_AMOUNT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_CTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_NEW_BTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TO_ADDR\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_LAST_MIGRATION_TOO_CLOSE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_TOKEN_ARRAY_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDR_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_VALUE\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"allowance\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"approvals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"bytes32\",\"name\":\"proofHash\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"approvalBits\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\",\"name\":\"approved_\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"authorize\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_addr\"},{\"type\":\"bool\",\"name\":\"_authorize\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"id\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOfBatch\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"accounts\"},{\"type\":\"uint256[]\",\"name\":\"ids\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"batchTransfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"recipients\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"bondBalanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_user\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"btokenDenylist\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"denied\"}]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"canonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"canonicalToBridged\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btoken\"}]},{\"type\":\"function\",\"name\":\"changeBridgedToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctoken\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"address\",\"name\":\"_btokenNew\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btokenOld_\"}]},{\"type\":\"function\",\"name\":\"changeMigrationStatus\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_migratingAddress\"},{\"type\":\"bool\",\"name\":\"_migratingInbound\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"checkLocalEnclaveReport\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"checkpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint32\",\"name\":\"pos\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint32\",\"name\":\"fromBlock\"},{\"type\":\"uint224\",\"name\":\"votes\"}]}]},{\"type\":\"function\",\"name\":\"clock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint48\"}]},{\"type\":\"function\",\"name\":\"configureQeIdentityJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"configureTcbInfoJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"context\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"name\":\"ctx_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"}]}]},{\"type\":\"function\",\"name\":\"decimals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint8\"}]},{\"type\":\"function\",\"name\":\"decodeCert\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"der\"},{\"type\":\"bool\",\"name\":\"isPckCert\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"tuple\",\"name\":\"cert\",\"components\":[{\"type\":\"uint256\",\"name\":\"notBefore\"},{\"type\":\"uint256\",\"name\":\"notAfter\"},{\"type\":\"bytes\",\"name\":\"serialNumber\"},{\"type\":\"bytes\",\"name\":\"tbsCertificate\"},{\"type\":\"bytes\",\"name\":\"pubKey\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bool\",\"name\":\"isPck\"},{\"type\":\"tuple\",\"name\":\"pck\",\"components\":[{\"type\":\"string\",\"name\":\"commonName\"},{\"type\":\"string\",\"name\":\"issuerName\"},{\"type\":\"tuple\",\"name\":\"sgxExtension\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint256[]\",\"name\":\"sgxTcbCompSvnArr\"}]}]}]}]},{\"type\":\"function\",\"name\":\"decreaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"subtractedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"delegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegateBySig\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"},{\"type\":\"uint256\",\"name\":\"nonce\"},{\"type\":\"uint256\",\"name\":\"expiry\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegates\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"depositBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"eip712Domain\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes1\",\"name\":\"fields\"},{\"type\":\"string\",\"name\":\"name\"},{\"type\":\"string\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"verifyingContract\"},{\"type\":\"bytes32\",\"name\":\"salt\"},{\"type\":\"uint256[]\",\"name\":\"extensions\"}]},{\"type\":\"function\",\"name\":\"enableProvingAutoPause\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"enableTaikoTokenAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"failMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getApproved\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"blk_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]}]},{\"type\":\"function\",\"name\":\"getConfig\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"uint64\",\"name\":\"blockMaxProposals\"},{\"type\":\"uint64\",\"name\":\"blockRingBufferSize\"},{\"type\":\"uint64\",\"name\":\"maxBlocksToVerify\"},{\"type\":\"uint32\",\"name\":\"blockMaxGasLimit\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint8\",\"name\":\"stateRootSyncInternal\"},{\"type\":\"bool\",\"name\":\"checkEOAForCalldataDA\"}]}]},{\"type\":\"function\",\"name\":\"getLastSyncedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getLastVerifiedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getMessageMinGasLimit\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"dataLength\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"getMinTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"uint16\"}]},{\"type\":\"function\",\"name\":\"getPastTotalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getPastVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getSignalSlot\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"getStateVariables\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"getSyncedChainData\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"chainData_\"}]},{\"type\":\"function\",\"name\":\"getTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint16\",\"name\":\"_tierId\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"verifierName\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint24\",\"name\":\"cooldownWindow\"},{\"type\":\"uint16\",\"name\":\"provingWindow\"},{\"type\":\"uint8\",\"name\":\"maxBlocksToVerifyPerProof\"}]}]},{\"type\":\"function\",\"name\":\"getTierIds\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint16[]\",\"name\":\"tiers_\"}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"uint32\",\"name\":\"_tid\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_parentHash\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getVerifiedBlockProver\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"prover_\"}]},{\"type\":\"function\",\"name\":\"getVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"guardianIds\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"guardian\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"id\"}]},{\"type\":\"function\",\"name\":\"guardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"hashAssignment\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_assignment\",\"components\":[{\"type\":\"address\",\"name\":\"feeToken\"},{\"type\":\"uint64\",\"name\":\"expiry\"},{\"type\":\"uint64\",\"name\":\"maxBlockId\"},{\"type\":\"uint64\",\"name\":\"maxProposedIn\"},{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"tuple[]\",\"name\":\"tierFees\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint128\",\"name\":\"fee\"}]},{\"type\":\"bytes\",\"name\":\"signature\"}]},{\"type\":\"address\",\"name\":\"_taikoL1Address\"},{\"type\":\"address\",\"name\":\"_blockProposer\"},{\"type\":\"address\",\"name\":\"_assignedProver\"},{\"type\":\"bytes32\",\"name\":\"_blobHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"hashMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"impl\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"inNonReentrant\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"increaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"addedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"bytes32\",\"name\":\"_genesisBlockHash\"},{\"type\":\"bool\",\"name\":\"_toPause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"sigVerifyLibAddr\"},{\"type\":\"address\",\"name\":\"pemCertLibAddr\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"uint8\",\"name\":\"_decimals\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init2\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"isApprovedForAll\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"address\",\"name\":\"operator\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isAuthorized\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"addr\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"authorized\"}]},{\"type\":\"function\",\"name\":\"isChainDataSynced\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isDestChainEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"enabled_\"},{\"type\":\"address\",\"name\":\"destBridge_\"}]},{\"type\":\"function\",\"name\":\"isMessageFailed\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isSignalSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"lastMigrationStart\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"timestamp\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"latestProofHash\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"blockId\"}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"hash\"}]},{\"type\":\"function\",\"name\":\"messageStatus\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status\"}]},{\"type\":\"function\",\"name\":\"migratingAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"migratingInbound\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"minGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mintBatch\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256[]\",\"name\":\"_tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"_amounts\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"nextMessageId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nonces\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"numCheckpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"numGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"onBlockProposed\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_blk\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]},{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onERC1155BatchReceived\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256[]\"},{\"type\":\"uint256[]\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC1155Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC721Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onMessageInvocation\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onMessageRecalled\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"ownerOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseProving\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_pause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseTaikoProving\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pemCertLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"permit\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"uint256\",\"name\":\"deadline\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"processMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status_\"},{\"type\":\"uint8\",\"name\":\"reason_\"}]},{\"type\":\"function\",\"name\":\"proposeBlock\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_params\"},{\"type\":\"bytes\",\"name\":\"_txList\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"meta_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"deposits_\",\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"function\",\"name\":\"proveBlock\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes\",\"name\":\"_input\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"proveSignalReceived\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"numCacheOps_\"}]},{\"type\":\"function\",\"name\":\"provingAutoPauseEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"qeIdentity\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"}]},{\"type\":\"function\",\"name\":\"recallMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"removeRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"retryMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bool\",\"name\":\"_isLastAttempt\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeBatchTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256[]\",\"name\":\"ids\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"id\"},{\"type\":\"uint256\",\"name\":\"amount\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"selfDelegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_anyToken\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sendMessage\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash_\"},{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendSignal\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256[]\",\"name\":\"tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256\",\"name\":\"amount\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"serialNumIsRevoked\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"idx\"},{\"type\":\"bytes\",\"name\":\"serialNum\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"revoked\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setApprovalForAll\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"operator\"},{\"type\":\"bool\",\"name\":\"approved\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setGuardians\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_newGuardians\"},{\"type\":\"uint8\",\"name\":\"_minGuardians\"},{\"type\":\"bool\",\"name\":\"_clearData\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrEnclave\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrEnclave\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrSigner\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrSigner\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sigVerifyLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"signalForChainData\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"signalForFailedMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"source\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"splitCertificateChain\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"pemChain\"},{\"type\":\"uint256\",\"name\":\"size\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"bytes[]\",\"name\":\"certs\"}]},{\"type\":\"function\",\"name\":\"srcChainId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"srcToken\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"state\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"__reserve1\"},{\"type\":\"tuple\",\"name\":\"slotA\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"name\":\"slotB\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"supportsInterface\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes4\",\"name\":\"_interfaceId\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"syncChainData\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"tcbInfo\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"}],\"outputs\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"}]},{\"type\":\"function\",\"name\":\"toggleLocalReportCheck\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"tokenURI\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"topBlockId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"kind\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId\"}]},{\"type\":\"function\",\"name\":\"totalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"transfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"trustedUserMrEnclave\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"enclave\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"trustedUserMrSigner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"signer\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"uri\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"verifyAttestation\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"}]},{\"type\":\"function\",\"name\":\"verifyBlocks\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_maxBlocksToVerify\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyES256Signature\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"tbs\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bytes\",\"name\":\"publicKey\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"sigValid\"}]},{\"type\":\"function\",\"name\":\"verifyParsedQuote\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"v3quote\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"bool\"},{\"type\":\"bytes\"}]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifySignalReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"version\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"withdrawBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"withdrawTaikoToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"constructor\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"es256Verifier\"}]}]","addresses":["0x02772b7B3a5Bea0141C993Dbb8D0733C19F46169","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x11A9ebA17EbF92b40fcf9a640Ebbc47Db6fBeab0","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0x39E4C1214e733639d059979079A151911e42791d","0x47bB416ee947fE4a4b655011aF7d6E3A1B80E6e9","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0x579f40D0BE111b823962043702cabe6Aaa290780","0x67281b15aee4d6b805bc755e439abd524dd8da8d","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0xa25e645ff9897b0282e5f17d36de5bca4ec21d6e","0xaf145913EA4a56BE22E120ED9C24589659881702","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0xc4096E9ff1526Bd1840B65e9f45695135aC12De7","0xcc5d488073FA918cBbd73B9A523F3858C4de7372","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC"]}],"createdAt":"2024-08-27T09:44:01.744Z","subscriberId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","name":"TaikoL1: Pause/Unpause","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","blockWatcherId":"mainnet-6","paused":false,"stackResourceId":"mystack.taiko-l-1-pause-unpause","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"LOW","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet SGX Prover triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceAdded(uint256,address,address,uint256)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceDeleted(uint256,address)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[{"functionSignature":"verifyProof((bytes32,bytes32,address,uint64,bool,bool,address),(bytes32,bytes32,bytes32,bytes32),(uint16,bytes))","expression":null}],"eventConditions":[]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]}]","addresses":["0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81"]}],"createdAt":"2024-05-02T14:09:42.804Z","subscriberId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","name":"Taiko Mainnet SGX Prover","network":"mainnet","riskCategory":"TECHNICAL","monitorId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-sgx-prover","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Address Managers triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AddressSet(uint64,bytes32,address,address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x579f40D0BE111b823962043702cabe6Aaa290780"]}],"createdAt":"2024-05-02T14:00:18.874Z","subscriberId":"3919cb83-487f-4432-88fa-33bbe4361fce","name":"Taiko Mainnet Address Managers","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"3919cb83-487f-4432-88fa-33bbe4361fce","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-address-managers","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Essential Contracts triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AdminChanged(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"BeaconUpgraded(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Initialized(uint8)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferStarted(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferred(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Upgraded(address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0xaf145913EA4a56BE22E120ED9C24589659881702","0x579f40D0BE111b823962043702cabe6Aaa290780","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3"]}],"createdAt":"2024-05-02T13:49:54.192Z","subscriberId":"67a53521-3d4a-4de4-92ab-ede82cc45644","name":"Taiko Mainnet Essential Contracts","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"67a53521-3d4a-4de4-92ab-ede82cc45644","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-essential-contracts","type":"BLOCK"}]},"actions":{"removed":[],"created":[],"updated":[{"autotaskId":"9fc30210-b551-49df-9836-b50fb6d2aaed","actionId":"9fc30210-b551-49df-9836-b50fb6d2aaed","name":"SGXVerifier: VerifyProof failure Alert","paused":false,"trigger":{"cron":null,"frequencyMinutes":5,"type":"schedule"},"codeDigest":"pRCwGRE9kcevXfVaEyCq9VP+R/9tEZp4EwZEM8/9B4Y=","stackResourceId":"mystack.sgx-verifier-verify-proof-failure-alert","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVAKQDUd+QsAAPkLAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCB2ZXJpZnlQcm9vZlNpZ25hdHVyZSA9ICJ2ZXJpZnlQcm9vZihhZGRyZXNzLGJ5dGVzMzIsYnl0ZXMzMikiOwpjb25zdCB2ZXJpZnlQcm9vZlNlbGVjdG9yID0gZXRoZXJzLnV0aWxzCiAgLmtlY2NhazI1NihldGhlcnMudXRpbHMudG9VdGY4Qnl0ZXModmVyaWZ5UHJvb2ZTaWduYXR1cmUpKQogIC5zdWJzdHJpbmcoMCwgMTApOwoKZnVuY3Rpb24gYWxlcnRPcmcobm90aWZpY2F0aW9uQ2xpZW50LCBtZXNzYWdlKSB7CiAgbm90aWZpY2F0aW9uQ2xpZW50LnNlbmQoewogICAgY2hhbm5lbEFsaWFzOiAiZGlzY29yZF9ibG9ja3MiLAogICAgc3ViamVjdDogIuKaoO+4jyBTR1hWZXJpZmllcjogdmVyaWZ5UHJvb2YgRmFpbHVyZSBBbGVydCIsCiAgICBtZXNzYWdlLAogIH0pOwp9CgpmdW5jdGlvbiBjcmVhdGVQcm92aWRlcihhcGlLZXksIGFwaVNlY3JldCwgcmVsYXllckFwaUtleSwgcmVsYXllckFwaVNlY3JldCkgewogIGNvbnN0IGNsaWVudCA9IG5ldyBEZWZlbmRlcih7CiAgICBhcGlLZXksCiAgICBhcGlTZWNyZXQsCiAgICByZWxheWVyQXBpS2V5LAogICAgcmVsYXllckFwaVNlY3JldCwKICB9KTsKICByZXR1cm4gY2xpZW50LnJlbGF5U2lnbmVyLmdldFByb3ZpZGVyKCk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGdldExhdGVzdEJsb2NrTnVtYmVyKHByb3ZpZGVyKSB7CiAgY29uc3QgY3VycmVudEJsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2soImxhdGVzdCIpOwogIHJldHVybiBjdXJyZW50QmxvY2subnVtYmVyOwp9Cgphc3luYyBmdW5jdGlvbiBjYWxjdWxhdGVCbG9ja1RpbWUocHJvdmlkZXIpIHsKICBjb25zdCBsYXRlc3RCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKCJsYXRlc3QiKTsKICBjb25zdCBwcmV2aW91c0Jsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2sobGF0ZXN0QmxvY2subnVtYmVyIC0gMTAwKTsKCiAgY29uc3QgdGltZURpZmYgPSBsYXRlc3RCbG9jay50aW1lc3RhbXAgLSBwcmV2aW91c0Jsb2NrLnRpbWVzdGFtcDsKICBjb25zdCBibG9ja0RpZmYgPSBsYXRlc3RCbG9jay5udW1iZXIgLSBwcmV2aW91c0Jsb2NrLm51bWJlcjsKCiAgY29uc3QgYmxvY2tUaW1lID0gdGltZURpZmYgLyBibG9ja0RpZmY7CiAgcmV0dXJuIGJsb2NrVGltZTsKfQoKYXN5bmMgZnVuY3Rpb24gY2FsY3VsYXRlQmxvY2tSYW5nZShwcm92aWRlciwgaG91cnMgPSAyNCkgewogIGNvbnN0IGN1cnJlbnRCbG9ja051bWJlciA9IGF3YWl0IGdldExhdGVzdEJsb2NrTnVtYmVyKHByb3ZpZGVyKTsKICBjb25zdCBibG9ja1RpbWVJblNlY29uZHMgPSBhd2FpdCBjYWxjdWxhdGVCbG9ja1RpbWUocHJvdmlkZXIpOwogIGNvbnN0IGJsb2Nrc0luVGltZUZyYW1lID0gTWF0aC5mbG9vcigoaG91cnMgKiA2MCAqIDYwKSAvIGJsb2NrVGltZUluU2Vjb25kcyk7CgogIGNvbnN0IGZyb21CbG9jayA9IGN1cnJlbnRCbG9ja051bWJlciAtIGJsb2Nrc0luVGltZUZyYW1lOwogIGNvbnN0IHRvQmxvY2sgPSBjdXJyZW50QmxvY2tOdW1iZXI7CgogIGNvbnNvbGUubG9nKGBDYWxjdWxhdGVkIGJsb2NrIHJhbmdlOiBmcm9tICR7ZnJvbUJsb2NrfSB0byAke3RvQmxvY2t9YCk7CgogIHJldHVybiB7IGZyb21CbG9jaywgdG9CbG9jayB9Owp9Cgphc3luYyBmdW5jdGlvbiBtb25pdG9yVHJhbnNhY3Rpb25zKAogIHByb3ZpZGVyLAogIGNvbnRyYWN0QWRkcmVzcywKICBub3RpZmljYXRpb25DbGllbnQsCiAgaG91cnMsCikgewogIGNvbnN0IHsgZnJvbUJsb2NrLCB0b0Jsb2NrIH0gPSBhd2FpdCBjYWxjdWxhdGVCbG9ja1JhbmdlKHByb3ZpZGVyLCBob3Vycyk7CgogIGNvbnN0IGxvZ3MgPSBhd2FpdCBwcm92aWRlci5nZXRMb2dzKHsKICAgIGZyb21CbG9jaywKICAgIHRvQmxvY2ssCiAgICBhZGRyZXNzOiBjb250cmFjdEFkZHJlc3MsCiAgfSk7CgogIGZvciAoY29uc3QgbG9nIG9mIGxvZ3MpIHsKICAgIGNvbnN0IHR4ID0gYXdhaXQgcHJvdmlkZXIuZ2V0VHJhbnNhY3Rpb24obG9nLnRyYW5zYWN0aW9uSGFzaCk7CgogICAgaWYgKHR4LmRhdGEuc3RhcnRzV2l0aCh2ZXJpZnlQcm9vZlNlbGVjdG9yKSkgewogICAgICBjb25zdCB0eFJlY2VpcHQgPSBhd2FpdCBwcm92aWRlci5nZXRUcmFuc2FjdGlvblJlY2VpcHQoCiAgICAgICAgbG9nLnRyYW5zYWN0aW9uSGFzaCwKICAgICAgKTsKCiAgICAgIGlmICh0eFJlY2VpcHQgJiYgdHhSZWNlaXB0LnN0YXR1cyA9PT0gMCkgewogICAgICAgIGNvbnN0IG1lc3NhZ2UgPSBgCiAgICAgICAgICBBIGZhaWxlZCB2ZXJpZnlQcm9vZiB0cmFuc2FjdGlvbiB3YXMgZGV0ZWN0ZWQuCiAgICAgICAgICAtIENvbnRyYWN0IEFkZHJlc3M6ICR7bG9nLmFkZHJlc3N9CiAgICAgICAgICAtIFRyYW5zYWN0aW9uIEhhc2g6ICR7bG9nLnRyYW5zYWN0aW9uSGFzaH0KICAgICAgICAgIC0gQmxvY2sgTnVtYmVyOiAke3R4UmVjZWlwdC5ibG9ja051bWJlcn0KICAgICAgICBgOwogICAgICAgIGFsZXJ0T3JnKG5vdGlmaWNhdGlvbkNsaWVudCwgbWVzc2FnZSk7CiAgICAgIH0KICAgIH0KICB9Cn0KCmV4cG9ydHMuaGFuZGxlciA9IGFzeW5jIGZ1bmN0aW9uIChldmVudCwgY29udGV4dCkgewogIGNvbnN0IHsgbm90aWZpY2F0aW9uQ2xpZW50IH0gPSBjb250ZXh0OwogIGNvbnN0IHsgYXBpS2V5LCBhcGlTZWNyZXQsIHRhaWtvTDFBcGlLZXksIHRhaWtvTDFBcGlTZWNyZXQgfSA9IGV2ZW50LnNlY3JldHM7CgogIGNvbnN0IGNvbnRyYWN0QWRkcmVzcyA9ICIweGIwZjMxODZGQzE5NjNmNzc0ZjUyZmY0NTVEQzg2YUVkRDBiMzFGODEiOwoKICBjb25zdCBwcm92aWRlciA9IGNyZWF0ZVByb3ZpZGVyKAogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgdGFpa29MMUFwaUtleSwKICAgIHRhaWtvTDFBcGlTZWNyZXQsCiAgKTsKCiAgYXdhaXQgbW9uaXRvclRyYW5zYWN0aW9ucyhwcm92aWRlciwgY29udHJhY3RBZGRyZXNzLCBub3RpZmljYXRpb25DbGllbnQsIDI0KTsKCiAgcmV0dXJuIHRydWU7Cn07ClBLAQIUAAoAAAAAAAAAQVAKQDUd+QsAAPkLAAAIAAAAAAAAAAAAAAAAAAAAAABpbmRleC5qc1BLBQYAAAAAAQABADYAAAAfDAAAAAA="},{"autotaskId":"f3e4b61d-acb1-4735-9600-4f78dc407fac","actionId":"f3e4b61d-acb1-4735-9600-4f78dc407fac","name":"TaikoL1: CalldataTxList Count","paused":false,"trigger":{"cron":null,"frequencyMinutes":1440,"type":"schedule"},"codeDigest":"YFe2ZhQm4yRXmMxU51MdCbiCEMWnSNqZJyNxQE6d6BY=","stackResourceId":"mystack.taiko-l-1-calldata-tx-list-count","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVC8yOSKFQ0AABUNAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAiYmxvY2tJZCIsCiAgICAgICAgdHlwZTogInVpbnQyNTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMiLAogICAgICAgIG5hbWU6ICJ0eExpc3QiLAogICAgICAgIHR5cGU6ICJieXRlcyIsCiAgICAgIH0sCiAgICBdLAogICAgbmFtZTogIkNhbGxkYXRhVHhMaXN0IiwKICAgIHR5cGU6ICJldmVudCIsCiAgfSwKXTsKCmZ1bmN0aW9uIGFsZXJ0T3JnKG5vdGlmaWNhdGlvbkNsaWVudCwgbWVzc2FnZSkgewogIG5vdGlmaWNhdGlvbkNsaWVudC5zZW5kKHsKICAgIGNoYW5uZWxBbGlhczogImRpc2NvcmRfYmxvY2tzIiwKICAgIHN1YmplY3Q6ICLihLnvuI8gVGFpa29MMTogQ2FsbGRhdGFUeExpc3QgQ291bnQiLAogICAgbWVzc2FnZSwKICB9KTsKfQoKYXN5bmMgZnVuY3Rpb24gZ2V0TGF0ZXN0QmxvY2tOdW1iZXIocHJvdmlkZXIpIHsKICBjb25zdCBjdXJyZW50QmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jaygibGF0ZXN0Iik7CiAgcmV0dXJuIGN1cnJlbnRCbG9jay5udW1iZXI7Cn0KCmFzeW5jIGZ1bmN0aW9uIGNhbGN1bGF0ZUJsb2NrVGltZShwcm92aWRlcikgewogIGNvbnN0IGxhdGVzdEJsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2soImxhdGVzdCIpOwogIGNvbnN0IHByZXZpb3VzQmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jayhsYXRlc3RCbG9jay5udW1iZXIgLSAxMDApOwoKICBjb25zdCB0aW1lRGlmZiA9IGxhdGVzdEJsb2NrLnRpbWVzdGFtcCAtIHByZXZpb3VzQmxvY2sudGltZXN0YW1wOwogIGNvbnN0IGJsb2NrRGlmZiA9IGxhdGVzdEJsb2NrLm51bWJlciAtIHByZXZpb3VzQmxvY2subnVtYmVyOwoKICBjb25zdCBibG9ja1RpbWUgPSB0aW1lRGlmZiAvIGJsb2NrRGlmZjsKICByZXR1cm4gYmxvY2tUaW1lOwp9Cgphc3luYyBmdW5jdGlvbiBjYWxjdWxhdGVCbG9ja1JhbmdlKHByb3ZpZGVyKSB7CiAgY29uc3QgY3VycmVudEJsb2NrTnVtYmVyID0gYXdhaXQgZ2V0TGF0ZXN0QmxvY2tOdW1iZXIocHJvdmlkZXIpOwogIGNvbnN0IGJsb2NrVGltZUluU2Vjb25kcyA9IGF3YWl0IGNhbGN1bGF0ZUJsb2NrVGltZShwcm92aWRlcik7CiAgY29uc3QgYmxvY2tzSW4yNEhvdXJzID0gTWF0aC5mbG9vcigoMjQgKiA2MCAqIDYwKSAvIGJsb2NrVGltZUluU2Vjb25kcyk7IC8vIDI0IGhvdXJzIGluIHNlY29uZHMKCiAgY29uc3QgZnJvbUJsb2NrID0gY3VycmVudEJsb2NrTnVtYmVyIC0gYmxvY2tzSW4yNEhvdXJzOwogIGNvbnN0IHRvQmxvY2sgPSBjdXJyZW50QmxvY2tOdW1iZXI7CgogIGNvbnNvbGUubG9nKGBDYWxjdWxhdGVkIGJsb2NrIHJhbmdlOiBmcm9tICR7ZnJvbUJsb2NrfSB0byAke3RvQmxvY2t9YCk7CgogIHJldHVybiB7IGZyb21CbG9jaywgdG9CbG9jayB9Owp9Cgphc3luYyBmdW5jdGlvbiBmZXRjaExvZ3NGcm9tTDEoCiAgZXZlbnROYW1lcywKICBmcm9tQmxvY2ssCiAgdG9CbG9jaywKICBhZGRyZXNzLAogIGFiaSwKICBwcm92aWRlciwKKSB7CiAgY29uc3QgaWZhY2UgPSBuZXcgZXRoZXJzLnV0aWxzLkludGVyZmFjZShhYmkpOwogIGNvbnN0IGV2ZW50VG9waWNzID0gZXZlbnROYW1lcy5tYXAoKGV2ZW50TmFtZSkgPT4KICAgIGlmYWNlLmdldEV2ZW50VG9waWMoZXZlbnROYW1lKSwKICApOwoKICBjb25zb2xlLmxvZyhgZXZlbnRUb3BpY3M6ICR7ZXZlbnRUb3BpY3N9YCk7CgogIHRyeSB7CiAgICBjb25zdCBsb2dzID0gYXdhaXQgcHJvdmlkZXIuZ2V0TG9ncyh7CiAgICAgIGFkZHJlc3MsCiAgICAgIGZyb21CbG9jaywKICAgICAgdG9CbG9jaywKICAgICAgdG9waWNzOiBbZXZlbnRUb3BpY3NdLAogICAgfSk7CiAgICBjb25zb2xlLmxvZyhgRmV0Y2hlZCBsb2dzOiAke2xvZ3MubGVuZ3RofWApOwogICAgcmV0dXJuIGxvZ3MubWFwKChsb2cpID0+IHsKICAgICAgY29uc3QgcGFyc2VkTG9nID0gaWZhY2UucGFyc2VMb2cobG9nKTsKICAgICAgY29uc29sZS5sb2coYFBhcnNlZCBsb2c6ICR7SlNPTi5zdHJpbmdpZnkocGFyc2VkTG9nKX1gKTsKICAgICAgcmV0dXJuIHBhcnNlZExvZzsKICAgIH0pOwogIH0gY2F0Y2ggKGVycm9yKSB7CiAgICBjb25zb2xlLmVycm9yKCJFcnJvciBmZXRjaGluZyBMMSBsb2dzOiIsIGVycm9yKTsKICAgIHJldHVybiBbXTsKICB9Cn0KCmZ1bmN0aW9uIGNyZWF0ZVByb3ZpZGVyKGFwaUtleSwgYXBpU2VjcmV0LCByZWxheWVyQXBpS2V5LCByZWxheWVyQXBpU2VjcmV0KSB7CiAgY29uc3QgY2xpZW50ID0gbmV3IERlZmVuZGVyKHsKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHJlbGF5ZXJBcGlLZXksCiAgICByZWxheWVyQXBpU2VjcmV0LAogIH0pOwoKICByZXR1cm4gY2xpZW50LnJlbGF5U2lnbmVyLmdldFByb3ZpZGVyKCk7Cn0KCmV4cG9ydHMuaGFuZGxlciA9IGFzeW5jIGZ1bmN0aW9uIChldmVudCwgY29udGV4dCkgewogIGNvbnN0IHsgbm90aWZpY2F0aW9uQ2xpZW50IH0gPSBjb250ZXh0OwogIGNvbnN0IHsgYXBpS2V5LCBhcGlTZWNyZXQsIHRhaWtvTDFBcGlLZXksIHRhaWtvTDFBcGlTZWNyZXQgfSA9IGV2ZW50LnNlY3JldHM7CgogIGNvbnN0IHRhaWtvTDFQcm92aWRlciA9IGNyZWF0ZVByb3ZpZGVyKAogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgdGFpa29MMUFwaUtleSwKICAgIHRhaWtvTDFBcGlTZWNyZXQsCiAgKTsKCiAgY29uc3QgeyBmcm9tQmxvY2ssIHRvQmxvY2sgfSA9IGF3YWl0IGNhbGN1bGF0ZUJsb2NrUmFuZ2UodGFpa29MMVByb3ZpZGVyKTsKCiAgY29uc3QgbG9ncyA9IGF3YWl0IGZldGNoTG9nc0Zyb21MMSgKICAgIFsiQ2FsbGRhdGFUeExpc3QiXSwKICAgIGZyb21CbG9jaywKICAgIHRvQmxvY2ssCiAgICAiMHgwNmE5QWIyN2M3ZTIyNTVkZjE4MTVFNkNDMDE2OGQ3NzU1RmViMTlhIiwKICAgIEFCSSwKICAgIHRhaWtvTDFQcm92aWRlciwKICApOwoKICBpZiAobG9ncy5sZW5ndGggPiAwKSB7CiAgICBhbGVydE9yZygKICAgICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgICBgRGV0ZWN0ZWQgJHtsb2dzLmxlbmd0aH0gQ2FsbGRhdGFUeExpc3QgZXZlbnRzIGluIHRoZSBsYXN0IDI0IGhvdXJzIG9uIFRhaWtvTDEhYCwKICAgICk7CiAgfQoKICByZXR1cm4gdHJ1ZTsKfTsKUEsBAhQACgAAAAAAAABBULzI5IoVDQAAFQ0AAAgAAAAAAAAAAAAAAAAAAAAAAGluZGV4LmpzUEsFBgAAAAABAAEANgAAADsNAAAAAA=="},{"autotaskId":"4dba76e1-18d4-4757-b8d3-4d3a8e866625","actionId":"4dba76e1-18d4-4757-b8d3-4d3a8e866625","name":"GuardianProver: ProvingAutoPauseEnabled Alert","paused":false,"trigger":{"cron":null,"frequencyMinutes":4,"type":"schedule"},"codeDigest":"lTr+Hs0WWoe7JBOzEADRpJuTIzc2cvRze6fHvaX5zxE=","stackResourceId":"mystack.guardian-prover-proving-auto-pause-enabled-alert","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVCluHKrdgwAAHYMAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJib29sIiwKICAgICAgICBuYW1lOiAiZW5hYmxlZCIsCiAgICAgICAgdHlwZTogImJvb2wiLAogICAgICB9LAogICAgXSwKICAgIG5hbWU6ICJQcm92aW5nQXV0b1BhdXNlRW5hYmxlZCIsCiAgICB0eXBlOiAiZXZlbnQiLAogIH0sCl07CgpmdW5jdGlvbiBhbGVydE9yZyhub3RpZmljYXRpb25DbGllbnQsIG1lc3NhZ2UpIHsKICBub3RpZmljYXRpb25DbGllbnQuc2VuZCh7CiAgICBjaGFubmVsQWxpYXM6ICJkaXNjb3JkX2NvbmZpZ3MiLAogICAgc3ViamVjdDogIuKaoO+4jyBHdWFyZGlhblByb3ZlcjogUHJvdmluZ0F1dG9QYXVzZUVuYWJsZWQgQWxlcnQiLAogICAgbWVzc2FnZSwKICB9KTsKICBub3RpZmljYXRpb25DbGllbnQuc2VuZCh7CiAgICBjaGFubmVsQWxpYXM6ICJ0Z190YWlrb19ndWFyZGlhbnMiLAogICAgc3ViamVjdDogIuKaoO+4jyBHdWFyZGlhblByb3ZlcjogUHJvdmluZ0F1dG9QYXVzZUVuYWJsZWQgQWxlcnQiLAogICAgbWVzc2FnZSwKICB9KTsKfQoKYXN5bmMgZnVuY3Rpb24gZ2V0TGF0ZXN0QmxvY2tOdW1iZXIocHJvdmlkZXIpIHsKICBjb25zdCBjdXJyZW50QmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jaygibGF0ZXN0Iik7CiAgcmV0dXJuIGN1cnJlbnRCbG9jay5udW1iZXI7Cn0KCmFzeW5jIGZ1bmN0aW9uIGZldGNoTG9nc0Zyb21MMSgKICBldmVudE5hbWUsCiAgZnJvbUJsb2NrLAogIHRvQmxvY2ssCiAgYWRkcmVzcywKICBhYmksCiAgcHJvdmlkZXIsCikgewogIGNvbnN0IGlmYWNlID0gbmV3IGV0aGVycy51dGlscy5JbnRlcmZhY2UoYWJpKTsKICBjb25zdCBldmVudFRvcGljID0gaWZhY2UuZ2V0RXZlbnRUb3BpYyhldmVudE5hbWUpOwoKICB0cnkgewogICAgY29uc3QgbG9ncyA9IGF3YWl0IHByb3ZpZGVyLmdldExvZ3MoewogICAgICBhZGRyZXNzLAogICAgICBmcm9tQmxvY2ssCiAgICAgIHRvQmxvY2ssCiAgICAgIHRvcGljczogW2V2ZW50VG9waWNdLAogICAgfSk7CgogICAgcmV0dXJuIGxvZ3MubWFwKChsb2cpID0+CiAgICAgIGlmYWNlLmRlY29kZUV2ZW50TG9nKGV2ZW50TmFtZSwgbG9nLmRhdGEsIGxvZy50b3BpY3MpLAogICAgKTsKICB9IGNhdGNoIChlcnJvcikgewogICAgY29uc29sZS5lcnJvcihgRXJyb3IgZmV0Y2hpbmcgbG9ncyBmb3IgJHtldmVudE5hbWV9OmAsIGVycm9yKTsKICAgIHJldHVybiBbXTsKICB9Cn0KCmZ1bmN0aW9uIGNyZWF0ZVByb3ZpZGVyKGFwaUtleSwgYXBpU2VjcmV0LCByZWxheWVyQXBpS2V5LCByZWxheWVyQXBpU2VjcmV0KSB7CiAgY29uc3QgY2xpZW50ID0gbmV3IERlZmVuZGVyKHsKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHJlbGF5ZXJBcGlLZXksCiAgICByZWxheWVyQXBpU2VjcmV0LAogIH0pOwoKICByZXR1cm4gY2xpZW50LnJlbGF5U2lnbmVyLmdldFByb3ZpZGVyKCk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGNhbGN1bGF0ZUJsb2NrVGltZShwcm92aWRlcikgewogIGNvbnN0IGxhdGVzdEJsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2soImxhdGVzdCIpOwogIGNvbnN0IHByZXZpb3VzQmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jayhsYXRlc3RCbG9jay5udW1iZXIgLSAxMDApOwoKICBjb25zdCB0aW1lRGlmZiA9IGxhdGVzdEJsb2NrLnRpbWVzdGFtcCAtIHByZXZpb3VzQmxvY2sudGltZXN0YW1wOwogIGNvbnN0IGJsb2NrRGlmZiA9IGxhdGVzdEJsb2NrLm51bWJlciAtIHByZXZpb3VzQmxvY2subnVtYmVyOwoKICBjb25zdCBibG9ja1RpbWUgPSB0aW1lRGlmZiAvIGJsb2NrRGlmZjsKICByZXR1cm4gYmxvY2tUaW1lOwp9CgpleHBvcnRzLmhhbmRsZXIgPSBhc3luYyBmdW5jdGlvbiAoZXZlbnQsIGNvbnRleHQpIHsKICBjb25zdCB7IG5vdGlmaWNhdGlvbkNsaWVudCB9ID0gY29udGV4dDsKICBjb25zdCB7IGFwaUtleSwgYXBpU2VjcmV0LCB0YWlrb0wxQXBpS2V5LCB0YWlrb0wxQXBpU2VjcmV0IH0gPSBldmVudC5zZWNyZXRzOwoKICBjb25zdCB0YWlrb0wxUHJvdmlkZXIgPSBjcmVhdGVQcm92aWRlcigKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHRhaWtvTDFBcGlLZXksCiAgICB0YWlrb0wxQXBpU2VjcmV0LAogICk7CgogIGNvbnN0IGN1cnJlbnRCbG9ja051bWJlciA9IGF3YWl0IGdldExhdGVzdEJsb2NrTnVtYmVyKHRhaWtvTDFQcm92aWRlcik7CiAgY29uc3QgYmxvY2tUaW1lSW5TZWNvbmRzID0gYXdhaXQgY2FsY3VsYXRlQmxvY2tUaW1lKHRhaWtvTDFQcm92aWRlcik7CiAgY29uc3QgYmxvY2tzSW5GaXZlTWludXRlcyA9IE1hdGguZmxvb3IoKDUgKiA2MCkgLyBibG9ja1RpbWVJblNlY29uZHMpOwoKICBjb25zdCBmcm9tQmxvY2sgPSBjdXJyZW50QmxvY2tOdW1iZXIgLSBibG9ja3NJbkZpdmVNaW51dGVzOwogIGNvbnN0IHRvQmxvY2sgPSBjdXJyZW50QmxvY2tOdW1iZXI7CgogIGNvbnN0IGxvZ3MgPSBhd2FpdCBmZXRjaExvZ3NGcm9tTDEoCiAgICAiUHJvdmluZ0F1dG9QYXVzZUVuYWJsZWQiLAogICAgZnJvbUJsb2NrLAogICAgdG9CbG9jaywKICAgICIweEUzRDc3NzE0M0VhMjVBNkUwMzFkMWU5MjFGMzk2NzUwODg1ZjQzYUMiLAogICAgQUJJLAogICAgdGFpa29MMVByb3ZpZGVyLAogICk7CgogIGNvbnNvbGUubG9nKGBMb2dzIGZvdW5kOiAke2xvZ3MubGVuZ3RofWApOwoKICBpZiAobG9ncy5sZW5ndGggPiAwKSB7CiAgICBsb2dzLmZvckVhY2goKGxvZykgPT4gewogICAgICBjb25zdCBlbmFibGVkID0gbG9nLmVuYWJsZWQ7CiAgICAgIGNvbnN0IHN0YXR1cyA9IGVuYWJsZWQgPyAiRU5BQkxFRCIgOiAiRElTQUJMRUQiOwogICAgICBjb25zdCBtZXNzYWdlID0gYFByb3ZpbmcgQXV0by1QYXVzZSBoYXMgYmVlbiAke3N0YXR1c30uXG5cbkRldGFpbHM6XG4tIEVuYWJsZWQ6ICR7ZW5hYmxlZH1cbi0gQmxvY2sgTnVtYmVyOiAke2xvZy5ibG9ja051bWJlcn1gOwogICAgICBhbGVydE9yZyhub3RpZmljYXRpb25DbGllbnQsIG1lc3NhZ2UpOwogICAgfSk7CiAgfQoKICByZXR1cm4gdHJ1ZTsKfTsKUEsBAhQACgAAAAAAAABBUKW4cqt2DAAAdgwAAAgAAAAAAAAAAAAAAAAAAAAAAGluZGV4LmpzUEsFBgAAAAABAAEANgAAAJwMAAAAAA=="},{"autotaskId":"a91ec566-0083-40bc-9caf-9f006bb4ec12","actionId":"a91ec566-0083-40bc-9caf-9f006bb4ec12","name":"GuardianProver: ConflictingProofs Alert","paused":false,"trigger":{"cron":null,"frequencyMinutes":4,"type":"schedule"},"codeDigest":"L3HJRJGQ2LLkEO+6zCIg5yh4GpFNvfNl/ZR4bft2EDU=","stackResourceId":"mystack.guardian-prover-conflicting-proofs-alert","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVDcZineqA0AAKgNAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAiYmxvY2tJZCIsCiAgICAgICAgdHlwZTogInVpbnQyNTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJhZGRyZXNzIiwKICAgICAgICBuYW1lOiAiZ3VhcmRpYW4iLAogICAgICAgIHR5cGU6ICJhZGRyZXNzIiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgIG5hbWU6ICJjdXJyZW50UHJvb2ZIYXNoIiwKICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICBuYW1lOiAibmV3UHJvb2ZIYXNoIiwKICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJib29sIiwKICAgICAgICBuYW1lOiAicHJvdmluZ1BhdXNlZCIsCiAgICAgICAgdHlwZTogImJvb2wiLAogICAgICB9LAogICAgXSwKICAgIG5hbWU6ICJDb25mbGljdGluZ1Byb29mcyIsCiAgICB0eXBlOiAiZXZlbnQiLAogIH0sCl07CgpmdW5jdGlvbiBhbGVydE9yZyhub3RpZmljYXRpb25DbGllbnQsIG1lc3NhZ2UpIHsKICBub3RpZmljYXRpb25DbGllbnQuc2VuZCh7CiAgICBjaGFubmVsQWxpYXM6ICJkaXNjb3JkX2NvbmZpZ3MiLAogICAgc3ViamVjdDogIvCfmqggR3VhcmRpYW5Qcm92ZXI6IENvbmZsaWN0aW5nUHJvb2ZzIEFsZXJ0IiwKICAgIG1lc3NhZ2UsCiAgfSk7CgogIG5vdGlmaWNhdGlvbkNsaWVudC5zZW5kKHsKICAgIGNoYW5uZWxBbGlhczogInRnX3RhaWtvX2d1YXJkaWFucyIsCiAgICBzdWJqZWN0OiAi8J+aqCBHdWFyZGlhblByb3ZlcjogQ29uZmxpY3RpbmdQcm9vZnMgQWxlcnQiLAogICAgbWVzc2FnZSwKICB9KTsKfQoKYXN5bmMgZnVuY3Rpb24gZ2V0TGF0ZXN0QmxvY2tOdW1iZXIocHJvdmlkZXIpIHsKICBjb25zdCBjdXJyZW50QmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jaygibGF0ZXN0Iik7CiAgcmV0dXJuIGN1cnJlbnRCbG9jay5udW1iZXI7Cn0KCmFzeW5jIGZ1bmN0aW9uIGZldGNoTG9nc0Zyb21MMSgKICBldmVudE5hbWUsCiAgZnJvbUJsb2NrLAogIHRvQmxvY2ssCiAgYWRkcmVzcywKICBhYmksCiAgcHJvdmlkZXIsCikgewogIGNvbnN0IGlmYWNlID0gbmV3IGV0aGVycy51dGlscy5JbnRlcmZhY2UoYWJpKTsKICBjb25zdCBldmVudFRvcGljID0gaWZhY2UuZ2V0RXZlbnRUb3BpYyhldmVudE5hbWUpOwoKICB0cnkgewogICAgY29uc3QgbG9ncyA9IGF3YWl0IHByb3ZpZGVyLmdldExvZ3MoewogICAgICBhZGRyZXNzLAogICAgICBmcm9tQmxvY2ssCiAgICAgIHRvQmxvY2ssCiAgICAgIHRvcGljczogW2V2ZW50VG9waWNdLAogICAgfSk7CgogICAgcmV0dXJuIGxvZ3MubWFwKChsb2cpID0+CiAgICAgIGlmYWNlLmRlY29kZUV2ZW50TG9nKGV2ZW50TmFtZSwgbG9nLmRhdGEsIGxvZy50b3BpY3MpLAogICAgKTsKICB9IGNhdGNoIChlcnJvcikgewogICAgY29uc29sZS5lcnJvcihgRXJyb3IgZmV0Y2hpbmcgbG9ncyBmb3IgJHtldmVudE5hbWV9OmAsIGVycm9yKTsKICAgIHJldHVybiBbXTsKICB9Cn0KCmZ1bmN0aW9uIGNyZWF0ZVByb3ZpZGVyKGFwaUtleSwgYXBpU2VjcmV0LCByZWxheWVyQXBpS2V5LCByZWxheWVyQXBpU2VjcmV0KSB7CiAgY29uc3QgY2xpZW50ID0gbmV3IERlZmVuZGVyKHsKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHJlbGF5ZXJBcGlLZXksCiAgICByZWxheWVyQXBpU2VjcmV0LAogIH0pOwoKICByZXR1cm4gY2xpZW50LnJlbGF5U2lnbmVyLmdldFByb3ZpZGVyKCk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGNhbGN1bGF0ZUJsb2NrVGltZShwcm92aWRlcikgewogIGNvbnN0IGxhdGVzdEJsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2soImxhdGVzdCIpOwogIGNvbnN0IHByZXZpb3VzQmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jayhsYXRlc3RCbG9jay5udW1iZXIgLSAxMDApOwoKICBjb25zdCB0aW1lRGlmZiA9IGxhdGVzdEJsb2NrLnRpbWVzdGFtcCAtIHByZXZpb3VzQmxvY2sudGltZXN0YW1wOwogIGNvbnN0IGJsb2NrRGlmZiA9IGxhdGVzdEJsb2NrLm51bWJlciAtIHByZXZpb3VzQmxvY2subnVtYmVyOwoKICBjb25zdCBibG9ja1RpbWUgPSB0aW1lRGlmZiAvIGJsb2NrRGlmZjsKICByZXR1cm4gYmxvY2tUaW1lOwp9CgpleHBvcnRzLmhhbmRsZXIgPSBhc3luYyBmdW5jdGlvbiAoZXZlbnQsIGNvbnRleHQpIHsKICBjb25zdCB7IG5vdGlmaWNhdGlvbkNsaWVudCB9ID0gY29udGV4dDsKICBjb25zdCB7IGFwaUtleSwgYXBpU2VjcmV0LCB0YWlrb0wxQXBpS2V5LCB0YWlrb0wxQXBpU2VjcmV0IH0gPSBldmVudC5zZWNyZXRzOwoKICBjb25zdCB0YWlrb0wxUHJvdmlkZXIgPSBjcmVhdGVQcm92aWRlcigKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHRhaWtvTDFBcGlLZXksCiAgICB0YWlrb0wxQXBpU2VjcmV0LAogICk7CgogIGNvbnN0IGN1cnJlbnRCbG9ja051bWJlciA9IGF3YWl0IGdldExhdGVzdEJsb2NrTnVtYmVyKHRhaWtvTDFQcm92aWRlcik7CiAgY29uc3QgYmxvY2tUaW1lSW5TZWNvbmRzID0gYXdhaXQgY2FsY3VsYXRlQmxvY2tUaW1lKHRhaWtvTDFQcm92aWRlcik7CiAgY29uc3QgYmxvY2tzSW5GaXZlTWludXRlcyA9IE1hdGguZmxvb3IoKDUgKiA2MCkgLyBibG9ja1RpbWVJblNlY29uZHMpOwoKICBjb25zdCBmcm9tQmxvY2sgPSBjdXJyZW50QmxvY2tOdW1iZXIgLSBibG9ja3NJbkZpdmVNaW51dGVzOwogIGNvbnN0IHRvQmxvY2sgPSBjdXJyZW50QmxvY2tOdW1iZXI7CgogIGNvbnN0IGxvZ3MgPSBhd2FpdCBmZXRjaExvZ3NGcm9tTDEoCiAgICAiQ29uZmxpY3RpbmdQcm9vZnMiLAogICAgZnJvbUJsb2NrLAogICAgdG9CbG9jaywKICAgICIweEUzRDc3NzE0M0VhMjVBNkUwMzFkMWU5MjFGMzk2NzUwODg1ZjQzYUMiLAogICAgQUJJLAogICAgdGFpa29MMVByb3ZpZGVyLAogICk7CgogIGNvbnNvbGUubG9nKGBMb2dzIGZvdW5kOiAke2xvZ3MubGVuZ3RofWApOwoKICBpZiAobG9ncy5sZW5ndGggPiAwKSB7CiAgICBhbGVydE9yZygKICAgICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgICBgQ29uZmxpY3RpbmdQcm9vZnMgZXZlbnQgZGV0ZWN0ZWQhIERldGFpbHM6ICR7SlNPTi5zdHJpbmdpZnkobG9ncyl9YCwKICAgICk7CiAgfQoKICByZXR1cm4gdHJ1ZTsKfTsKUEsBAhQACgAAAAAAAABBUNxmKd6oDQAAqA0AAAgAAAAAAAAAAAAAAAAAAAAAAGluZGV4LmpzUEsFBgAAAAABAAEANgAAAM4NAAAAAA=="},{"autotaskId":"9c132973-b8dc-4406-895c-a4ba343455cf","actionId":"9c132973-b8dc-4406-895c-a4ba343455cf","name":"GuardianProver: Approved Count","paused":false,"trigger":{"cron":null,"frequencyMinutes":15,"type":"schedule"},"codeDigest":"IgyqIUQKGTxW+magdh/AJeYpV0Z95FCzB2cNsfhTCvU=","stackResourceId":"mystack.guardian-prover-approved-count","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVAnSx6hWg0AAFoNAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAib3BlcmF0aW9uSWQiLAogICAgICAgIHR5cGU6ICJ1aW50MjU2IiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogInVpbnQyNTYiLAogICAgICAgIG5hbWU6ICJhcHByb3ZhbEJpdHMiLAogICAgICAgIHR5cGU6ICJ1aW50MjU2IiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogImJvb2wiLAogICAgICAgIG5hbWU6ICJtaW5HdWFyZGlhbnNSZWFjaGVkIiwKICAgICAgICB0eXBlOiAiYm9vbCIsCiAgICAgIH0sCiAgICBdLAogICAgbmFtZTogIkFwcHJvdmVkIiwKICAgIHR5cGU6ICJldmVudCIsCiAgfSwKXTsKCmZ1bmN0aW9uIGFsZXJ0T3JnKG5vdGlmaWNhdGlvbkNsaWVudCwgbWVzc2FnZSkgewogIG5vdGlmaWNhdGlvbkNsaWVudC5zZW5kKHsKICAgIGNoYW5uZWxBbGlhczogImRpc2NvcmRfY29uZmlncyIsCiAgICBzdWJqZWN0OiAi4pqg77iPIEd1YXJkaWFuUHJvdmVyOiBBcHByb3ZlZCBDb3VudCIsCiAgICBtZXNzYWdlLAogIH0pOwp9Cgphc3luYyBmdW5jdGlvbiBnZXRMYXRlc3RCbG9ja051bWJlcihwcm92aWRlcikgewogIGNvbnN0IGN1cnJlbnRCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKCJsYXRlc3QiKTsKICByZXR1cm4gY3VycmVudEJsb2NrLm51bWJlcjsKfQoKYXN5bmMgZnVuY3Rpb24gY2FsY3VsYXRlQmxvY2tUaW1lKHByb3ZpZGVyKSB7CiAgY29uc3QgbGF0ZXN0QmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jaygibGF0ZXN0Iik7CiAgY29uc3QgcHJldmlvdXNCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKGxhdGVzdEJsb2NrLm51bWJlciAtIDEwMCk7CgogIGNvbnN0IHRpbWVEaWZmID0gbGF0ZXN0QmxvY2sudGltZXN0YW1wIC0gcHJldmlvdXNCbG9jay50aW1lc3RhbXA7CiAgY29uc3QgYmxvY2tEaWZmID0gbGF0ZXN0QmxvY2subnVtYmVyIC0gcHJldmlvdXNCbG9jay5udW1iZXI7CgogIGNvbnN0IGJsb2NrVGltZSA9IHRpbWVEaWZmIC8gYmxvY2tEaWZmOwogIHJldHVybiBibG9ja1RpbWU7Cn0KCmFzeW5jIGZ1bmN0aW9uIGNhbGN1bGF0ZUJsb2NrUmFuZ2UocHJvdmlkZXIpIHsKICBjb25zdCBjdXJyZW50QmxvY2tOdW1iZXIgPSBhd2FpdCBnZXRMYXRlc3RCbG9ja051bWJlcihwcm92aWRlcik7CiAgY29uc3QgYmxvY2tUaW1lSW5TZWNvbmRzID0gYXdhaXQgY2FsY3VsYXRlQmxvY2tUaW1lKHByb3ZpZGVyKTsKICBjb25zdCBibG9ja3NJbk9uZUhvdXIgPSBNYXRoLmZsb29yKCgxNiAqIDYwKSAvIGJsb2NrVGltZUluU2Vjb25kcyk7CgogIGNvbnN0IGZyb21CbG9jayA9IGN1cnJlbnRCbG9ja051bWJlciAtIGJsb2Nrc0luT25lSG91cjsKICBjb25zdCB0b0Jsb2NrID0gY3VycmVudEJsb2NrTnVtYmVyOwoKICBjb25zb2xlLmxvZyhgQ2FsY3VsYXRlZCBibG9jayByYW5nZTogZnJvbSAke2Zyb21CbG9ja30gdG8gJHt0b0Jsb2NrfWApOwoKICByZXR1cm4geyBmcm9tQmxvY2ssIHRvQmxvY2sgfTsKfQoKYXN5bmMgZnVuY3Rpb24gZmV0Y2hMb2dzRnJvbUwxKAogIGV2ZW50TmFtZSwKICBmcm9tQmxvY2ssCiAgdG9CbG9jaywKICBhZGRyZXNzLAogIGFiaSwKICBwcm92aWRlciwKKSB7CiAgY29uc3QgaWZhY2UgPSBuZXcgZXRoZXJzLnV0aWxzLkludGVyZmFjZShhYmkpOwogIGNvbnN0IGV2ZW50VG9waWMgPSBpZmFjZS5nZXRFdmVudFRvcGljKGV2ZW50TmFtZSk7CiAgY29uc29sZS5sb2coYGV2ZW50VG9waWM6ICR7ZXZlbnRUb3BpY31gKTsKICB0cnkgewogICAgY29uc3QgbG9ncyA9IGF3YWl0IHByb3ZpZGVyLmdldExvZ3MoewogICAgICBhZGRyZXNzLAogICAgICBmcm9tQmxvY2ssCiAgICAgIHRvQmxvY2ssCiAgICAgIHRvcGljczogW2V2ZW50VG9waWNdLAogICAgfSk7CiAgICBjb25zb2xlLmxvZyhgRmV0Y2hlZCBsb2dzOiAke2xvZ3MubGVuZ3RofWApOwogICAgcmV0dXJuIGxvZ3MubWFwKChsb2cpID0+IHsKICAgICAgY29uc3QgcGFyc2VkTG9nID0gaWZhY2UucGFyc2VMb2cobG9nKTsKICAgICAgY29uc29sZS5sb2coYFBhcnNlZCBsb2c6ICR7SlNPTi5zdHJpbmdpZnkocGFyc2VkTG9nKX1gKTsKICAgICAgcmV0dXJuIHBhcnNlZExvZzsKICAgIH0pOwogIH0gY2F0Y2ggKGVycm9yKSB7CiAgICBjb25zb2xlLmVycm9yKCJFcnJvciBmZXRjaGluZyBMMSBsb2dzOiIsIGVycm9yKTsKICAgIHJldHVybiBbXTsKICB9Cn0KCmZ1bmN0aW9uIGNyZWF0ZVByb3ZpZGVyKGFwaUtleSwgYXBpU2VjcmV0LCByZWxheWVyQXBpS2V5LCByZWxheWVyQXBpU2VjcmV0KSB7CiAgY29uc3QgY2xpZW50ID0gbmV3IERlZmVuZGVyKHsKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHJlbGF5ZXJBcGlLZXksCiAgICByZWxheWVyQXBpU2VjcmV0LAogIH0pOwoKICByZXR1cm4gY2xpZW50LnJlbGF5U2lnbmVyLmdldFByb3ZpZGVyKCk7Cn0KCmV4cG9ydHMuaGFuZGxlciA9IGFzeW5jIGZ1bmN0aW9uIChldmVudCwgY29udGV4dCkgewogIGNvbnN0IHsgbm90aWZpY2F0aW9uQ2xpZW50IH0gPSBjb250ZXh0OwogIGNvbnN0IHsgYXBpS2V5LCBhcGlTZWNyZXQsIHRhaWtvTDFBcGlLZXksIHRhaWtvTDFBcGlTZWNyZXQgfSA9IGV2ZW50LnNlY3JldHM7CgogIGNvbnN0IHRhaWtvTDFQcm92aWRlciA9IGNyZWF0ZVByb3ZpZGVyKAogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgdGFpa29MMUFwaUtleSwKICAgIHRhaWtvTDFBcGlTZWNyZXQsCiAgKTsKCiAgY29uc3QgeyBmcm9tQmxvY2ssIHRvQmxvY2sgfSA9IGF3YWl0IGNhbGN1bGF0ZUJsb2NrUmFuZ2UodGFpa29MMVByb3ZpZGVyKTsKCiAgY29uc3QgbG9ncyA9IGF3YWl0IGZldGNoTG9nc0Zyb21MMSgKICAgICJBcHByb3ZlZCIsCiAgICBmcm9tQmxvY2ssCiAgICB0b0Jsb2NrLAogICAgIjB4RTNENzc3MTQzRWEyNUE2RTAzMWQxZTkyMUYzOTY3NTA4ODVmNDNhQyIsCiAgICBBQkksCiAgICB0YWlrb0wxUHJvdmlkZXIsCiAgKTsKCiAgaWYgKGxvZ3MubGVuZ3RoID4gMCkgewogICAgYWxlcnRPcmcoCiAgICAgIG5vdGlmaWNhdGlvbkNsaWVudCwKICAgICAgYEB0YWlrb3xndWFyZGlhbnMgRGV0ZWN0ZWQgJHtsb2dzLmxlbmd0aH0gQXBwcm92ZWQgZXZlbnRzIGluIHRoZSBsYXN0IDE1IG1pbnMgb24gR3VhcmRpYW4hYCwKICAgICk7CiAgfQoKICByZXR1cm4gdHJ1ZTsKfTsKUEsBAhQACgAAAAAAAABBUCdLHqFaDQAAWg0AAAgAAAAAAAAAAAAAAAAAAAAAAGluZGV4LmpzUEsFBgAAAAABAAEANgAAAIANAAAAAA=="},{"autotaskId":"5b216422-4a62-4c2c-8242-330fa74d6ef1","actionId":"5b216422-4a62-4c2c-8242-330fa74d6ef1","name":"GuardianProver: GuardiansUpdated Alert","paused":false,"trigger":{"cron":null,"frequencyMinutes":4,"type":"schedule"},"codeDigest":"QDrbaB7HNvmMz0Yuifimr0hi+RP7kKbQKyOST8c2FZg=","stackResourceId":"mystack.guardian-prover-guardians-updated-alert","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVCTA5CyKgwAACoMAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDMyIiwKICAgICAgICBuYW1lOiAidmVyc2lvbiIsCiAgICAgICAgdHlwZTogInVpbnQzMiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJhZGRyZXNzW10iLAogICAgICAgIG5hbWU6ICJndWFyZGlhbnMiLAogICAgICAgIHR5cGU6ICJhZGRyZXNzW10iLAogICAgICB9LAogICAgXSwKICAgIG5hbWU6ICJHdWFyZGlhbnNVcGRhdGVkIiwKICAgIHR5cGU6ICJldmVudCIsCiAgfSwKXTsKCmZ1bmN0aW9uIGFsZXJ0T3JnKG5vdGlmaWNhdGlvbkNsaWVudCwgbWVzc2FnZSkgewogIG5vdGlmaWNhdGlvbkNsaWVudC5zZW5kKHsKICAgIGNoYW5uZWxBbGlhczogImRpc2NvcmRfY29uZmlncyIsCiAgICBzdWJqZWN0OiAi4pqg77iPIEd1YXJkaWFuUHJvdmVyOiBHdWFyZGlhbnNVcGRhdGVkIEFsZXJ0IiwKICAgIG1lc3NhZ2UsCiAgfSk7CgogIG5vdGlmaWNhdGlvbkNsaWVudC5zZW5kKHsKICAgIGNoYW5uZWxBbGlhczogInRnX3RhaWtvX2d1YXJkaWFucyIsCiAgICBzdWJqZWN0OiAi4pqg77iPIEd1YXJkaWFuUHJvdmVyOiBHdWFyZGlhbnNVcGRhdGVkIEFsZXJ0IiwKICAgIG1lc3NhZ2UsCiAgfSk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGdldExhdGVzdEJsb2NrTnVtYmVyKHByb3ZpZGVyKSB7CiAgY29uc3QgY3VycmVudEJsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2soImxhdGVzdCIpOwogIHJldHVybiBjdXJyZW50QmxvY2subnVtYmVyOwp9Cgphc3luYyBmdW5jdGlvbiBmZXRjaExvZ3NGcm9tTDEoCiAgZXZlbnROYW1lLAogIGZyb21CbG9jaywKICB0b0Jsb2NrLAogIGFkZHJlc3MsCiAgYWJpLAogIHByb3ZpZGVyLAopIHsKICBjb25zdCBpZmFjZSA9IG5ldyBldGhlcnMudXRpbHMuSW50ZXJmYWNlKGFiaSk7CiAgY29uc3QgZXZlbnRUb3BpYyA9IGlmYWNlLmdldEV2ZW50VG9waWMoZXZlbnROYW1lKTsKCiAgdHJ5IHsKICAgIGNvbnN0IGxvZ3MgPSBhd2FpdCBwcm92aWRlci5nZXRMb2dzKHsKICAgICAgYWRkcmVzcywKICAgICAgZnJvbUJsb2NrLAogICAgICB0b0Jsb2NrLAogICAgICB0b3BpY3M6IFtldmVudFRvcGljXSwKICAgIH0pOwoKICAgIHJldHVybiBsb2dzLm1hcCgobG9nKSA9PgogICAgICBpZmFjZS5kZWNvZGVFdmVudExvZyhldmVudE5hbWUsIGxvZy5kYXRhLCBsb2cudG9waWNzKSwKICAgICk7CiAgfSBjYXRjaCAoZXJyb3IpIHsKICAgIGNvbnNvbGUuZXJyb3IoYEVycm9yIGZldGNoaW5nIGxvZ3MgZm9yICR7ZXZlbnROYW1lfTpgLCBlcnJvcik7CiAgICByZXR1cm4gW107CiAgfQp9CgpmdW5jdGlvbiBjcmVhdGVQcm92aWRlcihhcGlLZXksIGFwaVNlY3JldCwgcmVsYXllckFwaUtleSwgcmVsYXllckFwaVNlY3JldCkgewogIGNvbnN0IGNsaWVudCA9IG5ldyBEZWZlbmRlcih7CiAgICBhcGlLZXksCiAgICBhcGlTZWNyZXQsCiAgICByZWxheWVyQXBpS2V5LAogICAgcmVsYXllckFwaVNlY3JldCwKICB9KTsKCiAgcmV0dXJuIGNsaWVudC5yZWxheVNpZ25lci5nZXRQcm92aWRlcigpOwp9Cgphc3luYyBmdW5jdGlvbiBjYWxjdWxhdGVCbG9ja1RpbWUocHJvdmlkZXIpIHsKICBjb25zdCBsYXRlc3RCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKCJsYXRlc3QiKTsKICBjb25zdCBwcmV2aW91c0Jsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2sobGF0ZXN0QmxvY2subnVtYmVyIC0gMTAwKTsKCiAgY29uc3QgdGltZURpZmYgPSBsYXRlc3RCbG9jay50aW1lc3RhbXAgLSBwcmV2aW91c0Jsb2NrLnRpbWVzdGFtcDsKICBjb25zdCBibG9ja0RpZmYgPSBsYXRlc3RCbG9jay5udW1iZXIgLSBwcmV2aW91c0Jsb2NrLm51bWJlcjsKCiAgY29uc3QgYmxvY2tUaW1lID0gdGltZURpZmYgLyBibG9ja0RpZmY7CiAgcmV0dXJuIGJsb2NrVGltZTsKfQoKZXhwb3J0cy5oYW5kbGVyID0gYXN5bmMgZnVuY3Rpb24gKGV2ZW50LCBjb250ZXh0KSB7CiAgY29uc3QgeyBub3RpZmljYXRpb25DbGllbnQgfSA9IGNvbnRleHQ7CiAgY29uc3QgeyBhcGlLZXksIGFwaVNlY3JldCwgdGFpa29MMUFwaUtleSwgdGFpa29MMUFwaVNlY3JldCB9ID0gZXZlbnQuc2VjcmV0czsKCiAgY29uc3QgdGFpa29MMVByb3ZpZGVyID0gY3JlYXRlUHJvdmlkZXIoCiAgICBhcGlLZXksCiAgICBhcGlTZWNyZXQsCiAgICB0YWlrb0wxQXBpS2V5LAogICAgdGFpa29MMUFwaVNlY3JldCwKICApOwoKICBjb25zdCBjdXJyZW50QmxvY2tOdW1iZXIgPSBhd2FpdCBnZXRMYXRlc3RCbG9ja051bWJlcih0YWlrb0wxUHJvdmlkZXIpOwogIGNvbnN0IGJsb2NrVGltZUluU2Vjb25kcyA9IGF3YWl0IGNhbGN1bGF0ZUJsb2NrVGltZSh0YWlrb0wxUHJvdmlkZXIpOwogIGNvbnN0IGJsb2Nrc0luRml2ZU1pbnV0ZXMgPSBNYXRoLmZsb29yKCg1ICogNjApIC8gYmxvY2tUaW1lSW5TZWNvbmRzKTsKCiAgY29uc3QgZnJvbUJsb2NrID0gY3VycmVudEJsb2NrTnVtYmVyIC0gYmxvY2tzSW5GaXZlTWludXRlczsKICBjb25zdCB0b0Jsb2NrID0gY3VycmVudEJsb2NrTnVtYmVyOwoKICBjb25zdCBsb2dzID0gYXdhaXQgZmV0Y2hMb2dzRnJvbUwxKAogICAgIkd1YXJkaWFuc1VwZGF0ZWQiLAogICAgZnJvbUJsb2NrLAogICAgdG9CbG9jaywKICAgICIweEUzRDc3NzE0M0VhMjVBNkUwMzFkMWU5MjFGMzk2NzUwODg1ZjQzYUMiLAogICAgQUJJLAogICAgdGFpa29MMVByb3ZpZGVyLAogICk7CgogIGNvbnNvbGUubG9nKGBMb2dzIGZvdW5kOiAke2xvZ3MubGVuZ3RofWApOwoKICBpZiAobG9ncy5sZW5ndGggPiAwKSB7CiAgICBhbGVydE9yZygKICAgICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgICBgR3VhcmRpYW5zVXBkYXRlZCBldmVudCBkZXRlY3RlZCEgRGV0YWlsczogJHtKU09OLnN0cmluZ2lmeShsb2dzKX1gLAogICAgKTsKICB9CgogIHJldHVybiB0cnVlOwp9OwpQSwECFAAKAAAAAAAAAEFQkwOQsioMAAAqDAAACAAAAAAAAAAAAAAAAAAAAAAAaW5kZXguanNQSwUGAAAAAAEAAQA2AAAAUAwAAAAA"},{"autotaskId":"f219a32c-98db-4c46-bbb4-dc279e65d128","actionId":"f219a32c-98db-4c46-bbb4-dc279e65d128","name":"TaikoL1: ProvingPaused Alert","paused":false,"trigger":{"cron":null,"frequencyMinutes":4,"type":"schedule"},"codeDigest":"YNbpcd3g7dWyoKmrpCa8jkF3st/mY1uhaVd8RNpjwn0=","stackResourceId":"mystack.taiko-l-1-proving-paused-alert","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVAU+JyO+goAAPoKAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAiYm9vbCIsCiAgICAgICAgbmFtZTogInBhdXNlZCIsCiAgICAgICAgdHlwZTogImJvb2wiLAogICAgICB9LAogICAgXSwKICAgIG5hbWU6ICJQcm92aW5nUGF1c2VkIiwKICAgIHR5cGU6ICJldmVudCIsCiAgfSwKXTsKCmZ1bmN0aW9uIGFsZXJ0T3JnKG5vdGlmaWNhdGlvbkNsaWVudCwgbWVzc2FnZSkgewogIG5vdGlmaWNhdGlvbkNsaWVudC5zZW5kKHsKICAgIGNoYW5uZWxBbGlhczogImRpc2NvcmRfY29uZmlncyIsCiAgICBzdWJqZWN0OiAi4pqg77iPIFRhaWtvTDE6IFByb3ZpbmdQYXVzZWQgQWxlcnQiLAogICAgbWVzc2FnZSwKICB9KTsKfQoKYXN5bmMgZnVuY3Rpb24gZ2V0TGF0ZXN0QmxvY2tOdW1iZXIocHJvdmlkZXIpIHsKICBjb25zdCBjdXJyZW50QmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jaygibGF0ZXN0Iik7CiAgcmV0dXJuIGN1cnJlbnRCbG9jay5udW1iZXI7Cn0KCmFzeW5jIGZ1bmN0aW9uIGZldGNoTG9nc0Zyb21MMSgKICBldmVudE5hbWUsCiAgZnJvbUJsb2NrLAogIHRvQmxvY2ssCiAgYWRkcmVzcywKICBhYmksCiAgcHJvdmlkZXIsCikgewogIGNvbnN0IGlmYWNlID0gbmV3IGV0aGVycy51dGlscy5JbnRlcmZhY2UoYWJpKTsKICBjb25zdCBldmVudFRvcGljID0gaWZhY2UuZ2V0RXZlbnRUb3BpYyhldmVudE5hbWUpOwoKICB0cnkgewogICAgY29uc3QgbG9ncyA9IGF3YWl0IHByb3ZpZGVyLmdldExvZ3MoewogICAgICBhZGRyZXNzLAogICAgICBmcm9tQmxvY2ssCiAgICAgIHRvQmxvY2ssCiAgICAgIHRvcGljczogW2V2ZW50VG9waWNdLAogICAgfSk7CgogICAgcmV0dXJuIGxvZ3MubWFwKChsb2cpID0+CiAgICAgIGlmYWNlLmRlY29kZUV2ZW50TG9nKGV2ZW50TmFtZSwgbG9nLmRhdGEsIGxvZy50b3BpY3MpLAogICAgKTsKICB9IGNhdGNoIChlcnJvcikgewogICAgY29uc29sZS5lcnJvcihgRXJyb3IgZmV0Y2hpbmcgbG9ncyBmb3IgJHtldmVudE5hbWV9OmAsIGVycm9yKTsKICAgIHJldHVybiBbXTsKICB9Cn0KCmZ1bmN0aW9uIGNyZWF0ZVByb3ZpZGVyKGFwaUtleSwgYXBpU2VjcmV0LCByZWxheWVyQXBpS2V5LCByZWxheWVyQXBpU2VjcmV0KSB7CiAgY29uc3QgY2xpZW50ID0gbmV3IERlZmVuZGVyKHsKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHJlbGF5ZXJBcGlLZXksCiAgICByZWxheWVyQXBpU2VjcmV0LAogIH0pOwoKICByZXR1cm4gY2xpZW50LnJlbGF5U2lnbmVyLmdldFByb3ZpZGVyKCk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGNhbGN1bGF0ZUJsb2NrVGltZShwcm92aWRlcikgewogIGNvbnN0IGxhdGVzdEJsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2soImxhdGVzdCIpOwogIGNvbnN0IHByZXZpb3VzQmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jayhsYXRlc3RCbG9jay5udW1iZXIgLSAxMDApOwoKICBjb25zdCB0aW1lRGlmZiA9IGxhdGVzdEJsb2NrLnRpbWVzdGFtcCAtIHByZXZpb3VzQmxvY2sudGltZXN0YW1wOwogIGNvbnN0IGJsb2NrRGlmZiA9IGxhdGVzdEJsb2NrLm51bWJlciAtIHByZXZpb3VzQmxvY2subnVtYmVyOwoKICBjb25zdCBibG9ja1RpbWUgPSB0aW1lRGlmZiAvIGJsb2NrRGlmZjsKICByZXR1cm4gYmxvY2tUaW1lOwp9CgpleHBvcnRzLmhhbmRsZXIgPSBhc3luYyBmdW5jdGlvbiAoZXZlbnQsIGNvbnRleHQpIHsKICBjb25zdCB7IG5vdGlmaWNhdGlvbkNsaWVudCB9ID0gY29udGV4dDsKICBjb25zdCB7IGFwaUtleSwgYXBpU2VjcmV0LCB0YWlrb0wxQXBpS2V5LCB0YWlrb0wxQXBpU2VjcmV0IH0gPSBldmVudC5zZWNyZXRzOwoKICBjb25zdCB0YWlrb0wxUHJvdmlkZXIgPSBjcmVhdGVQcm92aWRlcigKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHRhaWtvTDFBcGlLZXksCiAgICB0YWlrb0wxQXBpU2VjcmV0LAogICk7CgogIGNvbnN0IGN1cnJlbnRCbG9ja051bWJlciA9IGF3YWl0IGdldExhdGVzdEJsb2NrTnVtYmVyKHRhaWtvTDFQcm92aWRlcik7CiAgY29uc3QgYmxvY2tUaW1lSW5TZWNvbmRzID0gYXdhaXQgY2FsY3VsYXRlQmxvY2tUaW1lKHRhaWtvTDFQcm92aWRlcik7CiAgY29uc3QgYmxvY2tzSW5GaXZlTWludXRlcyA9IE1hdGguZmxvb3IoKDUgKiA2MCkgLyBibG9ja1RpbWVJblNlY29uZHMpOwoKICBjb25zdCBmcm9tQmxvY2sgPSBjdXJyZW50QmxvY2tOdW1iZXIgLSBibG9ja3NJbkZpdmVNaW51dGVzOwogIGNvbnN0IHRvQmxvY2sgPSBjdXJyZW50QmxvY2tOdW1iZXI7CgogIGNvbnN0IGxvZ3MgPSBhd2FpdCBmZXRjaExvZ3NGcm9tTDEoCiAgICAiUHJvdmluZ1BhdXNlZCIsCiAgICBmcm9tQmxvY2ssCiAgICB0b0Jsb2NrLAogICAgIjB4MDZhOUFiMjdjN2UyMjU1ZGYxODE1RTZDQzAxNjhkNzc1NUZlYjE5YSIsCiAgICBBQkksCiAgICB0YWlrb0wxUHJvdmlkZXIsCiAgKTsKCiAgY29uc29sZS5sb2coYExvZ3MgZm91bmQ6ICR7bG9ncy5sZW5ndGh9YCk7CgogIGlmIChsb2dzLmxlbmd0aCA+IDApIHsKICAgIGFsZXJ0T3JnKAogICAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICAgIGBQcm92aW5nUGF1c2VkIGV2ZW50IGRldGVjdGVkISBEZXRhaWxzOiAke0pTT04uc3RyaW5naWZ5KGxvZ3MpfWAsCiAgICApOwogIH0KCiAgcmV0dXJuIHRydWU7Cn07ClBLAQIUAAoAAAAAAAAAQVAU+JyO+goAAPoKAAAIAAAAAAAAAAAAAAAAAAAAAABpbmRleC5qc1BLBQYAAAAAAQABADYAAAAgCwAAAAA="},{"autotaskId":"c79df8d7-deb4-45ea-ad3d-b808bf371405","actionId":"c79df8d7-deb4-45ea-ad3d-b808bf371405","name":"TaikoL1: TransitionContested Count","paused":false,"trigger":{"cron":null,"frequencyMinutes":60,"type":"schedule"},"codeDigest":"mp4o1olYw/ttX2O4d2ALDBqJeYOTaUFo67hiPxmMcmo=","stackResourceId":"mystack.taiko-l-1-transition-contested-count","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-05","encodedZippedCode":"UEsDBAoAAAAAAAAAQVA/+iecuBUAALgVAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAiYmxvY2tJZCIsCiAgICAgICAgdHlwZTogInVpbnQyNTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgY29tcG9uZW50czogWwogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogInBhcmVudEhhc2giLAogICAgICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogImJsb2NrSGFzaCIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAic3RhdGVSb290IiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJncmFmZml0aSIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgXSwKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJzdHJ1Y3QgVGFpa29EYXRhLlRyYW5zaXRpb24iLAogICAgICAgIG5hbWU6ICJ0cmFuIiwKICAgICAgICB0eXBlOiAidHVwbGUiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAiYWRkcmVzcyIsCiAgICAgICAgbmFtZTogImNvbnRlc3RlciIsCiAgICAgICAgdHlwZTogImFkZHJlc3MiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDk2IiwKICAgICAgICBuYW1lOiAiY29udGVzdEJvbmQiLAogICAgICAgIHR5cGU6ICJ1aW50OTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDE2IiwKICAgICAgICBuYW1lOiAidGllciIsCiAgICAgICAgdHlwZTogInVpbnQxNiIsCiAgICAgIH0sCiAgICBdLAogICAgbmFtZTogIlRyYW5zaXRpb25Db250ZXN0ZWQiLAogICAgdHlwZTogImV2ZW50IiwKICB9LAogIHsKICAgIGFub255bW91czogZmFsc2UsCiAgICBpbnB1dHM6IFsKICAgICAgewogICAgICAgIGluZGV4ZWQ6IHRydWUsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDI1NiIsCiAgICAgICAgbmFtZTogImJsb2NrSWQiLAogICAgICAgIHR5cGU6ICJ1aW50MjU2IiwKICAgICAgfSwKICAgICAgewogICAgICAgIGNvbXBvbmVudHM6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJwYXJlbnRIYXNoIiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJibG9ja0hhc2giLAogICAgICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogInN0YXRlUm9vdCIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAiZ3JhZmZpdGkiLAogICAgICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICB9LAogICAgICAgIF0sCiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAic3RydWN0IFRhaWtvRGF0YS5UcmFuc2l0aW9uIiwKICAgICAgICBuYW1lOiAidHJhbiIsCiAgICAgICAgdHlwZTogInR1cGxlIiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogImFkZHJlc3MiLAogICAgICAgIG5hbWU6ICJjb250ZXN0ZXIiLAogICAgICAgIHR5cGU6ICJhZGRyZXNzIiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogInVpbnQ5NiIsCiAgICAgICAgbmFtZTogImNvbnRlc3RCb25kIiwKICAgICAgICB0eXBlOiAidWludDk2IiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogInVpbnQxNiIsCiAgICAgICAgbmFtZTogInRpZXIiLAogICAgICAgIHR5cGU6ICJ1aW50MTYiLAogICAgICB9LAogICAgXSwKICAgIG5hbWU6ICJUcmFuc2l0aW9uQ29udGVzdGVkVjIiLAogICAgdHlwZTogImV2ZW50IiwKICB9LApdOwoKZnVuY3Rpb24gYWxlcnRPcmcobm90aWZpY2F0aW9uQ2xpZW50LCBtZXNzYWdlKSB7CiAgbm90aWZpY2F0aW9uQ2xpZW50LnNlbmQoewogICAgY2hhbm5lbEFsaWFzOiAiZGlzY29yZF9ibG9ja3MiLAogICAgc3ViamVjdDogIuKEue+4jyBUYWlrb0wxOiBUcmFuc2l0aW9uQ29udGVzdGVkIENvdW50IiwKICAgIG1lc3NhZ2UsCiAgfSk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGdldExhdGVzdEJsb2NrTnVtYmVyKHByb3ZpZGVyKSB7CiAgY29uc3QgY3VycmVudEJsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2soImxhdGVzdCIpOwogIHJldHVybiBjdXJyZW50QmxvY2subnVtYmVyOwp9Cgphc3luYyBmdW5jdGlvbiBjYWxjdWxhdGVCbG9ja1RpbWUocHJvdmlkZXIpIHsKICBjb25zdCBsYXRlc3RCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKCJsYXRlc3QiKTsKICBjb25zdCBwcmV2aW91c0Jsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2sobGF0ZXN0QmxvY2subnVtYmVyIC0gMTAwKTsKCiAgY29uc3QgdGltZURpZmYgPSBsYXRlc3RCbG9jay50aW1lc3RhbXAgLSBwcmV2aW91c0Jsb2NrLnRpbWVzdGFtcDsKICBjb25zdCBibG9ja0RpZmYgPSBsYXRlc3RCbG9jay5udW1iZXIgLSBwcmV2aW91c0Jsb2NrLm51bWJlcjsKCiAgY29uc3QgYmxvY2tUaW1lID0gdGltZURpZmYgLyBibG9ja0RpZmY7CiAgcmV0dXJuIGJsb2NrVGltZTsKfQoKYXN5bmMgZnVuY3Rpb24gY2FsY3VsYXRlQmxvY2tSYW5nZShwcm92aWRlcikgewogIGNvbnN0IGN1cnJlbnRCbG9ja051bWJlciA9IGF3YWl0IGdldExhdGVzdEJsb2NrTnVtYmVyKHByb3ZpZGVyKTsKICBjb25zdCBibG9ja1RpbWVJblNlY29uZHMgPSBhd2FpdCBjYWxjdWxhdGVCbG9ja1RpbWUocHJvdmlkZXIpOwogIGNvbnN0IGJsb2Nrc0luT25lSG91ciA9IE1hdGguZmxvb3IoKDYwICogNjApIC8gYmxvY2tUaW1lSW5TZWNvbmRzKTsKCiAgY29uc3QgZnJvbUJsb2NrID0gY3VycmVudEJsb2NrTnVtYmVyIC0gYmxvY2tzSW5PbmVIb3VyOwogIGNvbnN0IHRvQmxvY2sgPSBjdXJyZW50QmxvY2tOdW1iZXI7CgogIGNvbnNvbGUubG9nKGBDYWxjdWxhdGVkIGJsb2NrIHJhbmdlOiBmcm9tICR7ZnJvbUJsb2NrfSB0byAke3RvQmxvY2t9YCk7CgogIHJldHVybiB7IGZyb21CbG9jaywgdG9CbG9jayB9Owp9Cgphc3luYyBmdW5jdGlvbiBmZXRjaExvZ3NGcm9tTDEoCiAgZXZlbnROYW1lcywKICBmcm9tQmxvY2ssCiAgdG9CbG9jaywKICBhZGRyZXNzLAogIGFiaSwKICBwcm92aWRlciwKKSB7CiAgY29uc3QgaWZhY2UgPSBuZXcgZXRoZXJzLnV0aWxzLkludGVyZmFjZShhYmkpOwogIGNvbnN0IGV2ZW50VG9waWNzID0gZXZlbnROYW1lcy5tYXAoKGV2ZW50TmFtZSkgPT4KICAgIGlmYWNlLmdldEV2ZW50VG9waWMoZXZlbnROYW1lKSwKICApOwoKICBjb25zb2xlLmxvZyhgZXZlbnRUb3BpY3M6ICR7ZXZlbnRUb3BpY3N9YCk7CgogIHRyeSB7CiAgICBjb25zdCBsb2dzID0gYXdhaXQgcHJvdmlkZXIuZ2V0TG9ncyh7CiAgICAgIGFkZHJlc3MsCiAgICAgIGZyb21CbG9jaywKICAgICAgdG9CbG9jaywKICAgICAgdG9waWNzOiBbZXZlbnRUb3BpY3NdLAogICAgfSk7CiAgICBjb25zb2xlLmxvZyhgRmV0Y2hlZCBsb2dzOiAke2xvZ3MubGVuZ3RofWApOwogICAgcmV0dXJuIGxvZ3MubWFwKChsb2cpID0+IHsKICAgICAgY29uc3QgcGFyc2VkTG9nID0gaWZhY2UucGFyc2VMb2cobG9nKTsKICAgICAgY29uc29sZS5sb2coYFBhcnNlZCBsb2c6ICR7SlNPTi5zdHJpbmdpZnkocGFyc2VkTG9nKX1gKTsKICAgICAgcmV0dXJuIHBhcnNlZExvZzsKICAgIH0pOwogIH0gY2F0Y2ggKGVycm9yKSB7CiAgICBjb25zb2xlLmVycm9yKCJFcnJvciBmZXRjaGluZyBMMSBsb2dzOiIsIGVycm9yKTsKICAgIHJldHVybiBbXTsKICB9Cn0KCmZ1bmN0aW9uIGNyZWF0ZVByb3ZpZGVyKGFwaUtleSwgYXBpU2VjcmV0LCByZWxheWVyQXBpS2V5LCByZWxheWVyQXBpU2VjcmV0KSB7CiAgY29uc3QgY2xpZW50ID0gbmV3IERlZmVuZGVyKHsKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHJlbGF5ZXJBcGlLZXksCiAgICByZWxheWVyQXBpU2VjcmV0LAogIH0pOwoKICByZXR1cm4gY2xpZW50LnJlbGF5U2lnbmVyLmdldFByb3ZpZGVyKCk7Cn0KCmV4cG9ydHMuaGFuZGxlciA9IGFzeW5jIGZ1bmN0aW9uIChldmVudCwgY29udGV4dCkgewogIGNvbnN0IHsgbm90aWZpY2F0aW9uQ2xpZW50IH0gPSBjb250ZXh0OwogIGNvbnN0IHsgYXBpS2V5LCBhcGlTZWNyZXQsIHRhaWtvTDFBcGlLZXksIHRhaWtvTDFBcGlTZWNyZXQgfSA9IGV2ZW50LnNlY3JldHM7CgogIGNvbnN0IHRhaWtvTDFQcm92aWRlciA9IGNyZWF0ZVByb3ZpZGVyKAogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgdGFpa29MMUFwaUtleSwKICAgIHRhaWtvTDFBcGlTZWNyZXQsCiAgKTsKCiAgY29uc3QgeyBmcm9tQmxvY2ssIHRvQmxvY2sgfSA9IGF3YWl0IGNhbGN1bGF0ZUJsb2NrUmFuZ2UodGFpa29MMVByb3ZpZGVyKTsKCiAgY29uc3QgbG9ncyA9IGF3YWl0IGZldGNoTG9nc0Zyb21MMSgKICAgIFsiVHJhbnNpdGlvbkNvbnRlc3RlZCIsICJUcmFuc2l0aW9uQ29udGVzdGVkVjIiXSwKICAgIGZyb21CbG9jaywKICAgIHRvQmxvY2ssCiAgICAiMHgwNmE5QWIyN2M3ZTIyNTVkZjE4MTVFNkNDMDE2OGQ3NzU1RmViMTlhIiwKICAgIEFCSSwKICAgIHRhaWtvTDFQcm92aWRlciwKICApOwoKICBpZiAobG9ncy5sZW5ndGggPiAwKSB7CiAgICBhbGVydE9yZygKICAgICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgICBgRGV0ZWN0ZWQgJHtsb2dzLmxlbmd0aH0gVHJhbnNpdGlvbkNvbnRlc3RlZCBhbmQgVHJhbnNpdGlvbkNvbnRlc3RlZFYyIGV2ZW50cyBpbiB0aGUgbGFzdCBob3VyIG9uIFRhaWtvTDEhYCwKICAgICk7CiAgfQoKICByZXR1cm4gdHJ1ZTsKfTsKUEsBAhQACgAAAAAAAABBUD/6J5y4FQAAuBUAAAgAAAAAAAAAAAAAAAAAAAAAAGluZGV4LmpzUEsFBgAAAAABAAEANgAAAN4VAAAAAA=="},{"autotaskId":"06200461-ef64-409c-b027-0a0b54986791","actionId":"06200461-ef64-409c-b027-0a0b54986791","name":"TaikoL1: TransitionProved Alert","paused":false,"trigger":{"cron":null,"frequencyMinutes":4,"type":"schedule"},"codeDigest":"0SM/4ykVO5o7umE96EUaGaOXy2AmZAOOcdjG1e46RUw=","stackResourceId":"mystack.taiko-l-1-transition-proved-alert","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-05","encodedZippedCode":"UEsDBAoAAAAAAAAAQVCdRYy1ABQAAAAUAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAiYmxvY2tJZCIsCiAgICAgICAgdHlwZTogInVpbnQyNTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgY29tcG9uZW50czogWwogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogInBhcmVudEhhc2giLAogICAgICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogImJsb2NrSGFzaCIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAic3RhdGVSb290IiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJncmFmZml0aSIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgXSwKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJzdHJ1Y3QgVGFpa29EYXRhLlRyYW5zaXRpb24iLAogICAgICAgIG5hbWU6ICJ0cmFuIiwKICAgICAgICB0eXBlOiAidHVwbGUiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAiYWRkcmVzcyIsCiAgICAgICAgbmFtZTogInByb3ZlciIsCiAgICAgICAgdHlwZTogImFkZHJlc3MiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDk2IiwKICAgICAgICBuYW1lOiAidmFsaWRpdHlCb25kIiwKICAgICAgICB0eXBlOiAidWludDk2IiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogInVpbnQxNiIsCiAgICAgICAgbmFtZTogInRpZXIiLAogICAgICAgIHR5cGU6ICJ1aW50MTYiLAogICAgICB9LAogICAgXSwKICAgIG5hbWU6ICJUcmFuc2l0aW9uUHJvdmVkIiwKICAgIHR5cGU6ICJldmVudCIsCiAgfSwKICB7CiAgICBhbm9ueW1vdXM6IGZhbHNlLAogICAgaW5wdXRzOiBbCiAgICAgIHsKICAgICAgICBpbmRleGVkOiB0cnVlLAogICAgICAgIGludGVybmFsVHlwZTogInVpbnQyNTYiLAogICAgICAgIG5hbWU6ICJibG9ja0lkIiwKICAgICAgICB0eXBlOiAidWludDI1NiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBjb21wb25lbnRzOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAicGFyZW50SGFzaCIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAiYmxvY2tIYXNoIiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJzdGF0ZVJvb3QiLAogICAgICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogImdyYWZmaXRpIiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICBdLAogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogInN0cnVjdCBUYWlrb0RhdGEuVHJhbnNpdGlvbiIsCiAgICAgICAgbmFtZTogInRyYW4iLAogICAgICAgIHR5cGU6ICJ0dXBsZSIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJhZGRyZXNzIiwKICAgICAgICBuYW1lOiAicHJvdmVyIiwKICAgICAgICB0eXBlOiAiYWRkcmVzcyIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50OTYiLAogICAgICAgIG5hbWU6ICJ2YWxpZGl0eUJvbmQiLAogICAgICAgIHR5cGU6ICJ1aW50OTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDE2IiwKICAgICAgICBuYW1lOiAidGllciIsCiAgICAgICAgdHlwZTogInVpbnQxNiIsCiAgICAgIH0sCiAgICBdLAogICAgbmFtZTogIlRyYW5zaXRpb25Qcm92ZWRWMiIsCiAgICB0eXBlOiAiZXZlbnQiLAogIH0sCl07CgpmdW5jdGlvbiBhbGVydE9yZyhub3RpZmljYXRpb25DbGllbnQsIG1lc3NhZ2UpIHsKICBub3RpZmljYXRpb25DbGllbnQuc2VuZCh7CiAgICBjaGFubmVsQWxpYXM6ICJkaXNjb3JkX2Jsb2NrcyIsCiAgICBzdWJqZWN0OiAi8J+aqCBUYWlrb0wxOiBUcmFuc2l0aW9uUHJvdmVkIEFsZXJ0IiwKICAgIG1lc3NhZ2UsCiAgfSk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGdldExhdGVzdEJsb2NrTnVtYmVyKHByb3ZpZGVyKSB7CiAgY29uc3QgY3VycmVudEJsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2soImxhdGVzdCIpOwogIHJldHVybiBjdXJyZW50QmxvY2subnVtYmVyOwp9Cgphc3luYyBmdW5jdGlvbiBmZXRjaExvZ3NGcm9tTDEoCiAgZXZlbnROYW1lcywKICBmcm9tQmxvY2ssCiAgdG9CbG9jaywKICBhZGRyZXNzLAogIGFiaSwKICBwcm92aWRlciwKKSB7CiAgY29uc3QgaWZhY2UgPSBuZXcgZXRoZXJzLnV0aWxzLkludGVyZmFjZShhYmkpOwogIGNvbnN0IGV2ZW50VG9waWNzID0gZXZlbnROYW1lcy5tYXAoKGV2ZW50TmFtZSkgPT4KICAgIGlmYWNlLmdldEV2ZW50VG9waWMoZXZlbnROYW1lKSwKICApOwoKICB0cnkgewogICAgY29uc3QgbG9ncyA9IGF3YWl0IHByb3ZpZGVyLmdldExvZ3MoewogICAgICBhZGRyZXNzLAogICAgICBmcm9tQmxvY2ssCiAgICAgIHRvQmxvY2ssCiAgICAgIHRvcGljczogW2V2ZW50VG9waWNzXSwKICAgIH0pOwogICAgY29uc29sZS5sb2coIlJhdyBsb2dzIGZldGNoZWQ6IiwgbG9ncyk7CiAgICByZXR1cm4gbG9ncy5tYXAoKGxvZykgPT4gaWZhY2UucGFyc2VMb2cobG9nKSk7CiAgfSBjYXRjaCAoZXJyb3IpIHsKICAgIGNvbnNvbGUuZXJyb3IoIkVycm9yIGZldGNoaW5nIEwxIGxvZ3M6IiwgZXJyb3IpOwogICAgcmV0dXJuIFtdOwogIH0KfQoKZnVuY3Rpb24gY3JlYXRlUHJvdmlkZXIoYXBpS2V5LCBhcGlTZWNyZXQsIHJlbGF5ZXJBcGlLZXksIHJlbGF5ZXJBcGlTZWNyZXQpIHsKICBjb25zdCBjbGllbnQgPSBuZXcgRGVmZW5kZXIoewogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgcmVsYXllckFwaUtleSwKICAgIHJlbGF5ZXJBcGlTZWNyZXQsCiAgfSk7CgogIHJldHVybiBjbGllbnQucmVsYXlTaWduZXIuZ2V0UHJvdmlkZXIoKTsKfQoKYXN5bmMgZnVuY3Rpb24gY2FsY3VsYXRlQmxvY2tUaW1lKHByb3ZpZGVyKSB7CiAgY29uc3QgbGF0ZXN0QmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jaygibGF0ZXN0Iik7CiAgY29uc3QgcHJldmlvdXNCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKGxhdGVzdEJsb2NrLm51bWJlciAtIDEwMCk7CgogIGNvbnN0IHRpbWVEaWZmID0gbGF0ZXN0QmxvY2sudGltZXN0YW1wIC0gcHJldmlvdXNCbG9jay50aW1lc3RhbXA7CiAgY29uc3QgYmxvY2tEaWZmID0gbGF0ZXN0QmxvY2subnVtYmVyIC0gcHJldmlvdXNCbG9jay5udW1iZXI7CgogIGNvbnN0IGJsb2NrVGltZSA9IHRpbWVEaWZmIC8gYmxvY2tEaWZmOwogIHJldHVybiBibG9ja1RpbWU7Cn0KCmV4cG9ydHMuaGFuZGxlciA9IGFzeW5jIGZ1bmN0aW9uIChldmVudCwgY29udGV4dCkgewogIGNvbnN0IHsgbm90aWZpY2F0aW9uQ2xpZW50IH0gPSBjb250ZXh0OwogIGNvbnN0IHsgYXBpS2V5LCBhcGlTZWNyZXQsIHRhaWtvTDFBcGlLZXksIHRhaWtvTDFBcGlTZWNyZXQgfSA9IGV2ZW50LnNlY3JldHM7CgogIGNvbnN0IHRhaWtvTDFQcm92aWRlciA9IGNyZWF0ZVByb3ZpZGVyKAogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgdGFpa29MMUFwaUtleSwKICAgIHRhaWtvTDFBcGlTZWNyZXQsCiAgKTsKCiAgY29uc3QgY3VycmVudEJsb2NrTnVtYmVyID0gYXdhaXQgZ2V0TGF0ZXN0QmxvY2tOdW1iZXIodGFpa29MMVByb3ZpZGVyKTsKICBjb25zdCBibG9ja1RpbWVJblNlY29uZHMgPSBhd2FpdCBjYWxjdWxhdGVCbG9ja1RpbWUodGFpa29MMVByb3ZpZGVyKTsKICBjb25zdCBibG9ja3NJblRoaXJ0eU1pbnV0ZXMgPSBNYXRoLmZsb29yKCgzMCAqIDYwKSAvIGJsb2NrVGltZUluU2Vjb25kcyk7CgogIGNvbnN0IGZyb21CbG9jayA9IGN1cnJlbnRCbG9ja051bWJlciAtIGJsb2Nrc0luVGhpcnR5TWludXRlczsKICBjb25zdCB0b0Jsb2NrID0gY3VycmVudEJsb2NrTnVtYmVyOwoKICBjb25zdCBsb2dzID0gYXdhaXQgZmV0Y2hMb2dzRnJvbUwxKAogICAgWyJUcmFuc2l0aW9uUHJvdmVkIiwgIlRyYW5zaXRpb25Qcm92ZWRWMiJdLAogICAgZnJvbUJsb2NrLAogICAgdG9CbG9jaywKICAgICIweDA2YTlBYjI3YzdlMjI1NWRmMTgxNUU2Q0MwMTY4ZDc3NTVGZWIxOWEiLAogICAgQUJJLAogICAgdGFpa29MMVByb3ZpZGVyLAogICk7CgogIGlmIChsb2dzLmxlbmd0aCA9PT0gMCkgewogICAgYWxlcnRPcmcoCiAgICAgIG5vdGlmaWNhdGlvbkNsaWVudCwKICAgICAgYE5vIFRyYW5zaXRpb25Qcm92ZWQgZXZlbnQgZGV0ZWN0ZWQgaW4gdGhlIGxhc3QgMzAgbWlucyBvbiBUYWlrb0wxIWAsCiAgICApOwogIH0KCiAgcmV0dXJuIHRydWU7Cn07ClBLAQIUAAoAAAAAAAAAQVCdRYy1ABQAAAAUAAAIAAAAAAAAAAAAAAAAAAAAAABpbmRleC5qc1BLBQYAAAAAAQABADYAAAAmFAAAAAA="},{"autotaskId":"4390573f-1796-4c27-8933-7f157e77c2b4","actionId":"4390573f-1796-4c27-8933-7f157e77c2b4","name":"TaikoL1: BlockVerified Alert","paused":false,"trigger":{"cron":null,"frequencyMinutes":4,"type":"schedule"},"codeDigest":"mqXqyfZDeb1WGdy+nxXiMlsgOop/LSMOh3pARcgugAc=","stackResourceId":"mystack.taiko-l-1-block-verified-alert","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-05","encodedZippedCode":"UEsDBAoAAAAAAAAAQVBa57hUWxAAAFsQAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAiYmxvY2tJZCIsCiAgICAgICAgdHlwZTogInVpbnQyNTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJhZGRyZXNzIiwKICAgICAgICBuYW1lOiAicHJvdmVyIiwKICAgICAgICB0eXBlOiAiYWRkcmVzcyIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICBuYW1lOiAiYmxvY2tIYXNoIiwKICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICBuYW1lOiAic3RhdGVSb290IiwKICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MTYiLAogICAgICAgIG5hbWU6ICJ0aWVyIiwKICAgICAgICB0eXBlOiAidWludDE2IiwKICAgICAgfSwKICAgIF0sCiAgICBuYW1lOiAiQmxvY2tWZXJpZmllZCIsCiAgICB0eXBlOiAiZXZlbnQiLAogIH0sCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAiYmxvY2tJZCIsCiAgICAgICAgdHlwZTogInVpbnQyNTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJhZGRyZXNzIiwKICAgICAgICBuYW1lOiAicHJvdmVyIiwKICAgICAgICB0eXBlOiAiYWRkcmVzcyIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICBuYW1lOiAiYmxvY2tIYXNoIiwKICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICBuYW1lOiAic3RhdGVSb290IiwKICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MTYiLAogICAgICAgIG5hbWU6ICJ0aWVyIiwKICAgICAgICB0eXBlOiAidWludDE2IiwKICAgICAgfSwKICAgIF0sCiAgICBuYW1lOiAiQmxvY2tWZXJpZmllZFYyIiwKICAgIHR5cGU6ICJldmVudCIsCiAgfSwKXTsKCmZ1bmN0aW9uIGFsZXJ0T3JnKG5vdGlmaWNhdGlvbkNsaWVudCwgbWVzc2FnZSkgewogIG5vdGlmaWNhdGlvbkNsaWVudC5zZW5kKHsKICAgIGNoYW5uZWxBbGlhczogImRpc2NvcmRfYmxvY2tzIiwKICAgIHN1YmplY3Q6ICLwn5qoIFRhaWtvTDE6IEJsb2NrVmVyaWZpZWQgQWxlcnQiLAogICAgbWVzc2FnZSwKICB9KTsKCiAgbm90aWZpY2F0aW9uQ2xpZW50LnNlbmQoewogICAgY2hhbm5lbEFsaWFzOiAidGdfdGFpa29fZ3VhcmRpYW5zIiwKICAgIHN1YmplY3Q6ICLwn5qoIFRhaWtvTDE6IEJsb2NrVmVyaWZpZWQgQWxlcnQiLAogICAgbWVzc2FnZSwKICB9KTsKfQoKYXN5bmMgZnVuY3Rpb24gZ2V0TGF0ZXN0QmxvY2tOdW1iZXIocHJvdmlkZXIpIHsKICBjb25zdCBjdXJyZW50QmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jaygibGF0ZXN0Iik7CiAgcmV0dXJuIGN1cnJlbnRCbG9jay5udW1iZXI7Cn0KCmFzeW5jIGZ1bmN0aW9uIGZldGNoTG9nc0Zyb21MMSgKICBldmVudE5hbWVzLAogIGZyb21CbG9jaywKICB0b0Jsb2NrLAogIGFkZHJlc3MsCiAgYWJpLAogIHByb3ZpZGVyLAopIHsKICBjb25zdCBpZmFjZSA9IG5ldyBldGhlcnMudXRpbHMuSW50ZXJmYWNlKGFiaSk7CiAgY29uc3QgZXZlbnRUb3BpY3MgPSBldmVudE5hbWVzLm1hcCgoZXZlbnROYW1lKSA9PgogICAgaWZhY2UuZ2V0RXZlbnRUb3BpYyhldmVudE5hbWUpLAogICk7CgogIGNvbnNvbGUubG9nKGBldmVudFRvcGljczogJHtldmVudFRvcGljc31gKTsKCiAgdHJ5IHsKICAgIGNvbnN0IGxvZ3MgPSBhd2FpdCBwcm92aWRlci5nZXRMb2dzKHsKICAgICAgYWRkcmVzcywKICAgICAgZnJvbUJsb2NrLAogICAgICB0b0Jsb2NrLAogICAgICB0b3BpY3M6IFtldmVudFRvcGljc10sCiAgICB9KTsKCiAgICByZXR1cm4gbG9ncy5tYXAoKGxvZykgPT4gaWZhY2UucGFyc2VMb2cobG9nKSk7CiAgfSBjYXRjaCAoZXJyb3IpIHsKICAgIGNvbnNvbGUuZXJyb3IoIkVycm9yIGZldGNoaW5nIEwxIGxvZ3M6IiwgZXJyb3IpOwogICAgcmV0dXJuIFtdOwogIH0KfQoKZnVuY3Rpb24gY3JlYXRlUHJvdmlkZXIoYXBpS2V5LCBhcGlTZWNyZXQsIHJlbGF5ZXJBcGlLZXksIHJlbGF5ZXJBcGlTZWNyZXQpIHsKICBjb25zdCBjbGllbnQgPSBuZXcgRGVmZW5kZXIoewogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgcmVsYXllckFwaUtleSwKICAgIHJlbGF5ZXJBcGlTZWNyZXQsCiAgfSk7CgogIHJldHVybiBjbGllbnQucmVsYXlTaWduZXIuZ2V0UHJvdmlkZXIoKTsKfQoKYXN5bmMgZnVuY3Rpb24gY2FsY3VsYXRlQmxvY2tUaW1lKHByb3ZpZGVyKSB7CiAgY29uc3QgbGF0ZXN0QmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jaygibGF0ZXN0Iik7CiAgY29uc3QgcHJldmlvdXNCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKGxhdGVzdEJsb2NrLm51bWJlciAtIDEwMCk7CgogIGNvbnN0IHRpbWVEaWZmID0gbGF0ZXN0QmxvY2sudGltZXN0YW1wIC0gcHJldmlvdXNCbG9jay50aW1lc3RhbXA7CiAgY29uc3QgYmxvY2tEaWZmID0gbGF0ZXN0QmxvY2subnVtYmVyIC0gcHJldmlvdXNCbG9jay5udW1iZXI7CgogIGNvbnN0IGJsb2NrVGltZSA9IHRpbWVEaWZmIC8gYmxvY2tEaWZmOwogIHJldHVybiBibG9ja1RpbWU7Cn0KCmV4cG9ydHMuaGFuZGxlciA9IGFzeW5jIGZ1bmN0aW9uIChldmVudCwgY29udGV4dCkgewogIGNvbnN0IHsgbm90aWZpY2F0aW9uQ2xpZW50IH0gPSBjb250ZXh0OwogIGNvbnN0IHsgYXBpS2V5LCBhcGlTZWNyZXQsIHRhaWtvTDFBcGlLZXksIHRhaWtvTDFBcGlTZWNyZXQgfSA9IGV2ZW50LnNlY3JldHM7CgogIGNvbnN0IHRhaWtvTDFQcm92aWRlciA9IGNyZWF0ZVByb3ZpZGVyKAogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgdGFpa29MMUFwaUtleSwKICAgIHRhaWtvTDFBcGlTZWNyZXQsCiAgKTsKCiAgY29uc3QgY3VycmVudEJsb2NrTnVtYmVyID0gYXdhaXQgZ2V0TGF0ZXN0QmxvY2tOdW1iZXIodGFpa29MMVByb3ZpZGVyKTsKICBjb25zdCBibG9ja1RpbWVJblNlY29uZHMgPSBhd2FpdCBjYWxjdWxhdGVCbG9ja1RpbWUodGFpa29MMVByb3ZpZGVyKTsKICBjb25zdCBibG9ja3NJbkZpdmVNaW51dGVzID0gTWF0aC5mbG9vcigoNSAqIDYwKSAvIGJsb2NrVGltZUluU2Vjb25kcyk7CgogIGNvbnN0IGZyb21CbG9jayA9IGN1cnJlbnRCbG9ja051bWJlciAtIGJsb2Nrc0luRml2ZU1pbnV0ZXM7CiAgY29uc3QgdG9CbG9jayA9IGN1cnJlbnRCbG9ja051bWJlcjsKCiAgY29uc3QgbG9ncyA9IGF3YWl0IGZldGNoTG9nc0Zyb21MMSgKICAgIFsiQmxvY2tWZXJpZmllZCIsICJCbG9ja1ZlcmlmaWVkVjIiXSwKICAgIGZyb21CbG9jaywKICAgIHRvQmxvY2ssCiAgICAiMHgwNmE5QWIyN2M3ZTIyNTVkZjE4MTVFNkNDMDE2OGQ3NzU1RmViMTlhIiwKICAgIEFCSSwKICAgIHRhaWtvTDFQcm92aWRlciwKICApOwoKICBpZiAobG9ncy5sZW5ndGggPT09IDApIHsKICAgIGFsZXJ0T3JnKAogICAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICAgIGBAZGF2aWRjYWkgQHl1ZWE3NTgzIE5vIEJsb2NrVmVyaWZpZWQgZXZlbnQgZGV0ZWN0ZWQgaW4gdGhlIGxhc3QgMzAgbWlucyBpbiBUYWlrb0wxIWAsCiAgICApOwogIH0KCiAgcmV0dXJuIHRydWU7Cn07ClBLAQIUAAoAAAAAAAAAQVBa57hUWxAAAFsQAAAIAAAAAAAAAAAAAAAAAAAAAABpbmRleC5qc1BLBQYAAAAAAQABADYAAACBEAAAAAA="},{"autotaskId":"3cabb163-79fb-432c-a90a-c111b346a209","actionId":"3cabb163-79fb-432c-a90a-c111b346a209","name":"TaikoL1: BlockProposed Alert","paused":false,"trigger":{"cron":null,"frequencyMinutes":4,"type":"schedule"},"codeDigest":"gJSTtL74IDa0ri990g/XL8plt4cMekIIJhdeceam+MY=","stackResourceId":"mystack.taiko-l-1-block-proposed-alert","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-05","encodedZippedCode":"UEsDBAoAAAAAAAAAQVAcjdf6viEAAL4hAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAiYmxvY2tJZCIsCiAgICAgICAgdHlwZTogInVpbnQyNTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJhZGRyZXNzIiwKICAgICAgICBuYW1lOiAiYXNzaWduZWRQcm92ZXIiLAogICAgICAgIHR5cGU6ICJhZGRyZXNzIiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogInVpbnQ5NiIsCiAgICAgICAgbmFtZTogImxpdmVuZXNzQm9uZCIsCiAgICAgICAgdHlwZTogInVpbnQ5NiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBjb21wb25lbnRzOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAibDFIYXNoIiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJkaWZmaWN1bHR5IiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJibG9iSGFzaCIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAiZXh0cmFEYXRhIiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJkZXBvc2l0c0hhc2giLAogICAgICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJhZGRyZXNzIiwKICAgICAgICAgICAgbmFtZTogImNvaW5iYXNlIiwKICAgICAgICAgICAgdHlwZTogImFkZHJlc3MiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDY0IiwKICAgICAgICAgICAgbmFtZTogImlkIiwKICAgICAgICAgICAgdHlwZTogInVpbnQ2NCIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MzIiLAogICAgICAgICAgICBuYW1lOiAiZ2FzTGltaXQiLAogICAgICAgICAgICB0eXBlOiAidWludDMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogInVpbnQ2NCIsCiAgICAgICAgICAgIG5hbWU6ICJ0aW1lc3RhbXAiLAogICAgICAgICAgICB0eXBlOiAidWludDY0IiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogInVpbnQ2NCIsCiAgICAgICAgICAgIG5hbWU6ICJsMUhlaWdodCIsCiAgICAgICAgICAgIHR5cGU6ICJ1aW50NjQiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDE2IiwKICAgICAgICAgICAgbmFtZTogIm1pblRpZXIiLAogICAgICAgICAgICB0eXBlOiAidWludDE2IiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJvb2wiLAogICAgICAgICAgICBuYW1lOiAiYmxvYlVzZWQiLAogICAgICAgICAgICB0eXBlOiAiYm9vbCIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogInBhcmVudE1ldGFIYXNoIiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYWRkcmVzcyIsCiAgICAgICAgICAgIG5hbWU6ICJzZW5kZXIiLAogICAgICAgICAgICB0eXBlOiAiYWRkcmVzcyIsCiAgICAgICAgICB9LAogICAgICAgIF0sCiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAic3RydWN0IFRhaWtvRGF0YS5CbG9ja01ldGFkYXRhIiwKICAgICAgICBuYW1lOiAibWV0YSIsCiAgICAgICAgdHlwZTogInR1cGxlIiwKICAgICAgfSwKICAgICAgewogICAgICAgIGNvbXBvbmVudHM6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYWRkcmVzcyIsCiAgICAgICAgICAgIG5hbWU6ICJyZWNpcGllbnQiLAogICAgICAgICAgICB0eXBlOiAiYWRkcmVzcyIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50OTYiLAogICAgICAgICAgICBuYW1lOiAiYW1vdW50IiwKICAgICAgICAgICAgdHlwZTogInVpbnQ5NiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50NjQiLAogICAgICAgICAgICBuYW1lOiAiaWQiLAogICAgICAgICAgICB0eXBlOiAidWludDY0IiwKICAgICAgICAgIH0sCiAgICAgICAgXSwKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJzdHJ1Y3QgVGFpa29EYXRhLkV0aERlcG9zaXRbXSIsCiAgICAgICAgbmFtZTogImRlcG9zaXRzUHJvY2Vzc2VkIiwKICAgICAgICB0eXBlOiAidHVwbGVbXSIsCiAgICAgIH0sCiAgICBdLAogICAgbmFtZTogIkJsb2NrUHJvcG9zZWQiLAogICAgdHlwZTogImV2ZW50IiwKICB9LAogIHsKICAgIGFub255bW91czogZmFsc2UsCiAgICBpbnB1dHM6IFsKICAgICAgewogICAgICAgIGluZGV4ZWQ6IHRydWUsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDI1NiIsCiAgICAgICAgbmFtZTogImJsb2NrSWQiLAogICAgICAgIHR5cGU6ICJ1aW50MjU2IiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IHRydWUsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAiYWRkcmVzcyIsCiAgICAgICAgbmFtZTogImFzc2lnbmVkUHJvdmVyIiwKICAgICAgICB0eXBlOiAiYWRkcmVzcyIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50OTYiLAogICAgICAgIG5hbWU6ICJsaXZlbmVzc0JvbmQiLAogICAgICAgIHR5cGU6ICJ1aW50OTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgY29tcG9uZW50czogWwogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogImwxSGFzaCIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAiZGlmZmljdWx0eSIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAiYmxvYkhhc2giLAogICAgICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogImV4dHJhRGF0YSIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAiZGVwb3NpdHNIYXNoIiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYWRkcmVzcyIsCiAgICAgICAgICAgIG5hbWU6ICJjb2luYmFzZSIsCiAgICAgICAgICAgIHR5cGU6ICJhZGRyZXNzIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogInVpbnQ2NCIsCiAgICAgICAgICAgIG5hbWU6ICJpZCIsCiAgICAgICAgICAgIHR5cGU6ICJ1aW50NjQiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDMyIiwKICAgICAgICAgICAgbmFtZTogImdhc0xpbWl0IiwKICAgICAgICAgICAgdHlwZTogInVpbnQzMiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50NjQiLAogICAgICAgICAgICBuYW1lOiAidGltZXN0YW1wIiwKICAgICAgICAgICAgdHlwZTogInVpbnQ2NCIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50NjQiLAogICAgICAgICAgICBuYW1lOiAibDFIZWlnaHQiLAogICAgICAgICAgICB0eXBlOiAidWludDY0IiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogInVpbnQxNiIsCiAgICAgICAgICAgIG5hbWU6ICJtaW5UaWVyIiwKICAgICAgICAgICAgdHlwZTogInVpbnQxNiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJib29sIiwKICAgICAgICAgICAgbmFtZTogImJsb2JVc2VkIiwKICAgICAgICAgICAgdHlwZTogImJvb2wiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJwYXJlbnRNZXRhSGFzaCIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImFkZHJlc3MiLAogICAgICAgICAgICBuYW1lOiAic2VuZGVyIiwKICAgICAgICAgICAgdHlwZTogImFkZHJlc3MiLAogICAgICAgICAgfSwKICAgICAgICBdLAogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogInN0cnVjdCBUYWlrb0RhdGEuQmxvY2tNZXRhZGF0YSIsCiAgICAgICAgbmFtZTogIm1ldGEiLAogICAgICAgIHR5cGU6ICJ0dXBsZSIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBjb21wb25lbnRzOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImFkZHJlc3MiLAogICAgICAgICAgICBuYW1lOiAicmVjaXBpZW50IiwKICAgICAgICAgICAgdHlwZTogImFkZHJlc3MiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDk2IiwKICAgICAgICAgICAgbmFtZTogImFtb3VudCIsCiAgICAgICAgICAgIHR5cGU6ICJ1aW50OTYiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDY0IiwKICAgICAgICAgICAgbmFtZTogImlkIiwKICAgICAgICAgICAgdHlwZTogInVpbnQ2NCIsCiAgICAgICAgICB9LAogICAgICAgIF0sCiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAic3RydWN0IFRhaWtvRGF0YS5FdGhEZXBvc2l0W10iLAogICAgICAgIG5hbWU6ICJkZXBvc2l0c1Byb2Nlc3NlZCIsCiAgICAgICAgdHlwZTogInR1cGxlW10iLAogICAgICB9LAogICAgXSwKICAgIG5hbWU6ICJCbG9ja1Byb3Bvc2VkVjIiLAogICAgdHlwZTogImV2ZW50IiwKICB9LApdOwoKZnVuY3Rpb24gYWxlcnRPcmcobm90aWZpY2F0aW9uQ2xpZW50LCBtZXNzYWdlKSB7CiAgbm90aWZpY2F0aW9uQ2xpZW50LnNlbmQoewogICAgY2hhbm5lbEFsaWFzOiAiZGlzY29yZF9ibG9ja3MiLAogICAgc3ViamVjdDogIvCfmqggVGFpa29MMTogQmxvY2tQcm9wb3NlZCBBbGVydCIsCiAgICBtZXNzYWdlLAogIH0pOwoKICBub3RpZmljYXRpb25DbGllbnQuc2VuZCh7CiAgICBjaGFubmVsQWxpYXM6ICJ0Z190YWlrb19ndWFyZGlhbnMiLAogICAgc3ViamVjdDogIvCfmqggVGFpa29MMTogQmxvY2tQcm9wb3NlZCBBbGVydCIsCiAgICBtZXNzYWdlLAogIH0pOwp9Cgphc3luYyBmdW5jdGlvbiBnZXRMYXRlc3RCbG9ja051bWJlcihwcm92aWRlcikgewogIGNvbnN0IGN1cnJlbnRCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKCJsYXRlc3QiKTsKICByZXR1cm4gY3VycmVudEJsb2NrLm51bWJlcjsKfQoKYXN5bmMgZnVuY3Rpb24gZmV0Y2hMb2dzRnJvbUwxKAogIGV2ZW50TmFtZXMsCiAgZnJvbUJsb2NrLAogIHRvQmxvY2ssCiAgYWRkcmVzcywKICBhYmksCiAgcHJvdmlkZXIsCikgewogIGNvbnN0IGlmYWNlID0gbmV3IGV0aGVycy51dGlscy5JbnRlcmZhY2UoYWJpKTsKCiAgY29uc3QgYWxsTG9ncyA9IFtdOwoKICBmb3IgKGNvbnN0IGV2ZW50TmFtZSBvZiBldmVudE5hbWVzKSB7CiAgICBjb25zdCBldmVudFRvcGljID0gaWZhY2UuZ2V0RXZlbnRUb3BpYyhldmVudE5hbWUpOwoKICAgIHRyeSB7CiAgICAgIGNvbnN0IGxvZ3MgPSBhd2FpdCBwcm92aWRlci5nZXRMb2dzKHsKICAgICAgICBhZGRyZXNzLAogICAgICAgIGZyb21CbG9jaywKICAgICAgICB0b0Jsb2NrLAogICAgICAgIHRvcGljczogW2V2ZW50VG9waWNdLAogICAgICB9KTsKCiAgICAgIGFsbExvZ3MucHVzaCgKICAgICAgICAuLi5sb2dzLm1hcCgobG9nKSA9PgogICAgICAgICAgaWZhY2UuZGVjb2RlRXZlbnRMb2coZXZlbnROYW1lLCBsb2cuZGF0YSwgbG9nLnRvcGljcyksCiAgICAgICAgKSwKICAgICAgKTsKICAgIH0gY2F0Y2ggKGVycm9yKSB7CiAgICAgIGNvbnNvbGUuZXJyb3IoYEVycm9yIGZldGNoaW5nIGxvZ3MgZm9yICR7ZXZlbnROYW1lfTpgLCBlcnJvcik7CiAgICB9CiAgfQoKICByZXR1cm4gYWxsTG9nczsKfQoKZnVuY3Rpb24gY3JlYXRlUHJvdmlkZXIoYXBpS2V5LCBhcGlTZWNyZXQsIHJlbGF5ZXJBcGlLZXksIHJlbGF5ZXJBcGlTZWNyZXQpIHsKICBjb25zdCBjbGllbnQgPSBuZXcgRGVmZW5kZXIoewogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgcmVsYXllckFwaUtleSwKICAgIHJlbGF5ZXJBcGlTZWNyZXQsCiAgfSk7CgogIHJldHVybiBjbGllbnQucmVsYXlTaWduZXIuZ2V0UHJvdmlkZXIoKTsKfQoKYXN5bmMgZnVuY3Rpb24gY2FsY3VsYXRlQmxvY2tUaW1lKHByb3ZpZGVyKSB7CiAgY29uc3QgbGF0ZXN0QmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jaygibGF0ZXN0Iik7CiAgY29uc3QgcHJldmlvdXNCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKGxhdGVzdEJsb2NrLm51bWJlciAtIDEwMCk7CgogIGNvbnN0IHRpbWVEaWZmID0gbGF0ZXN0QmxvY2sudGltZXN0YW1wIC0gcHJldmlvdXNCbG9jay50aW1lc3RhbXA7CiAgY29uc3QgYmxvY2tEaWZmID0gbGF0ZXN0QmxvY2subnVtYmVyIC0gcHJldmlvdXNCbG9jay5udW1iZXI7CgogIGNvbnN0IGJsb2NrVGltZSA9IHRpbWVEaWZmIC8gYmxvY2tEaWZmOwogIHJldHVybiBibG9ja1RpbWU7Cn0KCmV4cG9ydHMuaGFuZGxlciA9IGFzeW5jIGZ1bmN0aW9uIChldmVudCwgY29udGV4dCkgewogIGNvbnN0IHsgbm90aWZpY2F0aW9uQ2xpZW50IH0gPSBjb250ZXh0OwogIGNvbnN0IHsgYXBpS2V5LCBhcGlTZWNyZXQsIHRhaWtvTDFBcGlLZXksIHRhaWtvTDFBcGlTZWNyZXQgfSA9IGV2ZW50LnNlY3JldHM7CgogIGNvbnN0IHRhaWtvTDFQcm92aWRlciA9IGNyZWF0ZVByb3ZpZGVyKAogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgdGFpa29MMUFwaUtleSwKICAgIHRhaWtvTDFBcGlTZWNyZXQsCiAgKTsKCiAgY29uc3QgY3VycmVudEJsb2NrTnVtYmVyID0gYXdhaXQgZ2V0TGF0ZXN0QmxvY2tOdW1iZXIodGFpa29MMVByb3ZpZGVyKTsKICBjb25zdCBibG9ja1RpbWVJblNlY29uZHMgPSBhd2FpdCBjYWxjdWxhdGVCbG9ja1RpbWUodGFpa29MMVByb3ZpZGVyKTsKICBjb25zdCBibG9ja3NJbkZpdmVNaW51dGVzID0gTWF0aC5mbG9vcigoNSAqIDYwKSAvIGJsb2NrVGltZUluU2Vjb25kcyk7CgogIGNvbnN0IGZyb21CbG9jayA9IGN1cnJlbnRCbG9ja051bWJlciAtIGJsb2Nrc0luRml2ZU1pbnV0ZXM7CiAgY29uc3QgdG9CbG9jayA9IGN1cnJlbnRCbG9ja051bWJlcjsKCiAgY29uc3QgbG9ncyA9IGF3YWl0IGZldGNoTG9nc0Zyb21MMSgKICAgIFsiQmxvY2tQcm9wb3NlZCIsICJCbG9ja1Byb3Bvc2VkVjIiXSwKICAgIGZyb21CbG9jaywKICAgIHRvQmxvY2ssCiAgICAiMHgwNmE5QWIyN2M3ZTIyNTVkZjE4MTVFNkNDMDE2OGQ3NzU1RmViMTlhIiwKICAgIEFCSSwKICAgIHRhaWtvTDFQcm92aWRlciwKICApOwoKICBjb25zb2xlLmxvZyhgTG9ncyBmb3VuZDogJHtsb2dzLmxlbmd0aH1gKTsKCiAgaWYgKGxvZ3MubGVuZ3RoID09PSAwKSB7CiAgICBhbGVydE9yZygKICAgICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgICBgTm8gQmxvY2tQcm9wb3NlZCBldmVudCBkZXRlY3RlZCBpbiB0aGUgbGFzdCAxNSBtaW5zIG9uIFRhaWtvTDEhYCwKICAgICk7CiAgfQoKICByZXR1cm4gdHJ1ZTsKfTsKUEsBAhQACgAAAAAAAABBUByN1/q+IQAAviEAAAgAAAAAAAAAAAAAAAAAAAAAAGluZGV4LmpzUEsFBgAAAAABAAEANgAAAOQhAAAAAA=="}]},"contracts":{"removed":[],"created":[],"updated":[]},"relayers":{"removed":[],"created":[],"updated":[],"relayerKeys":{"removed":[],"created":[],"updated":[]}},"notifications":{"removed":[],"created":[],"updated":[]},"secrets":{"removed":[],"created":[],"updated":[]},"blockExplorerApiKeys":{"removed":[],"created":[],"updated":[]},"forkedNetworks":{"removed":[],"created":[],"updated":[]},"privateNetworks":{"removed":[],"created":[],"updated":[]}} +{"stack":"mystack","timestamp":"2024-09-18T21:48:09.627Z","monitors":{"removed":[],"created":[],"updated":[{"skipABIValidation":true,"alertThreshold":null,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"Defender Monitor: TaikoL1: Pause/Unpause triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]}],"abi":"[{\"type\":\"error\",\"name\":\"AM_ADDRESS_ALREADY_SET\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"spender\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"approved\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ApprovalForAll\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"operationId\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"approvalBits\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"minGuardiansReached\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Authorized\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"authorized\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"BB_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_MINT_DISALLOWED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_CANNOT_RECEIVE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_BURN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INSUFFICIENT_GAS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CONTEXT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_GAS_LIMIT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_VALUE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_MESSAGE_NOT_SENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_OUT_OF_ETH_QUOTA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PROOF_TOO_LARGE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_RETRY_FAILED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_SIGNAL_NOT_RECEIVED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockProposed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"assignedProver\",\"indexed\":true},{\"type\":\"uint96\",\"name\":\"livenessBond\",\"indexed\":false},{\"type\":\"tuple\",\"name\":\"meta\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"depositsProcessed\",\"indexed\":false,\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockVerified\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"stateRoot\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondCredited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondDebited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenChanged\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btokenOld\",\"indexed\":false},{\"type\":\"address\",\"name\":\"btokenNew\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"CLOCK_MODE\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"CalldataTxList\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"txList\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ChainDataSynced\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"kind\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"data\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ConflictingProofs\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"guardian\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"currentProofHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"newProofHash\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"provingPaused\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"DOMAIN_SEPARATOR\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"fromDelegate\",\"indexed\":true},{\"type\":\"address\",\"name\":\"toDelegate\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateVotesChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegate\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"previousBalance\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"newBalance\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EIP712DomainChanged\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ETH_TRANSFER_FAILED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EtherPaymentFailed\",\"inputs\":[{\"type\":\"address\",\"name\":\"to\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"maxGas\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"FUNC_NOT_IMPLEMENTED\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"GAS_OVERHEAD\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"GAS_RESERVE\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN_SET\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_MIN_GUARDIANS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardianApproval\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false},{\"type\":\"bytes\",\"name\":\"proofData\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardiansUpdated\",\"inputs\":[{\"type\":\"uint32\",\"name\":\"version\",\"indexed\":false},{\"type\":\"address[]\",\"name\":\"guardians\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_EXPIRED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"error\",\"name\":\"INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"L1_ALREADY_CONTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_ALREADY_PROVED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_AVAILABLE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOCK_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_CANNOT_CONTEST\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_BLOCK_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_GENESIS_HASH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TIER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TRANSITION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_NOT_ASSIGNED_PROVER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_PROVING_PAUSED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_RECEIVE_DISABLED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TOO_MANY_BLOCKS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TRANSITION_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_PARENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_TRANSITION_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_ACCOUNT_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_INCLUSION_PROOF\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"LocalReportCheckToggled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"checkLocalEnclaveReport\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"MAX_GAS_PAYING_PROVER\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"MIN_MIGRATION_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageProcessed\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"stats\",\"indexed\":false,\"components\":[{\"type\":\"uint32\",\"name\":\"gasUsedInFeeCalc\"},{\"type\":\"uint32\",\"name\":\"proofSize\"},{\"type\":\"uint32\",\"name\":\"numCacheOps\"},{\"type\":\"bool\",\"name\":\"processedByRelayer\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageStatusChanged\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"uint8\",\"name\":\"status\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigratedTo\",\"inputs\":[{\"type\":\"address\",\"name\":\"fromToken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigrationStatusChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"inbound\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrEnclaveUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrEnclave\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrSignerUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrSigner\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingAutoPauseEnabled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"enabled\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingPaused\",\"inputs\":[{\"type\":\"bool\",\"name\":\"paused\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"QeIdentityConfigured\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"indexed\":false,\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}]},{\"type\":\"error\",\"name\":\"REENTRANT_CALL\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"RELAYER_MAX_PROOF_BYTES\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"error\",\"name\":\"RESOLVER_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_INVALID_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_UNEXPECTED_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_ZERO_ADDR\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"name\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumRemoved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"SGX_ALREADY_ATTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_ATTESTATION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_INSTANCE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_RA_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_EMPTY_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_HOPS_WITH_LOOP\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_LAST_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_MID_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_STATE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_SIGNAL_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_UNAUTHORIZED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"SignalSent\",\"inputs\":[{\"type\":\"address\",\"name\":\"app\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"slot\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"StateVariablesUpdated\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"slotB\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"error\",\"name\":\"TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"TT_INVALID_PARAM\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TcbInfoJsonConfigured\",\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"indexed\":false,\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"canonicalChainId\",\"indexed\":false},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferBatch\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256[]\",\"name\":\"ids\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"values\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferSingle\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionContested\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"contester\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"contestBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionProved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"validityBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"URI\",\"inputs\":[{\"type\":\"string\",\"name\":\"value\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_DATA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_ECDSA_SIGNATURE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEAUTHDATA_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEREPORT_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_MEMBER_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_UNSUPPORT_CERTIFICATION_TYPE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_BTOKEN_BLACKLISTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_CTOKEN_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INSUFFICIENT_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INTERFACE_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_AMOUNT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_CTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_NEW_BTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TO_ADDR\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_LAST_MIGRATION_TOO_CLOSE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_TOKEN_ARRAY_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDR_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_VALUE\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"allowance\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"approvals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"bytes32\",\"name\":\"proofHash\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"approvalBits\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\",\"name\":\"approved_\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"authorize\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_addr\"},{\"type\":\"bool\",\"name\":\"_authorize\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"id\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOfBatch\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"accounts\"},{\"type\":\"uint256[]\",\"name\":\"ids\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"batchTransfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"recipients\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"bondBalanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_user\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"btokenDenylist\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"denied\"}]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"canonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"canonicalToBridged\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btoken\"}]},{\"type\":\"function\",\"name\":\"changeBridgedToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctoken\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"address\",\"name\":\"_btokenNew\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btokenOld_\"}]},{\"type\":\"function\",\"name\":\"changeMigrationStatus\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_migratingAddress\"},{\"type\":\"bool\",\"name\":\"_migratingInbound\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"checkLocalEnclaveReport\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"checkpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint32\",\"name\":\"pos\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint32\",\"name\":\"fromBlock\"},{\"type\":\"uint224\",\"name\":\"votes\"}]}]},{\"type\":\"function\",\"name\":\"clock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint48\"}]},{\"type\":\"function\",\"name\":\"configureQeIdentityJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"configureTcbInfoJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"context\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"name\":\"ctx_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"}]}]},{\"type\":\"function\",\"name\":\"decimals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint8\"}]},{\"type\":\"function\",\"name\":\"decodeCert\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"der\"},{\"type\":\"bool\",\"name\":\"isPckCert\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"tuple\",\"name\":\"cert\",\"components\":[{\"type\":\"uint256\",\"name\":\"notBefore\"},{\"type\":\"uint256\",\"name\":\"notAfter\"},{\"type\":\"bytes\",\"name\":\"serialNumber\"},{\"type\":\"bytes\",\"name\":\"tbsCertificate\"},{\"type\":\"bytes\",\"name\":\"pubKey\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bool\",\"name\":\"isPck\"},{\"type\":\"tuple\",\"name\":\"pck\",\"components\":[{\"type\":\"string\",\"name\":\"commonName\"},{\"type\":\"string\",\"name\":\"issuerName\"},{\"type\":\"tuple\",\"name\":\"sgxExtension\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint256[]\",\"name\":\"sgxTcbCompSvnArr\"}]}]}]}]},{\"type\":\"function\",\"name\":\"decreaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"subtractedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"delegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegateBySig\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"},{\"type\":\"uint256\",\"name\":\"nonce\"},{\"type\":\"uint256\",\"name\":\"expiry\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegates\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"depositBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"eip712Domain\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes1\",\"name\":\"fields\"},{\"type\":\"string\",\"name\":\"name\"},{\"type\":\"string\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"verifyingContract\"},{\"type\":\"bytes32\",\"name\":\"salt\"},{\"type\":\"uint256[]\",\"name\":\"extensions\"}]},{\"type\":\"function\",\"name\":\"enableProvingAutoPause\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"enableTaikoTokenAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"failMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getApproved\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"blk_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]}]},{\"type\":\"function\",\"name\":\"getConfig\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"uint64\",\"name\":\"blockMaxProposals\"},{\"type\":\"uint64\",\"name\":\"blockRingBufferSize\"},{\"type\":\"uint64\",\"name\":\"maxBlocksToVerify\"},{\"type\":\"uint32\",\"name\":\"blockMaxGasLimit\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint8\",\"name\":\"stateRootSyncInternal\"},{\"type\":\"bool\",\"name\":\"checkEOAForCalldataDA\"}]}]},{\"type\":\"function\",\"name\":\"getLastSyncedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getLastVerifiedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getMessageMinGasLimit\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"dataLength\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"getMinTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"uint16\"}]},{\"type\":\"function\",\"name\":\"getPastTotalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getPastVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getSignalSlot\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"getStateVariables\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"getSyncedChainData\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"chainData_\"}]},{\"type\":\"function\",\"name\":\"getTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint16\",\"name\":\"_tierId\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"verifierName\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint24\",\"name\":\"cooldownWindow\"},{\"type\":\"uint16\",\"name\":\"provingWindow\"},{\"type\":\"uint8\",\"name\":\"maxBlocksToVerifyPerProof\"}]}]},{\"type\":\"function\",\"name\":\"getTierIds\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint16[]\",\"name\":\"tiers_\"}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"uint32\",\"name\":\"_tid\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_parentHash\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getVerifiedBlockProver\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"prover_\"}]},{\"type\":\"function\",\"name\":\"getVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"guardianIds\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"guardian\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"id\"}]},{\"type\":\"function\",\"name\":\"guardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"hashAssignment\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_assignment\",\"components\":[{\"type\":\"address\",\"name\":\"feeToken\"},{\"type\":\"uint64\",\"name\":\"expiry\"},{\"type\":\"uint64\",\"name\":\"maxBlockId\"},{\"type\":\"uint64\",\"name\":\"maxProposedIn\"},{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"tuple[]\",\"name\":\"tierFees\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint128\",\"name\":\"fee\"}]},{\"type\":\"bytes\",\"name\":\"signature\"}]},{\"type\":\"address\",\"name\":\"_taikoL1Address\"},{\"type\":\"address\",\"name\":\"_blockProposer\"},{\"type\":\"address\",\"name\":\"_assignedProver\"},{\"type\":\"bytes32\",\"name\":\"_blobHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"hashMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"impl\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"inNonReentrant\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"increaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"addedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"bytes32\",\"name\":\"_genesisBlockHash\"},{\"type\":\"bool\",\"name\":\"_toPause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"sigVerifyLibAddr\"},{\"type\":\"address\",\"name\":\"pemCertLibAddr\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"uint8\",\"name\":\"_decimals\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init2\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"isApprovedForAll\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"address\",\"name\":\"operator\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isAuthorized\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"addr\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"authorized\"}]},{\"type\":\"function\",\"name\":\"isChainDataSynced\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isDestChainEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"enabled_\"},{\"type\":\"address\",\"name\":\"destBridge_\"}]},{\"type\":\"function\",\"name\":\"isMessageFailed\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isSignalSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"lastMigrationStart\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"timestamp\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"latestProofHash\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"blockId\"}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"hash\"}]},{\"type\":\"function\",\"name\":\"messageStatus\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status\"}]},{\"type\":\"function\",\"name\":\"migratingAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"migratingInbound\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"minGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mintBatch\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256[]\",\"name\":\"_tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"_amounts\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"nextMessageId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nonces\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"numCheckpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"numGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"onBlockProposed\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_blk\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]},{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onERC1155BatchReceived\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256[]\"},{\"type\":\"uint256[]\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC1155Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC721Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onMessageInvocation\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onMessageRecalled\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"ownerOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseProving\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_pause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseTaikoProving\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pemCertLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"permit\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"uint256\",\"name\":\"deadline\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"processMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status_\"},{\"type\":\"uint8\",\"name\":\"reason_\"}]},{\"type\":\"function\",\"name\":\"proposeBlock\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_params\"},{\"type\":\"bytes\",\"name\":\"_txList\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"meta_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"deposits_\",\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"function\",\"name\":\"proveBlock\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes\",\"name\":\"_input\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"proveSignalReceived\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"numCacheOps_\"}]},{\"type\":\"function\",\"name\":\"provingAutoPauseEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"qeIdentity\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"}]},{\"type\":\"function\",\"name\":\"recallMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"removeRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"retryMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bool\",\"name\":\"_isLastAttempt\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeBatchTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256[]\",\"name\":\"ids\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"id\"},{\"type\":\"uint256\",\"name\":\"amount\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"selfDelegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_anyToken\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sendMessage\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash_\"},{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendSignal\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256[]\",\"name\":\"tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256\",\"name\":\"amount\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"serialNumIsRevoked\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"idx\"},{\"type\":\"bytes\",\"name\":\"serialNum\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"revoked\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setApprovalForAll\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"operator\"},{\"type\":\"bool\",\"name\":\"approved\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setGuardians\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_newGuardians\"},{\"type\":\"uint8\",\"name\":\"_minGuardians\"},{\"type\":\"bool\",\"name\":\"_clearData\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrEnclave\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrEnclave\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrSigner\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrSigner\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sigVerifyLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"signalForChainData\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"signalForFailedMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"source\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"splitCertificateChain\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"pemChain\"},{\"type\":\"uint256\",\"name\":\"size\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"bytes[]\",\"name\":\"certs\"}]},{\"type\":\"function\",\"name\":\"srcChainId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"srcToken\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"state\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"__reserve1\"},{\"type\":\"tuple\",\"name\":\"slotA\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"name\":\"slotB\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"supportsInterface\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes4\",\"name\":\"_interfaceId\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"syncChainData\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"tcbInfo\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"}],\"outputs\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"}]},{\"type\":\"function\",\"name\":\"toggleLocalReportCheck\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"tokenURI\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"topBlockId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"kind\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId\"}]},{\"type\":\"function\",\"name\":\"totalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"transfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"trustedUserMrEnclave\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"enclave\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"trustedUserMrSigner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"signer\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"uri\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"verifyAttestation\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"}]},{\"type\":\"function\",\"name\":\"verifyBlocks\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_maxBlocksToVerify\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyES256Signature\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"tbs\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bytes\",\"name\":\"publicKey\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"sigValid\"}]},{\"type\":\"function\",\"name\":\"verifyParsedQuote\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"v3quote\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"bool\"},{\"type\":\"bytes\"}]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifySignalReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"version\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"withdrawBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"withdrawTaikoToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"constructor\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"es256Verifier\"}]}]","addresses":["0x02772b7B3a5Bea0141C993Dbb8D0733C19F46169","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x11A9ebA17EbF92b40fcf9a640Ebbc47Db6fBeab0","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0x39E4C1214e733639d059979079A151911e42791d","0x47bB416ee947fE4a4b655011aF7d6E3A1B80E6e9","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0x579f40D0BE111b823962043702cabe6Aaa290780","0x67281b15aee4d6b805bc755e439abd524dd8da8d","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0xa25e645ff9897b0282e5f17d36de5bca4ec21d6e","0xaf145913EA4a56BE22E120ED9C24589659881702","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0xc4096E9ff1526Bd1840B65e9f45695135aC12De7","0xcc5d488073FA918cBbd73B9A523F3858C4de7372","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC"]}],"createdAt":"2024-08-27T09:44:01.744Z","subscriberId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","name":"TaikoL1: Pause/Unpause","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","blockWatcherId":"mainnet-6","paused":false,"stackResourceId":"mystack.taiko-l-1-pause-unpause","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"LOW","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet SGX Prover triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceAdded(uint256,address,address,uint256)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceDeleted(uint256,address)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[{"functionSignature":"verifyProof((bytes32,bytes32,address,uint64,bool,bool,address),(bytes32,bytes32,bytes32,bytes32),(uint16,bytes))","expression":null}],"eventConditions":[]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]}]","addresses":["0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81"]}],"createdAt":"2024-05-02T14:09:42.804Z","subscriberId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","name":"Taiko Mainnet SGX Prover","network":"mainnet","riskCategory":"TECHNICAL","monitorId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-sgx-prover","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Address Managers triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AddressSet(uint64,bytes32,address,address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x579f40D0BE111b823962043702cabe6Aaa290780"]}],"createdAt":"2024-05-02T14:00:18.874Z","subscriberId":"3919cb83-487f-4432-88fa-33bbe4361fce","name":"Taiko Mainnet Address Managers","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"3919cb83-487f-4432-88fa-33bbe4361fce","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-address-managers","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Essential Contracts triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AdminChanged(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"BeaconUpgraded(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Initialized(uint8)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferStarted(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferred(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Upgraded(address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0xaf145913EA4a56BE22E120ED9C24589659881702","0x579f40D0BE111b823962043702cabe6Aaa290780","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3"]}],"createdAt":"2024-05-02T13:49:54.192Z","subscriberId":"67a53521-3d4a-4de4-92ab-ede82cc45644","name":"Taiko Mainnet Essential Contracts","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"67a53521-3d4a-4de4-92ab-ede82cc45644","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-essential-contracts","type":"BLOCK"}]},"actions":{"removed":[],"created":[],"updated":[]},"contracts":{"removed":[],"created":[],"updated":[]},"relayers":{"removed":[],"created":[],"updated":[],"relayerKeys":{"removed":[],"created":[],"updated":[]}},"notifications":{"removed":[],"created":[],"updated":[]},"secrets":{"removed":[],"created":[],"updated":[]},"blockExplorerApiKeys":{"removed":[],"created":[],"updated":[]},"forkedNetworks":{"removed":[],"created":[],"updated":[]},"privateNetworks":{"removed":[],"created":[],"updated":[]}} +{"stack":"mystack","timestamp":"2024-09-18T21:51:21.150Z","monitors":{"removed":[],"created":[],"updated":[{"skipABIValidation":true,"alertThreshold":null,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"Defender Monitor: TaikoL1: Pause/Unpause triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]}],"abi":"[{\"type\":\"error\",\"name\":\"AM_ADDRESS_ALREADY_SET\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"spender\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"approved\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ApprovalForAll\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"operationId\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"approvalBits\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"minGuardiansReached\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Authorized\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"authorized\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"BB_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_MINT_DISALLOWED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_CANNOT_RECEIVE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_BURN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INSUFFICIENT_GAS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CONTEXT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_GAS_LIMIT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_VALUE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_MESSAGE_NOT_SENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_OUT_OF_ETH_QUOTA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PROOF_TOO_LARGE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_RETRY_FAILED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_SIGNAL_NOT_RECEIVED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockProposed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"assignedProver\",\"indexed\":true},{\"type\":\"uint96\",\"name\":\"livenessBond\",\"indexed\":false},{\"type\":\"tuple\",\"name\":\"meta\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"depositsProcessed\",\"indexed\":false,\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockVerified\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"stateRoot\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondCredited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondDebited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenChanged\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btokenOld\",\"indexed\":false},{\"type\":\"address\",\"name\":\"btokenNew\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"CLOCK_MODE\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"CalldataTxList\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"txList\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ChainDataSynced\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"kind\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"data\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ConflictingProofs\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"guardian\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"currentProofHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"newProofHash\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"provingPaused\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"DOMAIN_SEPARATOR\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"fromDelegate\",\"indexed\":true},{\"type\":\"address\",\"name\":\"toDelegate\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateVotesChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegate\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"previousBalance\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"newBalance\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EIP712DomainChanged\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ETH_TRANSFER_FAILED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EtherPaymentFailed\",\"inputs\":[{\"type\":\"address\",\"name\":\"to\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"maxGas\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"FUNC_NOT_IMPLEMENTED\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"GAS_OVERHEAD\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"GAS_RESERVE\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN_SET\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_MIN_GUARDIANS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardianApproval\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false},{\"type\":\"bytes\",\"name\":\"proofData\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardiansUpdated\",\"inputs\":[{\"type\":\"uint32\",\"name\":\"version\",\"indexed\":false},{\"type\":\"address[]\",\"name\":\"guardians\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_EXPIRED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"error\",\"name\":\"INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"L1_ALREADY_CONTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_ALREADY_PROVED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_AVAILABLE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOCK_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_CANNOT_CONTEST\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_BLOCK_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_GENESIS_HASH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TIER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TRANSITION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_NOT_ASSIGNED_PROVER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_PROVING_PAUSED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_RECEIVE_DISABLED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TOO_MANY_BLOCKS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TRANSITION_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_PARENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_TRANSITION_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_ACCOUNT_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_INCLUSION_PROOF\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"LocalReportCheckToggled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"checkLocalEnclaveReport\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"MAX_GAS_PAYING_PROVER\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"MIN_MIGRATION_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageProcessed\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"stats\",\"indexed\":false,\"components\":[{\"type\":\"uint32\",\"name\":\"gasUsedInFeeCalc\"},{\"type\":\"uint32\",\"name\":\"proofSize\"},{\"type\":\"uint32\",\"name\":\"numCacheOps\"},{\"type\":\"bool\",\"name\":\"processedByRelayer\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageStatusChanged\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"uint8\",\"name\":\"status\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigratedTo\",\"inputs\":[{\"type\":\"address\",\"name\":\"fromToken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigrationStatusChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"inbound\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrEnclaveUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrEnclave\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrSignerUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrSigner\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingAutoPauseEnabled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"enabled\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingPaused\",\"inputs\":[{\"type\":\"bool\",\"name\":\"paused\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"QeIdentityConfigured\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"indexed\":false,\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}]},{\"type\":\"error\",\"name\":\"REENTRANT_CALL\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"RELAYER_MAX_PROOF_BYTES\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"error\",\"name\":\"RESOLVER_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_INVALID_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_UNEXPECTED_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_ZERO_ADDR\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"name\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumRemoved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"SGX_ALREADY_ATTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_ATTESTATION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_INSTANCE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_RA_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_EMPTY_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_HOPS_WITH_LOOP\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_LAST_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_MID_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_STATE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_SIGNAL_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_UNAUTHORIZED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"SignalSent\",\"inputs\":[{\"type\":\"address\",\"name\":\"app\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"slot\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"StateVariablesUpdated\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"slotB\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"error\",\"name\":\"TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"TT_INVALID_PARAM\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TcbInfoJsonConfigured\",\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"indexed\":false,\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"canonicalChainId\",\"indexed\":false},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferBatch\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256[]\",\"name\":\"ids\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"values\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferSingle\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionContested\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"contester\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"contestBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionProved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"validityBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"URI\",\"inputs\":[{\"type\":\"string\",\"name\":\"value\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_DATA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_ECDSA_SIGNATURE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEAUTHDATA_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEREPORT_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_MEMBER_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_UNSUPPORT_CERTIFICATION_TYPE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_BTOKEN_BLACKLISTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_CTOKEN_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INSUFFICIENT_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INTERFACE_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_AMOUNT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_CTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_NEW_BTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TO_ADDR\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_LAST_MIGRATION_TOO_CLOSE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_TOKEN_ARRAY_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDR_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_VALUE\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"allowance\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"approvals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"bytes32\",\"name\":\"proofHash\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"approvalBits\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\",\"name\":\"approved_\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"authorize\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_addr\"},{\"type\":\"bool\",\"name\":\"_authorize\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"id\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOfBatch\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"accounts\"},{\"type\":\"uint256[]\",\"name\":\"ids\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"batchTransfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"recipients\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"bondBalanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_user\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"btokenDenylist\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"denied\"}]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"canonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"canonicalToBridged\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btoken\"}]},{\"type\":\"function\",\"name\":\"changeBridgedToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctoken\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"address\",\"name\":\"_btokenNew\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btokenOld_\"}]},{\"type\":\"function\",\"name\":\"changeMigrationStatus\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_migratingAddress\"},{\"type\":\"bool\",\"name\":\"_migratingInbound\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"checkLocalEnclaveReport\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"checkpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint32\",\"name\":\"pos\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint32\",\"name\":\"fromBlock\"},{\"type\":\"uint224\",\"name\":\"votes\"}]}]},{\"type\":\"function\",\"name\":\"clock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint48\"}]},{\"type\":\"function\",\"name\":\"configureQeIdentityJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"configureTcbInfoJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"context\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"name\":\"ctx_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"}]}]},{\"type\":\"function\",\"name\":\"decimals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint8\"}]},{\"type\":\"function\",\"name\":\"decodeCert\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"der\"},{\"type\":\"bool\",\"name\":\"isPckCert\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"tuple\",\"name\":\"cert\",\"components\":[{\"type\":\"uint256\",\"name\":\"notBefore\"},{\"type\":\"uint256\",\"name\":\"notAfter\"},{\"type\":\"bytes\",\"name\":\"serialNumber\"},{\"type\":\"bytes\",\"name\":\"tbsCertificate\"},{\"type\":\"bytes\",\"name\":\"pubKey\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bool\",\"name\":\"isPck\"},{\"type\":\"tuple\",\"name\":\"pck\",\"components\":[{\"type\":\"string\",\"name\":\"commonName\"},{\"type\":\"string\",\"name\":\"issuerName\"},{\"type\":\"tuple\",\"name\":\"sgxExtension\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint256[]\",\"name\":\"sgxTcbCompSvnArr\"}]}]}]}]},{\"type\":\"function\",\"name\":\"decreaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"subtractedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"delegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegateBySig\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"},{\"type\":\"uint256\",\"name\":\"nonce\"},{\"type\":\"uint256\",\"name\":\"expiry\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegates\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"depositBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"eip712Domain\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes1\",\"name\":\"fields\"},{\"type\":\"string\",\"name\":\"name\"},{\"type\":\"string\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"verifyingContract\"},{\"type\":\"bytes32\",\"name\":\"salt\"},{\"type\":\"uint256[]\",\"name\":\"extensions\"}]},{\"type\":\"function\",\"name\":\"enableProvingAutoPause\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"enableTaikoTokenAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"failMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getApproved\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"blk_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]}]},{\"type\":\"function\",\"name\":\"getConfig\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"uint64\",\"name\":\"blockMaxProposals\"},{\"type\":\"uint64\",\"name\":\"blockRingBufferSize\"},{\"type\":\"uint64\",\"name\":\"maxBlocksToVerify\"},{\"type\":\"uint32\",\"name\":\"blockMaxGasLimit\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint8\",\"name\":\"stateRootSyncInternal\"},{\"type\":\"bool\",\"name\":\"checkEOAForCalldataDA\"}]}]},{\"type\":\"function\",\"name\":\"getLastSyncedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getLastVerifiedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getMessageMinGasLimit\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"dataLength\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"getMinTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"uint16\"}]},{\"type\":\"function\",\"name\":\"getPastTotalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getPastVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getSignalSlot\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"getStateVariables\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"getSyncedChainData\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"chainData_\"}]},{\"type\":\"function\",\"name\":\"getTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint16\",\"name\":\"_tierId\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"verifierName\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint24\",\"name\":\"cooldownWindow\"},{\"type\":\"uint16\",\"name\":\"provingWindow\"},{\"type\":\"uint8\",\"name\":\"maxBlocksToVerifyPerProof\"}]}]},{\"type\":\"function\",\"name\":\"getTierIds\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint16[]\",\"name\":\"tiers_\"}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"uint32\",\"name\":\"_tid\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_parentHash\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getVerifiedBlockProver\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"prover_\"}]},{\"type\":\"function\",\"name\":\"getVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"guardianIds\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"guardian\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"id\"}]},{\"type\":\"function\",\"name\":\"guardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"hashAssignment\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_assignment\",\"components\":[{\"type\":\"address\",\"name\":\"feeToken\"},{\"type\":\"uint64\",\"name\":\"expiry\"},{\"type\":\"uint64\",\"name\":\"maxBlockId\"},{\"type\":\"uint64\",\"name\":\"maxProposedIn\"},{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"tuple[]\",\"name\":\"tierFees\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint128\",\"name\":\"fee\"}]},{\"type\":\"bytes\",\"name\":\"signature\"}]},{\"type\":\"address\",\"name\":\"_taikoL1Address\"},{\"type\":\"address\",\"name\":\"_blockProposer\"},{\"type\":\"address\",\"name\":\"_assignedProver\"},{\"type\":\"bytes32\",\"name\":\"_blobHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"hashMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"impl\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"inNonReentrant\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"increaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"addedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"bytes32\",\"name\":\"_genesisBlockHash\"},{\"type\":\"bool\",\"name\":\"_toPause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"sigVerifyLibAddr\"},{\"type\":\"address\",\"name\":\"pemCertLibAddr\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"uint8\",\"name\":\"_decimals\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init2\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"isApprovedForAll\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"address\",\"name\":\"operator\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isAuthorized\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"addr\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"authorized\"}]},{\"type\":\"function\",\"name\":\"isChainDataSynced\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isDestChainEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"enabled_\"},{\"type\":\"address\",\"name\":\"destBridge_\"}]},{\"type\":\"function\",\"name\":\"isMessageFailed\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isSignalSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"lastMigrationStart\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"timestamp\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"latestProofHash\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"blockId\"}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"hash\"}]},{\"type\":\"function\",\"name\":\"messageStatus\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status\"}]},{\"type\":\"function\",\"name\":\"migratingAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"migratingInbound\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"minGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mintBatch\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256[]\",\"name\":\"_tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"_amounts\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"nextMessageId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nonces\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"numCheckpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"numGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"onBlockProposed\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_blk\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]},{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onERC1155BatchReceived\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256[]\"},{\"type\":\"uint256[]\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC1155Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC721Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onMessageInvocation\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onMessageRecalled\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"ownerOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseProving\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_pause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseTaikoProving\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pemCertLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"permit\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"uint256\",\"name\":\"deadline\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"processMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status_\"},{\"type\":\"uint8\",\"name\":\"reason_\"}]},{\"type\":\"function\",\"name\":\"proposeBlock\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_params\"},{\"type\":\"bytes\",\"name\":\"_txList\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"meta_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"deposits_\",\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"function\",\"name\":\"proveBlock\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes\",\"name\":\"_input\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"proveSignalReceived\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"numCacheOps_\"}]},{\"type\":\"function\",\"name\":\"provingAutoPauseEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"qeIdentity\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"}]},{\"type\":\"function\",\"name\":\"recallMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"removeRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"retryMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bool\",\"name\":\"_isLastAttempt\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeBatchTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256[]\",\"name\":\"ids\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"id\"},{\"type\":\"uint256\",\"name\":\"amount\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"selfDelegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_anyToken\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sendMessage\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash_\"},{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendSignal\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256[]\",\"name\":\"tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256\",\"name\":\"amount\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"serialNumIsRevoked\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"idx\"},{\"type\":\"bytes\",\"name\":\"serialNum\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"revoked\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setApprovalForAll\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"operator\"},{\"type\":\"bool\",\"name\":\"approved\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setGuardians\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_newGuardians\"},{\"type\":\"uint8\",\"name\":\"_minGuardians\"},{\"type\":\"bool\",\"name\":\"_clearData\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrEnclave\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrEnclave\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrSigner\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrSigner\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sigVerifyLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"signalForChainData\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"signalForFailedMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"source\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"splitCertificateChain\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"pemChain\"},{\"type\":\"uint256\",\"name\":\"size\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"bytes[]\",\"name\":\"certs\"}]},{\"type\":\"function\",\"name\":\"srcChainId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"srcToken\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"state\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"__reserve1\"},{\"type\":\"tuple\",\"name\":\"slotA\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"name\":\"slotB\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"supportsInterface\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes4\",\"name\":\"_interfaceId\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"syncChainData\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"tcbInfo\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"}],\"outputs\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"}]},{\"type\":\"function\",\"name\":\"toggleLocalReportCheck\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"tokenURI\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"topBlockId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"kind\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId\"}]},{\"type\":\"function\",\"name\":\"totalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"transfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"trustedUserMrEnclave\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"enclave\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"trustedUserMrSigner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"signer\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"uri\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"verifyAttestation\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"}]},{\"type\":\"function\",\"name\":\"verifyBlocks\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_maxBlocksToVerify\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyES256Signature\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"tbs\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bytes\",\"name\":\"publicKey\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"sigValid\"}]},{\"type\":\"function\",\"name\":\"verifyParsedQuote\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"v3quote\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"bool\"},{\"type\":\"bytes\"}]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifySignalReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"version\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"withdrawBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"withdrawTaikoToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"constructor\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"es256Verifier\"}]}]","addresses":["0x02772b7B3a5Bea0141C993Dbb8D0733C19F46169","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x11A9ebA17EbF92b40fcf9a640Ebbc47Db6fBeab0","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0x39E4C1214e733639d059979079A151911e42791d","0x47bB416ee947fE4a4b655011aF7d6E3A1B80E6e9","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0x579f40D0BE111b823962043702cabe6Aaa290780","0x67281b15aee4d6b805bc755e439abd524dd8da8d","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0xa25e645ff9897b0282e5f17d36de5bca4ec21d6e","0xaf145913EA4a56BE22E120ED9C24589659881702","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0xc4096E9ff1526Bd1840B65e9f45695135aC12De7","0xcc5d488073FA918cBbd73B9A523F3858C4de7372","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC"]}],"createdAt":"2024-08-27T09:44:01.744Z","subscriberId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","name":"TaikoL1: Pause/Unpause","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","blockWatcherId":"mainnet-6","paused":false,"stackResourceId":"mystack.taiko-l-1-pause-unpause","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"LOW","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet SGX Prover triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceAdded(uint256,address,address,uint256)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceDeleted(uint256,address)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[{"functionSignature":"verifyProof((bytes32,bytes32,address,uint64,bool,bool,address),(bytes32,bytes32,bytes32,bytes32),(uint16,bytes))","expression":null}],"eventConditions":[]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]}]","addresses":["0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81"]}],"createdAt":"2024-05-02T14:09:42.804Z","subscriberId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","name":"Taiko Mainnet SGX Prover","network":"mainnet","riskCategory":"TECHNICAL","monitorId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-sgx-prover","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Address Managers triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AddressSet(uint64,bytes32,address,address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x579f40D0BE111b823962043702cabe6Aaa290780"]}],"createdAt":"2024-05-02T14:00:18.874Z","subscriberId":"3919cb83-487f-4432-88fa-33bbe4361fce","name":"Taiko Mainnet Address Managers","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"3919cb83-487f-4432-88fa-33bbe4361fce","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-address-managers","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Essential Contracts triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AdminChanged(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"BeaconUpgraded(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Initialized(uint8)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferStarted(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferred(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Upgraded(address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0xaf145913EA4a56BE22E120ED9C24589659881702","0x579f40D0BE111b823962043702cabe6Aaa290780","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3"]}],"createdAt":"2024-05-02T13:49:54.192Z","subscriberId":"67a53521-3d4a-4de4-92ab-ede82cc45644","name":"Taiko Mainnet Essential Contracts","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"67a53521-3d4a-4de4-92ab-ede82cc45644","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-essential-contracts","type":"BLOCK"}]},"actions":{"removed":[],"created":[],"updated":[{"autotaskId":"86964fd3-3da8-4501-a572-cbf51045f861","actionId":"86964fd3-3da8-4501-a572-cbf51045f861","name":"ERC20Vault: Balance Drop Test","paused":false,"trigger":{"cron":null,"frequencyMinutes":15,"type":"schedule"},"codeDigest":"+Y75bpyOzEuCm0y95ZczKkySm4PgLyQQt6ASpaB08Lk=","stackResourceId":"mystack.erc-20-vault-balance-drop","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVASVlLscBMAAHATAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBFUkMyMF9BQkkgPSBbCiAgewogICAgY29uc3RhbnQ6IHRydWUsCiAgICBpbnB1dHM6IFt7IG5hbWU6ICJfb3duZXIiLCB0eXBlOiAiYWRkcmVzcyIgfV0sCiAgICBuYW1lOiAiYmFsYW5jZU9mIiwKICAgIG91dHB1dHM6IFt7IG5hbWU6ICJiYWxhbmNlIiwgdHlwZTogInVpbnQyNTYiIH1dLAogICAgcGF5YWJsZTogZmFsc2UsCiAgICBzdGF0ZU11dGFiaWxpdHk6ICJ2aWV3IiwKICAgIHR5cGU6ICJmdW5jdGlvbiIsCiAgfSwKXTsKCmFzeW5jIGZ1bmN0aW9uIGdldEVSQzIwQmFsYW5jZShwcm92aWRlciwgdG9rZW5BZGRyZXNzLCB2YXVsdEFkZHJlc3MpIHsKICBjb25zdCBjb250cmFjdCA9IG5ldyBldGhlcnMuQ29udHJhY3QodG9rZW5BZGRyZXNzLCBFUkMyMF9BQkksIHByb3ZpZGVyKTsKICByZXR1cm4gYXdhaXQgY29udHJhY3QuYmFsYW5jZU9mKHZhdWx0QWRkcmVzcyk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGdldE5hdGl2ZVRva2VuQmFsYW5jZShwcm92aWRlciwgdmF1bHRBZGRyZXNzKSB7CiAgcmV0dXJuIGF3YWl0IHByb3ZpZGVyLmdldEJhbGFuY2UodmF1bHRBZGRyZXNzKTsKfQoKYXN5bmMgZnVuY3Rpb24gbW9uaXRvclRva2VuQmFsYW5jZSgKICBwcm92aWRlciwKICB0b2tlbkFkZHJlc3MsCiAgdmF1bHRBZGRyZXNzLAogIHByZXZpb3VzQmFsYW5jZUtleSwKICBub3RpZmljYXRpb25DbGllbnQsCiAgc2VjcmV0cywKICBjbGllbnQsCiAgdG9rZW5OYW1lLAogIG5ldHdvcmtOYW1lLAopIHsKICBjb25zb2xlLmxvZyhgTW9uaXRvcmluZyAke3Rva2VuTmFtZX0gYmFsYW5jZSBvbiAke25ldHdvcmtOYW1lfWApOwogIGNvbnN0IHByZXZpb3VzQmFsYW5jZSA9IGV0aGVycy5CaWdOdW1iZXIuZnJvbSgKICAgIHNlY3JldHNbcHJldmlvdXNCYWxhbmNlS2V5XSB8fCAiMCIsCiAgKTsKICBjb25zb2xlLmxvZygKICAgIGBQcmV2aW91cyAke3Rva2VuTmFtZX0gQmFsYW5jZTogJHtldGhlcnMudXRpbHMuZm9ybWF0VW5pdHMoCiAgICAgIHByZXZpb3VzQmFsYW5jZSwKICAgICAgMTgsCiAgICApfWAsCiAgKTsKCiAgbGV0IGN1cnJlbnRCYWxhbmNlOwogIGlmICh0b2tlbk5hbWUgPT09ICJFVEgiKSB7CiAgICBjdXJyZW50QmFsYW5jZSA9IGF3YWl0IGdldE5hdGl2ZVRva2VuQmFsYW5jZShwcm92aWRlciwgdmF1bHRBZGRyZXNzKTsKICB9IGVsc2UgewogICAgY3VycmVudEJhbGFuY2UgPSBhd2FpdCBnZXRFUkMyMEJhbGFuY2UoCiAgICAgIHByb3ZpZGVyLAogICAgICB0b2tlbkFkZHJlc3MsCiAgICAgIHZhdWx0QWRkcmVzcywKICAgICk7CiAgfQogIGNvbnNvbGUubG9nKAogICAgYEN1cnJlbnQgJHt0b2tlbk5hbWV9IEJhbGFuY2U6ICR7ZXRoZXJzLnV0aWxzLmZvcm1hdFVuaXRzKAogICAgICBjdXJyZW50QmFsYW5jZSwKICAgICAgMTgsCiAgICApfWAsCiAgKTsKCiAgaWYgKCFwcmV2aW91c0JhbGFuY2UuaXNaZXJvKCkpIHsKICAgIGNvbnN0IGRyb3BQZXJjZW50YWdlID0gcHJldmlvdXNCYWxhbmNlCiAgICAgIC5zdWIoY3VycmVudEJhbGFuY2UpCiAgICAgIC5tdWwoMTAwKQogICAgICAuZGl2KHByZXZpb3VzQmFsYW5jZSkKICAgICAgLnRvTnVtYmVyKCk7CiAgICBjb25zb2xlLmxvZygKICAgICAgYENhbGN1bGF0ZWQgZHJvcCBwZXJjZW50YWdlIGZvciAke3Rva2VuTmFtZX06ICR7ZHJvcFBlcmNlbnRhZ2V9JWAsCiAgICApOwoKICAgIGlmIChkcm9wUGVyY2VudGFnZSA+PSA1KSB7CiAgICAgIGNvbnN0IG1lc3NhZ2UgPSBgQWxlcnQ6ICR7dG9rZW5OYW1lfSBiYWxhbmNlIGhhcyBkcm9wcGVkIGJ5ICR7ZHJvcFBlcmNlbnRhZ2V9JSBvbiAke25ldHdvcmtOYW1lfS5cblByZXZpb3VzIEJhbGFuY2U6ICR7ZXRoZXJzLnV0aWxzLmZvcm1hdFVuaXRzKAogICAgICAgIHByZXZpb3VzQmFsYW5jZSwKICAgICAgICAxOCwKICAgICAgKX1cbkN1cnJlbnQgQmFsYW5jZTogJHtldGhlcnMudXRpbHMuZm9ybWF0VW5pdHMoY3VycmVudEJhbGFuY2UsIDE4KX1gOwogICAgICBhbGVydE9yZygKICAgICAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICAgICAgYOKaoO+4jyAke25ldHdvcmtOYW1lfTogJHt0b2tlbk5hbWV9IEJhbGFuY2UgRHJvcCBBbGVydGAsCiAgICAgICAgbWVzc2FnZSwKICAgICAgKTsKICAgIH0gZWxzZSB7CiAgICAgIGNvbnNvbGUubG9nKAogICAgICAgIGBObyBzaWduaWZpY2FudCAke3Rva2VuTmFtZX0gYmFsYW5jZSBkcm9wIGRldGVjdGVkIG9uICR7bmV0d29ya05hbWV9YCwKICAgICAgKTsKICAgIH0KICB9IGVsc2UgewogICAgY29uc29sZS5sb2coCiAgICAgIGBObyBwcmV2aW91cyAke3Rva2VuTmFtZX0gYmFsYW5jZSB0byBjb21wYXJlIG9uICR7bmV0d29ya05hbWV9YCwKICAgICk7CiAgfQoKICBhd2FpdCBzdG9yZVByZXZpb3VzQmFsYW5jZShjbGllbnQsIHByZXZpb3VzQmFsYW5jZUtleSwgY3VycmVudEJhbGFuY2UpOwp9CgpmdW5jdGlvbiBhbGVydE9yZyhub3RpZmljYXRpb25DbGllbnQsIHN1YmplY3QsIG1lc3NhZ2UpIHsKICBub3RpZmljYXRpb25DbGllbnQuc2VuZCh7CiAgICBjaGFubmVsQWxpYXM6ICJkaXNjb3JkX2JyaWRnaW5nIiwKICAgIHN1YmplY3QsCiAgICBtZXNzYWdlLAogIH0pOwp9Cgphc3luYyBmdW5jdGlvbiBzdG9yZVByZXZpb3VzQmFsYW5jZShjbGllbnQsIGtleSwgbmV3QmFsYW5jZSkgewogIGNvbnNvbGUubG9nKAogICAgYFN0b3JpbmcgcHJldmlvdXMgYmFsYW5jZSB1bmRlciBrZXk6ICR7a2V5fSwgdmFsdWU6ICR7bmV3QmFsYW5jZS50b1N0cmluZygpfWAsCiAgKTsKICBjb25zdCBib2R5ID0gewogICAgZGVsZXRlczogW10sCiAgICBzZWNyZXRzOiB7CiAgICAgIFtrZXldOiBuZXdCYWxhbmNlLnRvU3RyaW5nKCksCiAgICB9LAogIH07CiAgYXdhaXQgY2xpZW50LmFjdGlvbi5jcmVhdGVTZWNyZXRzKGJvZHkpOwp9CgpmdW5jdGlvbiBjcmVhdGVQcm92aWRlcihhcGlLZXksIGFwaVNlY3JldCwgcmVsYXllckFwaUtleSwgcmVsYXllckFwaVNlY3JldCkgewogIGNvbnNvbGUubG9nKGBDcmVhdGluZyBwcm92aWRlciB3aXRoIEFQSSBrZXlzYCk7CiAgY29uc3QgY2xpZW50ID0gbmV3IERlZmVuZGVyKHsKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHJlbGF5ZXJBcGlLZXksCiAgICByZWxheWVyQXBpU2VjcmV0LAogIH0pOwoKICByZXR1cm4gY2xpZW50LnJlbGF5U2lnbmVyLmdldFByb3ZpZGVyKCk7Cn0KCmV4cG9ydHMuaGFuZGxlciA9IGFzeW5jIGZ1bmN0aW9uIChldmVudCwgY29udGV4dCkgewogIGNvbnN0IHsgbm90aWZpY2F0aW9uQ2xpZW50IH0gPSBjb250ZXh0OwogIGNvbnN0IHsgYXBpS2V5LCBhcGlTZWNyZXQsIHRhaWtvTDFBcGlLZXksIHRhaWtvTDFBcGlTZWNyZXQgfSA9IGV2ZW50LnNlY3JldHM7CgogIGNvbnNvbGUubG9nKGBTdGFydGluZyBiYWxhbmNlIG1vbml0b3JpbmcgZm9yIEwxYCk7CgogIGNvbnN0IGwxUHJvdmlkZXIgPSBjcmVhdGVQcm92aWRlcigKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHRhaWtvTDFBcGlLZXksCiAgICB0YWlrb0wxQXBpU2VjcmV0LAogICk7CgogIGNvbnN0IGwxVmF1bHRBZGRyZXNzID0gIjB4OTk2MjgyY0ExMUU1REViNkI1RDEyMkNDM0I5QTFGY0FBRDQ0MTVBYiI7CgogIGNvbnN0IGwxVG9rZW5BZGRyZXNzZXMgPSB7CiAgICBFVEg6IG51bGwsCiAgICBUQUlLTzogZXRoZXJzLnV0aWxzLmdldEFkZHJlc3MoCiAgICAgICIweDEwZGVhNjc0NzhjNUY4QzVFMkQ5MGU1RTlCMjZkQmU2MGM1NGQ4MDAiLAogICAgKSwKICAgIFVTREM6IGV0aGVycy51dGlscy5nZXRBZGRyZXNzKCIweEEwYjg2OTkxYzYyMThiMzZjMWQxOUQ0YTJlOUViMGNFMzYwNmVCNDgiKSwKICAgIFVTRFQ6IGV0aGVycy51dGlscy5nZXRBZGRyZXNzKCIweGRBQzE3Rjk1OEQyZWU1MjNhMjIwNjIwNjk5NDU5N0MxM0Q4MzFlYzciKSwKICB9OwoKICBjb25zdCBjbGllbnQgPSBuZXcgRGVmZW5kZXIoewogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgdGFpa29MMUFwaUtleSwKICAgIHRhaWtvTDFBcGlTZWNyZXQsCiAgfSk7CgogIGF3YWl0IG1vbml0b3JUb2tlbkJhbGFuY2UoCiAgICBsMVByb3ZpZGVyLAogICAgbDFUb2tlbkFkZHJlc3Nlcy5FVEgsCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfRVRIIiwKICAgIG5vdGlmaWNhdGlvbkNsaWVudCwKICAgIGV2ZW50LnNlY3JldHMsCiAgICBjbGllbnQsCiAgICAiRVRIIiwKICAgICJMMSIsCiAgKTsKICBhd2FpdCBtb25pdG9yVG9rZW5CYWxhbmNlKAogICAgbDFQcm92aWRlciwKICAgIGwxVG9rZW5BZGRyZXNzZXMuVEFJS08sCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfVEFJS08iLAogICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgZXZlbnQuc2VjcmV0cywKICAgIGNsaWVudCwKICAgICJUQUlLTyIsCiAgICAiTDEiLAogICk7CiAgYXdhaXQgbW9uaXRvclRva2VuQmFsYW5jZSgKICAgIGwxUHJvdmlkZXIsCiAgICBsMVRva2VuQWRkcmVzc2VzLlVTREMsCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfVVNEQyIsCiAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICBldmVudC5zZWNyZXRzLAogICAgY2xpZW50LAogICAgIlVTREMiLAogICAgIkwxIiwKICApOwogIGF3YWl0IG1vbml0b3JUb2tlbkJhbGFuY2UoCiAgICBsMVByb3ZpZGVyLAogICAgbDFUb2tlbkFkZHJlc3Nlcy5VU0RULAogICAgbDFWYXVsdEFkZHJlc3MsCiAgICAicHJldmlvdXNCYWxhbmNlX0wxX1VTRFQiLAogICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgZXZlbnQuc2VjcmV0cywKICAgIGNsaWVudCwKICAgICJVU0RUIiwKICAgICJMMSIsCiAgKTsKCiAgY29uc29sZS5sb2coYEJhbGFuY2UgbW9uaXRvcmluZyBjb21wbGV0ZWRgKTsKCiAgcmV0dXJuIHRydWU7Cn07ClBLAQIUAAoAAAAAAAAAQVASVlLscBMAAHATAAAIAAAAAAAAAAAAAAAAAAAAAABpbmRleC5qc1BLBQYAAAAAAQABADYAAACWEwAAAAA="}]},"contracts":{"removed":[],"created":[],"updated":[]},"relayers":{"removed":[],"created":[],"updated":[],"relayerKeys":{"removed":[],"created":[],"updated":[]}},"notifications":{"removed":[],"created":[],"updated":[]},"secrets":{"removed":[],"created":[],"updated":[]},"blockExplorerApiKeys":{"removed":[],"created":[],"updated":[]},"forkedNetworks":{"removed":[],"created":[],"updated":[]},"privateNetworks":{"removed":[],"created":[],"updated":[]}} +{"stack":"mystack","timestamp":"2024-09-18T21:53:56.270Z","monitors":{"removed":[],"created":[],"updated":[{"skipABIValidation":true,"alertThreshold":null,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"Defender Monitor: TaikoL1: Pause/Unpause triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]}],"abi":"[{\"type\":\"error\",\"name\":\"AM_ADDRESS_ALREADY_SET\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"spender\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"approved\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ApprovalForAll\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"operationId\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"approvalBits\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"minGuardiansReached\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Authorized\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"authorized\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"BB_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_MINT_DISALLOWED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_CANNOT_RECEIVE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_BURN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INSUFFICIENT_GAS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CONTEXT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_GAS_LIMIT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_VALUE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_MESSAGE_NOT_SENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_OUT_OF_ETH_QUOTA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PROOF_TOO_LARGE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_RETRY_FAILED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_SIGNAL_NOT_RECEIVED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockProposed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"assignedProver\",\"indexed\":true},{\"type\":\"uint96\",\"name\":\"livenessBond\",\"indexed\":false},{\"type\":\"tuple\",\"name\":\"meta\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"depositsProcessed\",\"indexed\":false,\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockVerified\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"stateRoot\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondCredited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondDebited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenChanged\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btokenOld\",\"indexed\":false},{\"type\":\"address\",\"name\":\"btokenNew\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"CLOCK_MODE\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"CalldataTxList\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"txList\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ChainDataSynced\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"kind\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"data\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ConflictingProofs\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"guardian\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"currentProofHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"newProofHash\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"provingPaused\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"DOMAIN_SEPARATOR\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"fromDelegate\",\"indexed\":true},{\"type\":\"address\",\"name\":\"toDelegate\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateVotesChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegate\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"previousBalance\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"newBalance\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EIP712DomainChanged\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ETH_TRANSFER_FAILED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EtherPaymentFailed\",\"inputs\":[{\"type\":\"address\",\"name\":\"to\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"maxGas\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"FUNC_NOT_IMPLEMENTED\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"GAS_OVERHEAD\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"GAS_RESERVE\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN_SET\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_MIN_GUARDIANS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardianApproval\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false},{\"type\":\"bytes\",\"name\":\"proofData\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardiansUpdated\",\"inputs\":[{\"type\":\"uint32\",\"name\":\"version\",\"indexed\":false},{\"type\":\"address[]\",\"name\":\"guardians\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_EXPIRED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"error\",\"name\":\"INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"L1_ALREADY_CONTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_ALREADY_PROVED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_AVAILABLE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOCK_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_CANNOT_CONTEST\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_BLOCK_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_GENESIS_HASH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TIER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TRANSITION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_NOT_ASSIGNED_PROVER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_PROVING_PAUSED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_RECEIVE_DISABLED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TOO_MANY_BLOCKS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TRANSITION_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_PARENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_TRANSITION_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_ACCOUNT_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_INCLUSION_PROOF\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"LocalReportCheckToggled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"checkLocalEnclaveReport\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"MAX_GAS_PAYING_PROVER\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"MIN_MIGRATION_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageProcessed\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"stats\",\"indexed\":false,\"components\":[{\"type\":\"uint32\",\"name\":\"gasUsedInFeeCalc\"},{\"type\":\"uint32\",\"name\":\"proofSize\"},{\"type\":\"uint32\",\"name\":\"numCacheOps\"},{\"type\":\"bool\",\"name\":\"processedByRelayer\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageStatusChanged\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"uint8\",\"name\":\"status\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigratedTo\",\"inputs\":[{\"type\":\"address\",\"name\":\"fromToken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigrationStatusChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"inbound\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrEnclaveUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrEnclave\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrSignerUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrSigner\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingAutoPauseEnabled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"enabled\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingPaused\",\"inputs\":[{\"type\":\"bool\",\"name\":\"paused\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"QeIdentityConfigured\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"indexed\":false,\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}]},{\"type\":\"error\",\"name\":\"REENTRANT_CALL\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"RELAYER_MAX_PROOF_BYTES\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"error\",\"name\":\"RESOLVER_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_INVALID_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_UNEXPECTED_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_ZERO_ADDR\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"name\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumRemoved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"SGX_ALREADY_ATTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_ATTESTATION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_INSTANCE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_RA_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_EMPTY_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_HOPS_WITH_LOOP\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_LAST_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_MID_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_STATE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_SIGNAL_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_UNAUTHORIZED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"SignalSent\",\"inputs\":[{\"type\":\"address\",\"name\":\"app\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"slot\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"StateVariablesUpdated\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"slotB\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"error\",\"name\":\"TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"TT_INVALID_PARAM\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TcbInfoJsonConfigured\",\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"indexed\":false,\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"canonicalChainId\",\"indexed\":false},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferBatch\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256[]\",\"name\":\"ids\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"values\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferSingle\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionContested\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"contester\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"contestBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionProved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"validityBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"URI\",\"inputs\":[{\"type\":\"string\",\"name\":\"value\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_DATA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_ECDSA_SIGNATURE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEAUTHDATA_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEREPORT_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_MEMBER_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_UNSUPPORT_CERTIFICATION_TYPE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_BTOKEN_BLACKLISTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_CTOKEN_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INSUFFICIENT_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INTERFACE_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_AMOUNT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_CTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_NEW_BTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TO_ADDR\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_LAST_MIGRATION_TOO_CLOSE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_TOKEN_ARRAY_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDR_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_VALUE\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"allowance\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"approvals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"bytes32\",\"name\":\"proofHash\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"approvalBits\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\",\"name\":\"approved_\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"authorize\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_addr\"},{\"type\":\"bool\",\"name\":\"_authorize\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"id\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOfBatch\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"accounts\"},{\"type\":\"uint256[]\",\"name\":\"ids\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"batchTransfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"recipients\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"bondBalanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_user\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"btokenDenylist\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"denied\"}]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"canonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"canonicalToBridged\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btoken\"}]},{\"type\":\"function\",\"name\":\"changeBridgedToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctoken\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"address\",\"name\":\"_btokenNew\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btokenOld_\"}]},{\"type\":\"function\",\"name\":\"changeMigrationStatus\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_migratingAddress\"},{\"type\":\"bool\",\"name\":\"_migratingInbound\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"checkLocalEnclaveReport\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"checkpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint32\",\"name\":\"pos\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint32\",\"name\":\"fromBlock\"},{\"type\":\"uint224\",\"name\":\"votes\"}]}]},{\"type\":\"function\",\"name\":\"clock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint48\"}]},{\"type\":\"function\",\"name\":\"configureQeIdentityJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"configureTcbInfoJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"context\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"name\":\"ctx_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"}]}]},{\"type\":\"function\",\"name\":\"decimals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint8\"}]},{\"type\":\"function\",\"name\":\"decodeCert\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"der\"},{\"type\":\"bool\",\"name\":\"isPckCert\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"tuple\",\"name\":\"cert\",\"components\":[{\"type\":\"uint256\",\"name\":\"notBefore\"},{\"type\":\"uint256\",\"name\":\"notAfter\"},{\"type\":\"bytes\",\"name\":\"serialNumber\"},{\"type\":\"bytes\",\"name\":\"tbsCertificate\"},{\"type\":\"bytes\",\"name\":\"pubKey\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bool\",\"name\":\"isPck\"},{\"type\":\"tuple\",\"name\":\"pck\",\"components\":[{\"type\":\"string\",\"name\":\"commonName\"},{\"type\":\"string\",\"name\":\"issuerName\"},{\"type\":\"tuple\",\"name\":\"sgxExtension\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint256[]\",\"name\":\"sgxTcbCompSvnArr\"}]}]}]}]},{\"type\":\"function\",\"name\":\"decreaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"subtractedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"delegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegateBySig\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"},{\"type\":\"uint256\",\"name\":\"nonce\"},{\"type\":\"uint256\",\"name\":\"expiry\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegates\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"depositBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"eip712Domain\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes1\",\"name\":\"fields\"},{\"type\":\"string\",\"name\":\"name\"},{\"type\":\"string\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"verifyingContract\"},{\"type\":\"bytes32\",\"name\":\"salt\"},{\"type\":\"uint256[]\",\"name\":\"extensions\"}]},{\"type\":\"function\",\"name\":\"enableProvingAutoPause\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"enableTaikoTokenAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"failMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getApproved\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"blk_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]}]},{\"type\":\"function\",\"name\":\"getConfig\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"uint64\",\"name\":\"blockMaxProposals\"},{\"type\":\"uint64\",\"name\":\"blockRingBufferSize\"},{\"type\":\"uint64\",\"name\":\"maxBlocksToVerify\"},{\"type\":\"uint32\",\"name\":\"blockMaxGasLimit\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint8\",\"name\":\"stateRootSyncInternal\"},{\"type\":\"bool\",\"name\":\"checkEOAForCalldataDA\"}]}]},{\"type\":\"function\",\"name\":\"getLastSyncedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getLastVerifiedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getMessageMinGasLimit\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"dataLength\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"getMinTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"uint16\"}]},{\"type\":\"function\",\"name\":\"getPastTotalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getPastVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getSignalSlot\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"getStateVariables\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"getSyncedChainData\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"chainData_\"}]},{\"type\":\"function\",\"name\":\"getTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint16\",\"name\":\"_tierId\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"verifierName\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint24\",\"name\":\"cooldownWindow\"},{\"type\":\"uint16\",\"name\":\"provingWindow\"},{\"type\":\"uint8\",\"name\":\"maxBlocksToVerifyPerProof\"}]}]},{\"type\":\"function\",\"name\":\"getTierIds\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint16[]\",\"name\":\"tiers_\"}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"uint32\",\"name\":\"_tid\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_parentHash\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getVerifiedBlockProver\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"prover_\"}]},{\"type\":\"function\",\"name\":\"getVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"guardianIds\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"guardian\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"id\"}]},{\"type\":\"function\",\"name\":\"guardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"hashAssignment\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_assignment\",\"components\":[{\"type\":\"address\",\"name\":\"feeToken\"},{\"type\":\"uint64\",\"name\":\"expiry\"},{\"type\":\"uint64\",\"name\":\"maxBlockId\"},{\"type\":\"uint64\",\"name\":\"maxProposedIn\"},{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"tuple[]\",\"name\":\"tierFees\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint128\",\"name\":\"fee\"}]},{\"type\":\"bytes\",\"name\":\"signature\"}]},{\"type\":\"address\",\"name\":\"_taikoL1Address\"},{\"type\":\"address\",\"name\":\"_blockProposer\"},{\"type\":\"address\",\"name\":\"_assignedProver\"},{\"type\":\"bytes32\",\"name\":\"_blobHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"hashMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"impl\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"inNonReentrant\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"increaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"addedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"bytes32\",\"name\":\"_genesisBlockHash\"},{\"type\":\"bool\",\"name\":\"_toPause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"sigVerifyLibAddr\"},{\"type\":\"address\",\"name\":\"pemCertLibAddr\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"uint8\",\"name\":\"_decimals\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init2\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"isApprovedForAll\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"address\",\"name\":\"operator\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isAuthorized\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"addr\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"authorized\"}]},{\"type\":\"function\",\"name\":\"isChainDataSynced\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isDestChainEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"enabled_\"},{\"type\":\"address\",\"name\":\"destBridge_\"}]},{\"type\":\"function\",\"name\":\"isMessageFailed\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isSignalSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"lastMigrationStart\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"timestamp\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"latestProofHash\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"blockId\"}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"hash\"}]},{\"type\":\"function\",\"name\":\"messageStatus\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status\"}]},{\"type\":\"function\",\"name\":\"migratingAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"migratingInbound\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"minGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mintBatch\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256[]\",\"name\":\"_tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"_amounts\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"nextMessageId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nonces\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"numCheckpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"numGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"onBlockProposed\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_blk\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]},{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onERC1155BatchReceived\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256[]\"},{\"type\":\"uint256[]\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC1155Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC721Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onMessageInvocation\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onMessageRecalled\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"ownerOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseProving\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_pause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseTaikoProving\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pemCertLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"permit\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"uint256\",\"name\":\"deadline\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"processMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status_\"},{\"type\":\"uint8\",\"name\":\"reason_\"}]},{\"type\":\"function\",\"name\":\"proposeBlock\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_params\"},{\"type\":\"bytes\",\"name\":\"_txList\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"meta_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"deposits_\",\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"function\",\"name\":\"proveBlock\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes\",\"name\":\"_input\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"proveSignalReceived\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"numCacheOps_\"}]},{\"type\":\"function\",\"name\":\"provingAutoPauseEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"qeIdentity\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"}]},{\"type\":\"function\",\"name\":\"recallMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"removeRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"retryMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bool\",\"name\":\"_isLastAttempt\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeBatchTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256[]\",\"name\":\"ids\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"id\"},{\"type\":\"uint256\",\"name\":\"amount\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"selfDelegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_anyToken\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sendMessage\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash_\"},{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendSignal\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256[]\",\"name\":\"tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256\",\"name\":\"amount\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"serialNumIsRevoked\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"idx\"},{\"type\":\"bytes\",\"name\":\"serialNum\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"revoked\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setApprovalForAll\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"operator\"},{\"type\":\"bool\",\"name\":\"approved\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setGuardians\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_newGuardians\"},{\"type\":\"uint8\",\"name\":\"_minGuardians\"},{\"type\":\"bool\",\"name\":\"_clearData\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrEnclave\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrEnclave\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrSigner\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrSigner\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sigVerifyLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"signalForChainData\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"signalForFailedMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"source\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"splitCertificateChain\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"pemChain\"},{\"type\":\"uint256\",\"name\":\"size\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"bytes[]\",\"name\":\"certs\"}]},{\"type\":\"function\",\"name\":\"srcChainId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"srcToken\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"state\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"__reserve1\"},{\"type\":\"tuple\",\"name\":\"slotA\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"name\":\"slotB\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"supportsInterface\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes4\",\"name\":\"_interfaceId\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"syncChainData\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"tcbInfo\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"}],\"outputs\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"}]},{\"type\":\"function\",\"name\":\"toggleLocalReportCheck\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"tokenURI\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"topBlockId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"kind\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId\"}]},{\"type\":\"function\",\"name\":\"totalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"transfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"trustedUserMrEnclave\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"enclave\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"trustedUserMrSigner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"signer\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"uri\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"verifyAttestation\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"}]},{\"type\":\"function\",\"name\":\"verifyBlocks\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_maxBlocksToVerify\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyES256Signature\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"tbs\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bytes\",\"name\":\"publicKey\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"sigValid\"}]},{\"type\":\"function\",\"name\":\"verifyParsedQuote\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"v3quote\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"bool\"},{\"type\":\"bytes\"}]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifySignalReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"version\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"withdrawBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"withdrawTaikoToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"constructor\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"es256Verifier\"}]}]","addresses":["0x02772b7B3a5Bea0141C993Dbb8D0733C19F46169","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x11A9ebA17EbF92b40fcf9a640Ebbc47Db6fBeab0","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0x39E4C1214e733639d059979079A151911e42791d","0x47bB416ee947fE4a4b655011aF7d6E3A1B80E6e9","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0x579f40D0BE111b823962043702cabe6Aaa290780","0x67281b15aee4d6b805bc755e439abd524dd8da8d","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0xa25e645ff9897b0282e5f17d36de5bca4ec21d6e","0xaf145913EA4a56BE22E120ED9C24589659881702","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0xc4096E9ff1526Bd1840B65e9f45695135aC12De7","0xcc5d488073FA918cBbd73B9A523F3858C4de7372","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC"]}],"createdAt":"2024-08-27T09:44:01.744Z","subscriberId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","name":"TaikoL1: Pause/Unpause","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","blockWatcherId":"mainnet-6","paused":false,"stackResourceId":"mystack.taiko-l-1-pause-unpause","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"LOW","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet SGX Prover triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceAdded(uint256,address,address,uint256)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceDeleted(uint256,address)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[{"functionSignature":"verifyProof((bytes32,bytes32,address,uint64,bool,bool,address),(bytes32,bytes32,bytes32,bytes32),(uint16,bytes))","expression":null}],"eventConditions":[]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]}]","addresses":["0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81"]}],"createdAt":"2024-05-02T14:09:42.804Z","subscriberId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","name":"Taiko Mainnet SGX Prover","network":"mainnet","riskCategory":"TECHNICAL","monitorId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-sgx-prover","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Address Managers triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AddressSet(uint64,bytes32,address,address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x579f40D0BE111b823962043702cabe6Aaa290780"]}],"createdAt":"2024-05-02T14:00:18.874Z","subscriberId":"3919cb83-487f-4432-88fa-33bbe4361fce","name":"Taiko Mainnet Address Managers","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"3919cb83-487f-4432-88fa-33bbe4361fce","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-address-managers","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Essential Contracts triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AdminChanged(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"BeaconUpgraded(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Initialized(uint8)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferStarted(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferred(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Upgraded(address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0xaf145913EA4a56BE22E120ED9C24589659881702","0x579f40D0BE111b823962043702cabe6Aaa290780","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3"]}],"createdAt":"2024-05-02T13:49:54.192Z","subscriberId":"67a53521-3d4a-4de4-92ab-ede82cc45644","name":"Taiko Mainnet Essential Contracts","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"67a53521-3d4a-4de4-92ab-ede82cc45644","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-essential-contracts","type":"BLOCK"}]},"actions":{"removed":[],"created":[],"updated":[{"autotaskId":"86964fd3-3da8-4501-a572-cbf51045f861","actionId":"86964fd3-3da8-4501-a572-cbf51045f861","name":"ERC20Vault: Balance Drop","paused":false,"trigger":{"cron":null,"frequencyMinutes":15,"type":"schedule"},"codeDigest":"+Y75bpyOzEuCm0y95ZczKkySm4PgLyQQt6ASpaB08Lk=","stackResourceId":"mystack.erc-20-vault-balance-drop","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVASVlLscBMAAHATAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBFUkMyMF9BQkkgPSBbCiAgewogICAgY29uc3RhbnQ6IHRydWUsCiAgICBpbnB1dHM6IFt7IG5hbWU6ICJfb3duZXIiLCB0eXBlOiAiYWRkcmVzcyIgfV0sCiAgICBuYW1lOiAiYmFsYW5jZU9mIiwKICAgIG91dHB1dHM6IFt7IG5hbWU6ICJiYWxhbmNlIiwgdHlwZTogInVpbnQyNTYiIH1dLAogICAgcGF5YWJsZTogZmFsc2UsCiAgICBzdGF0ZU11dGFiaWxpdHk6ICJ2aWV3IiwKICAgIHR5cGU6ICJmdW5jdGlvbiIsCiAgfSwKXTsKCmFzeW5jIGZ1bmN0aW9uIGdldEVSQzIwQmFsYW5jZShwcm92aWRlciwgdG9rZW5BZGRyZXNzLCB2YXVsdEFkZHJlc3MpIHsKICBjb25zdCBjb250cmFjdCA9IG5ldyBldGhlcnMuQ29udHJhY3QodG9rZW5BZGRyZXNzLCBFUkMyMF9BQkksIHByb3ZpZGVyKTsKICByZXR1cm4gYXdhaXQgY29udHJhY3QuYmFsYW5jZU9mKHZhdWx0QWRkcmVzcyk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGdldE5hdGl2ZVRva2VuQmFsYW5jZShwcm92aWRlciwgdmF1bHRBZGRyZXNzKSB7CiAgcmV0dXJuIGF3YWl0IHByb3ZpZGVyLmdldEJhbGFuY2UodmF1bHRBZGRyZXNzKTsKfQoKYXN5bmMgZnVuY3Rpb24gbW9uaXRvclRva2VuQmFsYW5jZSgKICBwcm92aWRlciwKICB0b2tlbkFkZHJlc3MsCiAgdmF1bHRBZGRyZXNzLAogIHByZXZpb3VzQmFsYW5jZUtleSwKICBub3RpZmljYXRpb25DbGllbnQsCiAgc2VjcmV0cywKICBjbGllbnQsCiAgdG9rZW5OYW1lLAogIG5ldHdvcmtOYW1lLAopIHsKICBjb25zb2xlLmxvZyhgTW9uaXRvcmluZyAke3Rva2VuTmFtZX0gYmFsYW5jZSBvbiAke25ldHdvcmtOYW1lfWApOwogIGNvbnN0IHByZXZpb3VzQmFsYW5jZSA9IGV0aGVycy5CaWdOdW1iZXIuZnJvbSgKICAgIHNlY3JldHNbcHJldmlvdXNCYWxhbmNlS2V5XSB8fCAiMCIsCiAgKTsKICBjb25zb2xlLmxvZygKICAgIGBQcmV2aW91cyAke3Rva2VuTmFtZX0gQmFsYW5jZTogJHtldGhlcnMudXRpbHMuZm9ybWF0VW5pdHMoCiAgICAgIHByZXZpb3VzQmFsYW5jZSwKICAgICAgMTgsCiAgICApfWAsCiAgKTsKCiAgbGV0IGN1cnJlbnRCYWxhbmNlOwogIGlmICh0b2tlbk5hbWUgPT09ICJFVEgiKSB7CiAgICBjdXJyZW50QmFsYW5jZSA9IGF3YWl0IGdldE5hdGl2ZVRva2VuQmFsYW5jZShwcm92aWRlciwgdmF1bHRBZGRyZXNzKTsKICB9IGVsc2UgewogICAgY3VycmVudEJhbGFuY2UgPSBhd2FpdCBnZXRFUkMyMEJhbGFuY2UoCiAgICAgIHByb3ZpZGVyLAogICAgICB0b2tlbkFkZHJlc3MsCiAgICAgIHZhdWx0QWRkcmVzcywKICAgICk7CiAgfQogIGNvbnNvbGUubG9nKAogICAgYEN1cnJlbnQgJHt0b2tlbk5hbWV9IEJhbGFuY2U6ICR7ZXRoZXJzLnV0aWxzLmZvcm1hdFVuaXRzKAogICAgICBjdXJyZW50QmFsYW5jZSwKICAgICAgMTgsCiAgICApfWAsCiAgKTsKCiAgaWYgKCFwcmV2aW91c0JhbGFuY2UuaXNaZXJvKCkpIHsKICAgIGNvbnN0IGRyb3BQZXJjZW50YWdlID0gcHJldmlvdXNCYWxhbmNlCiAgICAgIC5zdWIoY3VycmVudEJhbGFuY2UpCiAgICAgIC5tdWwoMTAwKQogICAgICAuZGl2KHByZXZpb3VzQmFsYW5jZSkKICAgICAgLnRvTnVtYmVyKCk7CiAgICBjb25zb2xlLmxvZygKICAgICAgYENhbGN1bGF0ZWQgZHJvcCBwZXJjZW50YWdlIGZvciAke3Rva2VuTmFtZX06ICR7ZHJvcFBlcmNlbnRhZ2V9JWAsCiAgICApOwoKICAgIGlmIChkcm9wUGVyY2VudGFnZSA+PSA1KSB7CiAgICAgIGNvbnN0IG1lc3NhZ2UgPSBgQWxlcnQ6ICR7dG9rZW5OYW1lfSBiYWxhbmNlIGhhcyBkcm9wcGVkIGJ5ICR7ZHJvcFBlcmNlbnRhZ2V9JSBvbiAke25ldHdvcmtOYW1lfS5cblByZXZpb3VzIEJhbGFuY2U6ICR7ZXRoZXJzLnV0aWxzLmZvcm1hdFVuaXRzKAogICAgICAgIHByZXZpb3VzQmFsYW5jZSwKICAgICAgICAxOCwKICAgICAgKX1cbkN1cnJlbnQgQmFsYW5jZTogJHtldGhlcnMudXRpbHMuZm9ybWF0VW5pdHMoY3VycmVudEJhbGFuY2UsIDE4KX1gOwogICAgICBhbGVydE9yZygKICAgICAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICAgICAgYOKaoO+4jyAke25ldHdvcmtOYW1lfTogJHt0b2tlbk5hbWV9IEJhbGFuY2UgRHJvcCBBbGVydGAsCiAgICAgICAgbWVzc2FnZSwKICAgICAgKTsKICAgIH0gZWxzZSB7CiAgICAgIGNvbnNvbGUubG9nKAogICAgICAgIGBObyBzaWduaWZpY2FudCAke3Rva2VuTmFtZX0gYmFsYW5jZSBkcm9wIGRldGVjdGVkIG9uICR7bmV0d29ya05hbWV9YCwKICAgICAgKTsKICAgIH0KICB9IGVsc2UgewogICAgY29uc29sZS5sb2coCiAgICAgIGBObyBwcmV2aW91cyAke3Rva2VuTmFtZX0gYmFsYW5jZSB0byBjb21wYXJlIG9uICR7bmV0d29ya05hbWV9YCwKICAgICk7CiAgfQoKICBhd2FpdCBzdG9yZVByZXZpb3VzQmFsYW5jZShjbGllbnQsIHByZXZpb3VzQmFsYW5jZUtleSwgY3VycmVudEJhbGFuY2UpOwp9CgpmdW5jdGlvbiBhbGVydE9yZyhub3RpZmljYXRpb25DbGllbnQsIHN1YmplY3QsIG1lc3NhZ2UpIHsKICBub3RpZmljYXRpb25DbGllbnQuc2VuZCh7CiAgICBjaGFubmVsQWxpYXM6ICJkaXNjb3JkX2JyaWRnaW5nIiwKICAgIHN1YmplY3QsCiAgICBtZXNzYWdlLAogIH0pOwp9Cgphc3luYyBmdW5jdGlvbiBzdG9yZVByZXZpb3VzQmFsYW5jZShjbGllbnQsIGtleSwgbmV3QmFsYW5jZSkgewogIGNvbnNvbGUubG9nKAogICAgYFN0b3JpbmcgcHJldmlvdXMgYmFsYW5jZSB1bmRlciBrZXk6ICR7a2V5fSwgdmFsdWU6ICR7bmV3QmFsYW5jZS50b1N0cmluZygpfWAsCiAgKTsKICBjb25zdCBib2R5ID0gewogICAgZGVsZXRlczogW10sCiAgICBzZWNyZXRzOiB7CiAgICAgIFtrZXldOiBuZXdCYWxhbmNlLnRvU3RyaW5nKCksCiAgICB9LAogIH07CiAgYXdhaXQgY2xpZW50LmFjdGlvbi5jcmVhdGVTZWNyZXRzKGJvZHkpOwp9CgpmdW5jdGlvbiBjcmVhdGVQcm92aWRlcihhcGlLZXksIGFwaVNlY3JldCwgcmVsYXllckFwaUtleSwgcmVsYXllckFwaVNlY3JldCkgewogIGNvbnNvbGUubG9nKGBDcmVhdGluZyBwcm92aWRlciB3aXRoIEFQSSBrZXlzYCk7CiAgY29uc3QgY2xpZW50ID0gbmV3IERlZmVuZGVyKHsKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHJlbGF5ZXJBcGlLZXksCiAgICByZWxheWVyQXBpU2VjcmV0LAogIH0pOwoKICByZXR1cm4gY2xpZW50LnJlbGF5U2lnbmVyLmdldFByb3ZpZGVyKCk7Cn0KCmV4cG9ydHMuaGFuZGxlciA9IGFzeW5jIGZ1bmN0aW9uIChldmVudCwgY29udGV4dCkgewogIGNvbnN0IHsgbm90aWZpY2F0aW9uQ2xpZW50IH0gPSBjb250ZXh0OwogIGNvbnN0IHsgYXBpS2V5LCBhcGlTZWNyZXQsIHRhaWtvTDFBcGlLZXksIHRhaWtvTDFBcGlTZWNyZXQgfSA9IGV2ZW50LnNlY3JldHM7CgogIGNvbnNvbGUubG9nKGBTdGFydGluZyBiYWxhbmNlIG1vbml0b3JpbmcgZm9yIEwxYCk7CgogIGNvbnN0IGwxUHJvdmlkZXIgPSBjcmVhdGVQcm92aWRlcigKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHRhaWtvTDFBcGlLZXksCiAgICB0YWlrb0wxQXBpU2VjcmV0LAogICk7CgogIGNvbnN0IGwxVmF1bHRBZGRyZXNzID0gIjB4OTk2MjgyY0ExMUU1REViNkI1RDEyMkNDM0I5QTFGY0FBRDQ0MTVBYiI7CgogIGNvbnN0IGwxVG9rZW5BZGRyZXNzZXMgPSB7CiAgICBFVEg6IG51bGwsCiAgICBUQUlLTzogZXRoZXJzLnV0aWxzLmdldEFkZHJlc3MoCiAgICAgICIweDEwZGVhNjc0NzhjNUY4QzVFMkQ5MGU1RTlCMjZkQmU2MGM1NGQ4MDAiLAogICAgKSwKICAgIFVTREM6IGV0aGVycy51dGlscy5nZXRBZGRyZXNzKCIweEEwYjg2OTkxYzYyMThiMzZjMWQxOUQ0YTJlOUViMGNFMzYwNmVCNDgiKSwKICAgIFVTRFQ6IGV0aGVycy51dGlscy5nZXRBZGRyZXNzKCIweGRBQzE3Rjk1OEQyZWU1MjNhMjIwNjIwNjk5NDU5N0MxM0Q4MzFlYzciKSwKICB9OwoKICBjb25zdCBjbGllbnQgPSBuZXcgRGVmZW5kZXIoewogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgdGFpa29MMUFwaUtleSwKICAgIHRhaWtvTDFBcGlTZWNyZXQsCiAgfSk7CgogIGF3YWl0IG1vbml0b3JUb2tlbkJhbGFuY2UoCiAgICBsMVByb3ZpZGVyLAogICAgbDFUb2tlbkFkZHJlc3Nlcy5FVEgsCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfRVRIIiwKICAgIG5vdGlmaWNhdGlvbkNsaWVudCwKICAgIGV2ZW50LnNlY3JldHMsCiAgICBjbGllbnQsCiAgICAiRVRIIiwKICAgICJMMSIsCiAgKTsKICBhd2FpdCBtb25pdG9yVG9rZW5CYWxhbmNlKAogICAgbDFQcm92aWRlciwKICAgIGwxVG9rZW5BZGRyZXNzZXMuVEFJS08sCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfVEFJS08iLAogICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgZXZlbnQuc2VjcmV0cywKICAgIGNsaWVudCwKICAgICJUQUlLTyIsCiAgICAiTDEiLAogICk7CiAgYXdhaXQgbW9uaXRvclRva2VuQmFsYW5jZSgKICAgIGwxUHJvdmlkZXIsCiAgICBsMVRva2VuQWRkcmVzc2VzLlVTREMsCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfVVNEQyIsCiAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICBldmVudC5zZWNyZXRzLAogICAgY2xpZW50LAogICAgIlVTREMiLAogICAgIkwxIiwKICApOwogIGF3YWl0IG1vbml0b3JUb2tlbkJhbGFuY2UoCiAgICBsMVByb3ZpZGVyLAogICAgbDFUb2tlbkFkZHJlc3Nlcy5VU0RULAogICAgbDFWYXVsdEFkZHJlc3MsCiAgICAicHJldmlvdXNCYWxhbmNlX0wxX1VTRFQiLAogICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgZXZlbnQuc2VjcmV0cywKICAgIGNsaWVudCwKICAgICJVU0RUIiwKICAgICJMMSIsCiAgKTsKCiAgY29uc29sZS5sb2coYEJhbGFuY2UgbW9uaXRvcmluZyBjb21wbGV0ZWRgKTsKCiAgcmV0dXJuIHRydWU7Cn07ClBLAQIUAAoAAAAAAAAAQVASVlLscBMAAHATAAAIAAAAAAAAAAAAAAAAAAAAAABpbmRleC5qc1BLBQYAAAAAAQABADYAAACWEwAAAAA="}]},"contracts":{"removed":[],"created":[],"updated":[]},"relayers":{"removed":[],"created":[],"updated":[],"relayerKeys":{"removed":[],"created":[],"updated":[]}},"notifications":{"removed":[],"created":[],"updated":[]},"secrets":{"removed":[],"created":[],"updated":[]},"blockExplorerApiKeys":{"removed":[],"created":[],"updated":[]},"forkedNetworks":{"removed":[],"created":[],"updated":[]},"privateNetworks":{"removed":[],"created":[],"updated":[]}} +{"stack":"mystack","timestamp":"2024-09-19T10:45:56.109Z","monitors":{"removed":[],"created":[],"updated":[{"skipABIValidation":true,"alertThreshold":null,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"Defender Monitor: TaikoL1: Pause/Unpause triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]}],"abi":"[{\"type\":\"error\",\"name\":\"AM_ADDRESS_ALREADY_SET\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"spender\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"approved\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ApprovalForAll\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"operationId\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"approvalBits\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"minGuardiansReached\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Authorized\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"authorized\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"BB_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_MINT_DISALLOWED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_CANNOT_RECEIVE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_BURN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INSUFFICIENT_GAS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CONTEXT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_GAS_LIMIT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_VALUE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_MESSAGE_NOT_SENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_OUT_OF_ETH_QUOTA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PROOF_TOO_LARGE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_RETRY_FAILED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_SIGNAL_NOT_RECEIVED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockProposed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"assignedProver\",\"indexed\":true},{\"type\":\"uint96\",\"name\":\"livenessBond\",\"indexed\":false},{\"type\":\"tuple\",\"name\":\"meta\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"depositsProcessed\",\"indexed\":false,\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockVerified\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"stateRoot\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondCredited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondDebited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenChanged\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btokenOld\",\"indexed\":false},{\"type\":\"address\",\"name\":\"btokenNew\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"CLOCK_MODE\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"CalldataTxList\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"txList\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ChainDataSynced\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"kind\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"data\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ConflictingProofs\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"guardian\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"currentProofHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"newProofHash\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"provingPaused\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"DOMAIN_SEPARATOR\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"fromDelegate\",\"indexed\":true},{\"type\":\"address\",\"name\":\"toDelegate\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateVotesChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegate\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"previousBalance\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"newBalance\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EIP712DomainChanged\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ETH_TRANSFER_FAILED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EtherPaymentFailed\",\"inputs\":[{\"type\":\"address\",\"name\":\"to\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"maxGas\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"FUNC_NOT_IMPLEMENTED\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"GAS_OVERHEAD\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"GAS_RESERVE\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN_SET\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_MIN_GUARDIANS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardianApproval\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false},{\"type\":\"bytes\",\"name\":\"proofData\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardiansUpdated\",\"inputs\":[{\"type\":\"uint32\",\"name\":\"version\",\"indexed\":false},{\"type\":\"address[]\",\"name\":\"guardians\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_EXPIRED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"error\",\"name\":\"INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"L1_ALREADY_CONTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_ALREADY_PROVED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_AVAILABLE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOCK_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_CANNOT_CONTEST\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_BLOCK_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_GENESIS_HASH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TIER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TRANSITION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_NOT_ASSIGNED_PROVER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_PROVING_PAUSED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_RECEIVE_DISABLED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TOO_MANY_BLOCKS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TRANSITION_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_PARENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_TRANSITION_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_ACCOUNT_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_INCLUSION_PROOF\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"LocalReportCheckToggled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"checkLocalEnclaveReport\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"MAX_GAS_PAYING_PROVER\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"MIN_MIGRATION_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageProcessed\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"stats\",\"indexed\":false,\"components\":[{\"type\":\"uint32\",\"name\":\"gasUsedInFeeCalc\"},{\"type\":\"uint32\",\"name\":\"proofSize\"},{\"type\":\"uint32\",\"name\":\"numCacheOps\"},{\"type\":\"bool\",\"name\":\"processedByRelayer\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageStatusChanged\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"uint8\",\"name\":\"status\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigratedTo\",\"inputs\":[{\"type\":\"address\",\"name\":\"fromToken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigrationStatusChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"inbound\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrEnclaveUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrEnclave\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrSignerUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrSigner\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingAutoPauseEnabled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"enabled\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingPaused\",\"inputs\":[{\"type\":\"bool\",\"name\":\"paused\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"QeIdentityConfigured\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"indexed\":false,\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}]},{\"type\":\"error\",\"name\":\"REENTRANT_CALL\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"RELAYER_MAX_PROOF_BYTES\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"error\",\"name\":\"RESOLVER_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_INVALID_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_UNEXPECTED_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_ZERO_ADDR\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"name\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumRemoved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"SGX_ALREADY_ATTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_ATTESTATION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_INSTANCE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_RA_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_EMPTY_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_HOPS_WITH_LOOP\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_LAST_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_MID_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_STATE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_SIGNAL_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_UNAUTHORIZED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"SignalSent\",\"inputs\":[{\"type\":\"address\",\"name\":\"app\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"slot\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"StateVariablesUpdated\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"slotB\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"error\",\"name\":\"TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"TT_INVALID_PARAM\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TcbInfoJsonConfigured\",\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"indexed\":false,\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"canonicalChainId\",\"indexed\":false},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferBatch\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256[]\",\"name\":\"ids\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"values\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferSingle\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionContested\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"contester\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"contestBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionProved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"validityBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"URI\",\"inputs\":[{\"type\":\"string\",\"name\":\"value\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_DATA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_ECDSA_SIGNATURE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEAUTHDATA_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEREPORT_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_MEMBER_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_UNSUPPORT_CERTIFICATION_TYPE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_BTOKEN_BLACKLISTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_CTOKEN_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INSUFFICIENT_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INTERFACE_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_AMOUNT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_CTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_NEW_BTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TO_ADDR\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_LAST_MIGRATION_TOO_CLOSE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_TOKEN_ARRAY_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDR_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_VALUE\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"allowance\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"approvals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"bytes32\",\"name\":\"proofHash\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"approvalBits\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\",\"name\":\"approved_\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"authorize\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_addr\"},{\"type\":\"bool\",\"name\":\"_authorize\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"id\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOfBatch\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"accounts\"},{\"type\":\"uint256[]\",\"name\":\"ids\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"batchTransfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"recipients\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"bondBalanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_user\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"btokenDenylist\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"denied\"}]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"canonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"canonicalToBridged\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btoken\"}]},{\"type\":\"function\",\"name\":\"changeBridgedToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctoken\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"address\",\"name\":\"_btokenNew\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btokenOld_\"}]},{\"type\":\"function\",\"name\":\"changeMigrationStatus\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_migratingAddress\"},{\"type\":\"bool\",\"name\":\"_migratingInbound\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"checkLocalEnclaveReport\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"checkpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint32\",\"name\":\"pos\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint32\",\"name\":\"fromBlock\"},{\"type\":\"uint224\",\"name\":\"votes\"}]}]},{\"type\":\"function\",\"name\":\"clock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint48\"}]},{\"type\":\"function\",\"name\":\"configureQeIdentityJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"configureTcbInfoJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"context\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"name\":\"ctx_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"}]}]},{\"type\":\"function\",\"name\":\"decimals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint8\"}]},{\"type\":\"function\",\"name\":\"decodeCert\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"der\"},{\"type\":\"bool\",\"name\":\"isPckCert\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"tuple\",\"name\":\"cert\",\"components\":[{\"type\":\"uint256\",\"name\":\"notBefore\"},{\"type\":\"uint256\",\"name\":\"notAfter\"},{\"type\":\"bytes\",\"name\":\"serialNumber\"},{\"type\":\"bytes\",\"name\":\"tbsCertificate\"},{\"type\":\"bytes\",\"name\":\"pubKey\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bool\",\"name\":\"isPck\"},{\"type\":\"tuple\",\"name\":\"pck\",\"components\":[{\"type\":\"string\",\"name\":\"commonName\"},{\"type\":\"string\",\"name\":\"issuerName\"},{\"type\":\"tuple\",\"name\":\"sgxExtension\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint256[]\",\"name\":\"sgxTcbCompSvnArr\"}]}]}]}]},{\"type\":\"function\",\"name\":\"decreaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"subtractedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"delegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegateBySig\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"},{\"type\":\"uint256\",\"name\":\"nonce\"},{\"type\":\"uint256\",\"name\":\"expiry\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegates\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"depositBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"eip712Domain\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes1\",\"name\":\"fields\"},{\"type\":\"string\",\"name\":\"name\"},{\"type\":\"string\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"verifyingContract\"},{\"type\":\"bytes32\",\"name\":\"salt\"},{\"type\":\"uint256[]\",\"name\":\"extensions\"}]},{\"type\":\"function\",\"name\":\"enableProvingAutoPause\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"enableTaikoTokenAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"failMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getApproved\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"blk_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]}]},{\"type\":\"function\",\"name\":\"getConfig\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"uint64\",\"name\":\"blockMaxProposals\"},{\"type\":\"uint64\",\"name\":\"blockRingBufferSize\"},{\"type\":\"uint64\",\"name\":\"maxBlocksToVerify\"},{\"type\":\"uint32\",\"name\":\"blockMaxGasLimit\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint8\",\"name\":\"stateRootSyncInternal\"},{\"type\":\"bool\",\"name\":\"checkEOAForCalldataDA\"}]}]},{\"type\":\"function\",\"name\":\"getLastSyncedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getLastVerifiedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getMessageMinGasLimit\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"dataLength\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"getMinTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"uint16\"}]},{\"type\":\"function\",\"name\":\"getPastTotalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getPastVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getSignalSlot\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"getStateVariables\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"getSyncedChainData\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"chainData_\"}]},{\"type\":\"function\",\"name\":\"getTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint16\",\"name\":\"_tierId\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"verifierName\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint24\",\"name\":\"cooldownWindow\"},{\"type\":\"uint16\",\"name\":\"provingWindow\"},{\"type\":\"uint8\",\"name\":\"maxBlocksToVerifyPerProof\"}]}]},{\"type\":\"function\",\"name\":\"getTierIds\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint16[]\",\"name\":\"tiers_\"}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"uint32\",\"name\":\"_tid\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_parentHash\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getVerifiedBlockProver\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"prover_\"}]},{\"type\":\"function\",\"name\":\"getVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"guardianIds\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"guardian\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"id\"}]},{\"type\":\"function\",\"name\":\"guardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"hashAssignment\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_assignment\",\"components\":[{\"type\":\"address\",\"name\":\"feeToken\"},{\"type\":\"uint64\",\"name\":\"expiry\"},{\"type\":\"uint64\",\"name\":\"maxBlockId\"},{\"type\":\"uint64\",\"name\":\"maxProposedIn\"},{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"tuple[]\",\"name\":\"tierFees\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint128\",\"name\":\"fee\"}]},{\"type\":\"bytes\",\"name\":\"signature\"}]},{\"type\":\"address\",\"name\":\"_taikoL1Address\"},{\"type\":\"address\",\"name\":\"_blockProposer\"},{\"type\":\"address\",\"name\":\"_assignedProver\"},{\"type\":\"bytes32\",\"name\":\"_blobHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"hashMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"impl\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"inNonReentrant\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"increaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"addedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"bytes32\",\"name\":\"_genesisBlockHash\"},{\"type\":\"bool\",\"name\":\"_toPause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"sigVerifyLibAddr\"},{\"type\":\"address\",\"name\":\"pemCertLibAddr\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"uint8\",\"name\":\"_decimals\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init2\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"isApprovedForAll\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"address\",\"name\":\"operator\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isAuthorized\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"addr\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"authorized\"}]},{\"type\":\"function\",\"name\":\"isChainDataSynced\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isDestChainEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"enabled_\"},{\"type\":\"address\",\"name\":\"destBridge_\"}]},{\"type\":\"function\",\"name\":\"isMessageFailed\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isSignalSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"lastMigrationStart\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"timestamp\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"latestProofHash\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"blockId\"}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"hash\"}]},{\"type\":\"function\",\"name\":\"messageStatus\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status\"}]},{\"type\":\"function\",\"name\":\"migratingAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"migratingInbound\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"minGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mintBatch\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256[]\",\"name\":\"_tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"_amounts\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"nextMessageId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nonces\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"numCheckpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"numGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"onBlockProposed\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_blk\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]},{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onERC1155BatchReceived\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256[]\"},{\"type\":\"uint256[]\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC1155Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC721Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onMessageInvocation\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onMessageRecalled\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"ownerOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseProving\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_pause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseTaikoProving\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pemCertLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"permit\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"uint256\",\"name\":\"deadline\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"processMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status_\"},{\"type\":\"uint8\",\"name\":\"reason_\"}]},{\"type\":\"function\",\"name\":\"proposeBlock\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_params\"},{\"type\":\"bytes\",\"name\":\"_txList\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"meta_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"deposits_\",\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"function\",\"name\":\"proveBlock\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes\",\"name\":\"_input\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"proveSignalReceived\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"numCacheOps_\"}]},{\"type\":\"function\",\"name\":\"provingAutoPauseEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"qeIdentity\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"}]},{\"type\":\"function\",\"name\":\"recallMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"removeRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"retryMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bool\",\"name\":\"_isLastAttempt\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeBatchTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256[]\",\"name\":\"ids\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"id\"},{\"type\":\"uint256\",\"name\":\"amount\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"selfDelegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_anyToken\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sendMessage\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash_\"},{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendSignal\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256[]\",\"name\":\"tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256\",\"name\":\"amount\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"serialNumIsRevoked\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"idx\"},{\"type\":\"bytes\",\"name\":\"serialNum\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"revoked\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setApprovalForAll\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"operator\"},{\"type\":\"bool\",\"name\":\"approved\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setGuardians\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_newGuardians\"},{\"type\":\"uint8\",\"name\":\"_minGuardians\"},{\"type\":\"bool\",\"name\":\"_clearData\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrEnclave\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrEnclave\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrSigner\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrSigner\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sigVerifyLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"signalForChainData\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"signalForFailedMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"source\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"splitCertificateChain\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"pemChain\"},{\"type\":\"uint256\",\"name\":\"size\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"bytes[]\",\"name\":\"certs\"}]},{\"type\":\"function\",\"name\":\"srcChainId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"srcToken\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"state\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"__reserve1\"},{\"type\":\"tuple\",\"name\":\"slotA\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"name\":\"slotB\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"supportsInterface\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes4\",\"name\":\"_interfaceId\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"syncChainData\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"tcbInfo\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"}],\"outputs\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"}]},{\"type\":\"function\",\"name\":\"toggleLocalReportCheck\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"tokenURI\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"topBlockId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"kind\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId\"}]},{\"type\":\"function\",\"name\":\"totalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"transfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"trustedUserMrEnclave\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"enclave\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"trustedUserMrSigner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"signer\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"uri\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"verifyAttestation\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"}]},{\"type\":\"function\",\"name\":\"verifyBlocks\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_maxBlocksToVerify\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyES256Signature\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"tbs\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bytes\",\"name\":\"publicKey\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"sigValid\"}]},{\"type\":\"function\",\"name\":\"verifyParsedQuote\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"v3quote\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"bool\"},{\"type\":\"bytes\"}]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifySignalReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"version\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"withdrawBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"withdrawTaikoToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"constructor\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"es256Verifier\"}]}]","addresses":["0x02772b7B3a5Bea0141C993Dbb8D0733C19F46169","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x11A9ebA17EbF92b40fcf9a640Ebbc47Db6fBeab0","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0x39E4C1214e733639d059979079A151911e42791d","0x47bB416ee947fE4a4b655011aF7d6E3A1B80E6e9","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0x579f40D0BE111b823962043702cabe6Aaa290780","0x67281b15aee4d6b805bc755e439abd524dd8da8d","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0xa25e645ff9897b0282e5f17d36de5bca4ec21d6e","0xaf145913EA4a56BE22E120ED9C24589659881702","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0xc4096E9ff1526Bd1840B65e9f45695135aC12De7","0xcc5d488073FA918cBbd73B9A523F3858C4de7372","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC"]}],"createdAt":"2024-08-27T09:44:01.744Z","subscriberId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","name":"TaikoL1: Pause/Unpause","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","blockWatcherId":"mainnet-6","paused":false,"stackResourceId":"mystack.taiko-l-1-pause-unpause","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"LOW","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet SGX Prover triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceAdded(uint256,address,address,uint256)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceDeleted(uint256,address)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[{"functionSignature":"verifyProof((bytes32,bytes32,address,uint64,bool,bool,address),(bytes32,bytes32,bytes32,bytes32),(uint16,bytes))","expression":null}],"eventConditions":[]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]}]","addresses":["0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81"]}],"createdAt":"2024-05-02T14:09:42.804Z","subscriberId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","name":"Taiko Mainnet SGX Prover","network":"mainnet","riskCategory":"TECHNICAL","monitorId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-sgx-prover","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Address Managers triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AddressSet(uint64,bytes32,address,address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x579f40D0BE111b823962043702cabe6Aaa290780"]}],"createdAt":"2024-05-02T14:00:18.874Z","subscriberId":"3919cb83-487f-4432-88fa-33bbe4361fce","name":"Taiko Mainnet Address Managers","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"3919cb83-487f-4432-88fa-33bbe4361fce","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-address-managers","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Essential Contracts triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AdminChanged(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"BeaconUpgraded(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Initialized(uint8)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferStarted(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferred(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Upgraded(address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0xaf145913EA4a56BE22E120ED9C24589659881702","0x579f40D0BE111b823962043702cabe6Aaa290780","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3"]}],"createdAt":"2024-05-02T13:49:54.192Z","subscriberId":"67a53521-3d4a-4de4-92ab-ede82cc45644","name":"Taiko Mainnet Essential Contracts","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"67a53521-3d4a-4de4-92ab-ede82cc45644","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-essential-contracts","type":"BLOCK"}]},"actions":{"removed":[],"created":[],"updated":[{"autotaskId":"86964fd3-3da8-4501-a572-cbf51045f861","actionId":"86964fd3-3da8-4501-a572-cbf51045f861","name":"ERC20Vault: Balance Drop Test","paused":false,"trigger":{"cron":null,"frequencyMinutes":15,"type":"schedule"},"codeDigest":"+Y75bpyOzEuCm0y95ZczKkySm4PgLyQQt6ASpaB08Lk=","stackResourceId":"mystack.erc-20-vault-balance-drop","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVASVlLscBMAAHATAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBFUkMyMF9BQkkgPSBbCiAgewogICAgY29uc3RhbnQ6IHRydWUsCiAgICBpbnB1dHM6IFt7IG5hbWU6ICJfb3duZXIiLCB0eXBlOiAiYWRkcmVzcyIgfV0sCiAgICBuYW1lOiAiYmFsYW5jZU9mIiwKICAgIG91dHB1dHM6IFt7IG5hbWU6ICJiYWxhbmNlIiwgdHlwZTogInVpbnQyNTYiIH1dLAogICAgcGF5YWJsZTogZmFsc2UsCiAgICBzdGF0ZU11dGFiaWxpdHk6ICJ2aWV3IiwKICAgIHR5cGU6ICJmdW5jdGlvbiIsCiAgfSwKXTsKCmFzeW5jIGZ1bmN0aW9uIGdldEVSQzIwQmFsYW5jZShwcm92aWRlciwgdG9rZW5BZGRyZXNzLCB2YXVsdEFkZHJlc3MpIHsKICBjb25zdCBjb250cmFjdCA9IG5ldyBldGhlcnMuQ29udHJhY3QodG9rZW5BZGRyZXNzLCBFUkMyMF9BQkksIHByb3ZpZGVyKTsKICByZXR1cm4gYXdhaXQgY29udHJhY3QuYmFsYW5jZU9mKHZhdWx0QWRkcmVzcyk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGdldE5hdGl2ZVRva2VuQmFsYW5jZShwcm92aWRlciwgdmF1bHRBZGRyZXNzKSB7CiAgcmV0dXJuIGF3YWl0IHByb3ZpZGVyLmdldEJhbGFuY2UodmF1bHRBZGRyZXNzKTsKfQoKYXN5bmMgZnVuY3Rpb24gbW9uaXRvclRva2VuQmFsYW5jZSgKICBwcm92aWRlciwKICB0b2tlbkFkZHJlc3MsCiAgdmF1bHRBZGRyZXNzLAogIHByZXZpb3VzQmFsYW5jZUtleSwKICBub3RpZmljYXRpb25DbGllbnQsCiAgc2VjcmV0cywKICBjbGllbnQsCiAgdG9rZW5OYW1lLAogIG5ldHdvcmtOYW1lLAopIHsKICBjb25zb2xlLmxvZyhgTW9uaXRvcmluZyAke3Rva2VuTmFtZX0gYmFsYW5jZSBvbiAke25ldHdvcmtOYW1lfWApOwogIGNvbnN0IHByZXZpb3VzQmFsYW5jZSA9IGV0aGVycy5CaWdOdW1iZXIuZnJvbSgKICAgIHNlY3JldHNbcHJldmlvdXNCYWxhbmNlS2V5XSB8fCAiMCIsCiAgKTsKICBjb25zb2xlLmxvZygKICAgIGBQcmV2aW91cyAke3Rva2VuTmFtZX0gQmFsYW5jZTogJHtldGhlcnMudXRpbHMuZm9ybWF0VW5pdHMoCiAgICAgIHByZXZpb3VzQmFsYW5jZSwKICAgICAgMTgsCiAgICApfWAsCiAgKTsKCiAgbGV0IGN1cnJlbnRCYWxhbmNlOwogIGlmICh0b2tlbk5hbWUgPT09ICJFVEgiKSB7CiAgICBjdXJyZW50QmFsYW5jZSA9IGF3YWl0IGdldE5hdGl2ZVRva2VuQmFsYW5jZShwcm92aWRlciwgdmF1bHRBZGRyZXNzKTsKICB9IGVsc2UgewogICAgY3VycmVudEJhbGFuY2UgPSBhd2FpdCBnZXRFUkMyMEJhbGFuY2UoCiAgICAgIHByb3ZpZGVyLAogICAgICB0b2tlbkFkZHJlc3MsCiAgICAgIHZhdWx0QWRkcmVzcywKICAgICk7CiAgfQogIGNvbnNvbGUubG9nKAogICAgYEN1cnJlbnQgJHt0b2tlbk5hbWV9IEJhbGFuY2U6ICR7ZXRoZXJzLnV0aWxzLmZvcm1hdFVuaXRzKAogICAgICBjdXJyZW50QmFsYW5jZSwKICAgICAgMTgsCiAgICApfWAsCiAgKTsKCiAgaWYgKCFwcmV2aW91c0JhbGFuY2UuaXNaZXJvKCkpIHsKICAgIGNvbnN0IGRyb3BQZXJjZW50YWdlID0gcHJldmlvdXNCYWxhbmNlCiAgICAgIC5zdWIoY3VycmVudEJhbGFuY2UpCiAgICAgIC5tdWwoMTAwKQogICAgICAuZGl2KHByZXZpb3VzQmFsYW5jZSkKICAgICAgLnRvTnVtYmVyKCk7CiAgICBjb25zb2xlLmxvZygKICAgICAgYENhbGN1bGF0ZWQgZHJvcCBwZXJjZW50YWdlIGZvciAke3Rva2VuTmFtZX06ICR7ZHJvcFBlcmNlbnRhZ2V9JWAsCiAgICApOwoKICAgIGlmIChkcm9wUGVyY2VudGFnZSA+PSA1KSB7CiAgICAgIGNvbnN0IG1lc3NhZ2UgPSBgQWxlcnQ6ICR7dG9rZW5OYW1lfSBiYWxhbmNlIGhhcyBkcm9wcGVkIGJ5ICR7ZHJvcFBlcmNlbnRhZ2V9JSBvbiAke25ldHdvcmtOYW1lfS5cblByZXZpb3VzIEJhbGFuY2U6ICR7ZXRoZXJzLnV0aWxzLmZvcm1hdFVuaXRzKAogICAgICAgIHByZXZpb3VzQmFsYW5jZSwKICAgICAgICAxOCwKICAgICAgKX1cbkN1cnJlbnQgQmFsYW5jZTogJHtldGhlcnMudXRpbHMuZm9ybWF0VW5pdHMoY3VycmVudEJhbGFuY2UsIDE4KX1gOwogICAgICBhbGVydE9yZygKICAgICAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICAgICAgYOKaoO+4jyAke25ldHdvcmtOYW1lfTogJHt0b2tlbk5hbWV9IEJhbGFuY2UgRHJvcCBBbGVydGAsCiAgICAgICAgbWVzc2FnZSwKICAgICAgKTsKICAgIH0gZWxzZSB7CiAgICAgIGNvbnNvbGUubG9nKAogICAgICAgIGBObyBzaWduaWZpY2FudCAke3Rva2VuTmFtZX0gYmFsYW5jZSBkcm9wIGRldGVjdGVkIG9uICR7bmV0d29ya05hbWV9YCwKICAgICAgKTsKICAgIH0KICB9IGVsc2UgewogICAgY29uc29sZS5sb2coCiAgICAgIGBObyBwcmV2aW91cyAke3Rva2VuTmFtZX0gYmFsYW5jZSB0byBjb21wYXJlIG9uICR7bmV0d29ya05hbWV9YCwKICAgICk7CiAgfQoKICBhd2FpdCBzdG9yZVByZXZpb3VzQmFsYW5jZShjbGllbnQsIHByZXZpb3VzQmFsYW5jZUtleSwgY3VycmVudEJhbGFuY2UpOwp9CgpmdW5jdGlvbiBhbGVydE9yZyhub3RpZmljYXRpb25DbGllbnQsIHN1YmplY3QsIG1lc3NhZ2UpIHsKICBub3RpZmljYXRpb25DbGllbnQuc2VuZCh7CiAgICBjaGFubmVsQWxpYXM6ICJkaXNjb3JkX2JyaWRnaW5nIiwKICAgIHN1YmplY3QsCiAgICBtZXNzYWdlLAogIH0pOwp9Cgphc3luYyBmdW5jdGlvbiBzdG9yZVByZXZpb3VzQmFsYW5jZShjbGllbnQsIGtleSwgbmV3QmFsYW5jZSkgewogIGNvbnNvbGUubG9nKAogICAgYFN0b3JpbmcgcHJldmlvdXMgYmFsYW5jZSB1bmRlciBrZXk6ICR7a2V5fSwgdmFsdWU6ICR7bmV3QmFsYW5jZS50b1N0cmluZygpfWAsCiAgKTsKICBjb25zdCBib2R5ID0gewogICAgZGVsZXRlczogW10sCiAgICBzZWNyZXRzOiB7CiAgICAgIFtrZXldOiBuZXdCYWxhbmNlLnRvU3RyaW5nKCksCiAgICB9LAogIH07CiAgYXdhaXQgY2xpZW50LmFjdGlvbi5jcmVhdGVTZWNyZXRzKGJvZHkpOwp9CgpmdW5jdGlvbiBjcmVhdGVQcm92aWRlcihhcGlLZXksIGFwaVNlY3JldCwgcmVsYXllckFwaUtleSwgcmVsYXllckFwaVNlY3JldCkgewogIGNvbnNvbGUubG9nKGBDcmVhdGluZyBwcm92aWRlciB3aXRoIEFQSSBrZXlzYCk7CiAgY29uc3QgY2xpZW50ID0gbmV3IERlZmVuZGVyKHsKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHJlbGF5ZXJBcGlLZXksCiAgICByZWxheWVyQXBpU2VjcmV0LAogIH0pOwoKICByZXR1cm4gY2xpZW50LnJlbGF5U2lnbmVyLmdldFByb3ZpZGVyKCk7Cn0KCmV4cG9ydHMuaGFuZGxlciA9IGFzeW5jIGZ1bmN0aW9uIChldmVudCwgY29udGV4dCkgewogIGNvbnN0IHsgbm90aWZpY2F0aW9uQ2xpZW50IH0gPSBjb250ZXh0OwogIGNvbnN0IHsgYXBpS2V5LCBhcGlTZWNyZXQsIHRhaWtvTDFBcGlLZXksIHRhaWtvTDFBcGlTZWNyZXQgfSA9IGV2ZW50LnNlY3JldHM7CgogIGNvbnNvbGUubG9nKGBTdGFydGluZyBiYWxhbmNlIG1vbml0b3JpbmcgZm9yIEwxYCk7CgogIGNvbnN0IGwxUHJvdmlkZXIgPSBjcmVhdGVQcm92aWRlcigKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHRhaWtvTDFBcGlLZXksCiAgICB0YWlrb0wxQXBpU2VjcmV0LAogICk7CgogIGNvbnN0IGwxVmF1bHRBZGRyZXNzID0gIjB4OTk2MjgyY0ExMUU1REViNkI1RDEyMkNDM0I5QTFGY0FBRDQ0MTVBYiI7CgogIGNvbnN0IGwxVG9rZW5BZGRyZXNzZXMgPSB7CiAgICBFVEg6IG51bGwsCiAgICBUQUlLTzogZXRoZXJzLnV0aWxzLmdldEFkZHJlc3MoCiAgICAgICIweDEwZGVhNjc0NzhjNUY4QzVFMkQ5MGU1RTlCMjZkQmU2MGM1NGQ4MDAiLAogICAgKSwKICAgIFVTREM6IGV0aGVycy51dGlscy5nZXRBZGRyZXNzKCIweEEwYjg2OTkxYzYyMThiMzZjMWQxOUQ0YTJlOUViMGNFMzYwNmVCNDgiKSwKICAgIFVTRFQ6IGV0aGVycy51dGlscy5nZXRBZGRyZXNzKCIweGRBQzE3Rjk1OEQyZWU1MjNhMjIwNjIwNjk5NDU5N0MxM0Q4MzFlYzciKSwKICB9OwoKICBjb25zdCBjbGllbnQgPSBuZXcgRGVmZW5kZXIoewogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgdGFpa29MMUFwaUtleSwKICAgIHRhaWtvTDFBcGlTZWNyZXQsCiAgfSk7CgogIGF3YWl0IG1vbml0b3JUb2tlbkJhbGFuY2UoCiAgICBsMVByb3ZpZGVyLAogICAgbDFUb2tlbkFkZHJlc3Nlcy5FVEgsCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfRVRIIiwKICAgIG5vdGlmaWNhdGlvbkNsaWVudCwKICAgIGV2ZW50LnNlY3JldHMsCiAgICBjbGllbnQsCiAgICAiRVRIIiwKICAgICJMMSIsCiAgKTsKICBhd2FpdCBtb25pdG9yVG9rZW5CYWxhbmNlKAogICAgbDFQcm92aWRlciwKICAgIGwxVG9rZW5BZGRyZXNzZXMuVEFJS08sCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfVEFJS08iLAogICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgZXZlbnQuc2VjcmV0cywKICAgIGNsaWVudCwKICAgICJUQUlLTyIsCiAgICAiTDEiLAogICk7CiAgYXdhaXQgbW9uaXRvclRva2VuQmFsYW5jZSgKICAgIGwxUHJvdmlkZXIsCiAgICBsMVRva2VuQWRkcmVzc2VzLlVTREMsCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfVVNEQyIsCiAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICBldmVudC5zZWNyZXRzLAogICAgY2xpZW50LAogICAgIlVTREMiLAogICAgIkwxIiwKICApOwogIGF3YWl0IG1vbml0b3JUb2tlbkJhbGFuY2UoCiAgICBsMVByb3ZpZGVyLAogICAgbDFUb2tlbkFkZHJlc3Nlcy5VU0RULAogICAgbDFWYXVsdEFkZHJlc3MsCiAgICAicHJldmlvdXNCYWxhbmNlX0wxX1VTRFQiLAogICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgZXZlbnQuc2VjcmV0cywKICAgIGNsaWVudCwKICAgICJVU0RUIiwKICAgICJMMSIsCiAgKTsKCiAgY29uc29sZS5sb2coYEJhbGFuY2UgbW9uaXRvcmluZyBjb21wbGV0ZWRgKTsKCiAgcmV0dXJuIHRydWU7Cn07ClBLAQIUAAoAAAAAAAAAQVASVlLscBMAAHATAAAIAAAAAAAAAAAAAAAAAAAAAABpbmRleC5qc1BLBQYAAAAAAQABADYAAACWEwAAAAA="}]},"contracts":{"removed":[],"created":[],"updated":[]},"relayers":{"removed":[],"created":[],"updated":[],"relayerKeys":{"removed":[],"created":[],"updated":[]}},"notifications":{"removed":[],"created":[],"updated":[{"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","type":"discord","name":"discord_bridging","paused":false,"config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"stackResourceId":"mystack.discord-bridging"}]},"secrets":{"removed":[],"created":[],"updated":[]},"blockExplorerApiKeys":{"removed":[],"created":[],"updated":[]},"forkedNetworks":{"removed":[],"created":[],"updated":[]},"privateNetworks":{"removed":[],"created":[],"updated":[]}} +{"stack":"mystack","timestamp":"2024-09-20T10:05:14.785Z","monitors":{"removed":[],"created":[],"updated":[{"skipABIValidation":true,"alertThreshold":null,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"Defender Monitor: TaikoL1: Pause/Unpause triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]}],"abi":"[{\"type\":\"error\",\"name\":\"AM_ADDRESS_ALREADY_SET\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"spender\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"approved\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ApprovalForAll\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"operationId\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"approvalBits\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"minGuardiansReached\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Authorized\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"authorized\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"BB_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_MINT_DISALLOWED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_CANNOT_RECEIVE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_BURN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INSUFFICIENT_GAS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CONTEXT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_GAS_LIMIT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_VALUE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_MESSAGE_NOT_SENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_OUT_OF_ETH_QUOTA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PROOF_TOO_LARGE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_RETRY_FAILED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_SIGNAL_NOT_RECEIVED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockProposed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"assignedProver\",\"indexed\":true},{\"type\":\"uint96\",\"name\":\"livenessBond\",\"indexed\":false},{\"type\":\"tuple\",\"name\":\"meta\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"depositsProcessed\",\"indexed\":false,\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockVerified\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"stateRoot\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondCredited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondDebited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenChanged\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btokenOld\",\"indexed\":false},{\"type\":\"address\",\"name\":\"btokenNew\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"CLOCK_MODE\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"CalldataTxList\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"txList\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ChainDataSynced\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"kind\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"data\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ConflictingProofs\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"guardian\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"currentProofHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"newProofHash\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"provingPaused\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"DOMAIN_SEPARATOR\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"fromDelegate\",\"indexed\":true},{\"type\":\"address\",\"name\":\"toDelegate\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateVotesChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegate\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"previousBalance\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"newBalance\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EIP712DomainChanged\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ETH_TRANSFER_FAILED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EtherPaymentFailed\",\"inputs\":[{\"type\":\"address\",\"name\":\"to\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"maxGas\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"FUNC_NOT_IMPLEMENTED\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"GAS_OVERHEAD\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"GAS_RESERVE\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN_SET\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_MIN_GUARDIANS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardianApproval\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false},{\"type\":\"bytes\",\"name\":\"proofData\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardiansUpdated\",\"inputs\":[{\"type\":\"uint32\",\"name\":\"version\",\"indexed\":false},{\"type\":\"address[]\",\"name\":\"guardians\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_EXPIRED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"error\",\"name\":\"INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"L1_ALREADY_CONTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_ALREADY_PROVED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_AVAILABLE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOCK_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_CANNOT_CONTEST\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_BLOCK_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_GENESIS_HASH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TIER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TRANSITION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_NOT_ASSIGNED_PROVER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_PROVING_PAUSED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_RECEIVE_DISABLED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TOO_MANY_BLOCKS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TRANSITION_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_PARENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_TRANSITION_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_ACCOUNT_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_INCLUSION_PROOF\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"LocalReportCheckToggled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"checkLocalEnclaveReport\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"MAX_GAS_PAYING_PROVER\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"MIN_MIGRATION_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageProcessed\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"stats\",\"indexed\":false,\"components\":[{\"type\":\"uint32\",\"name\":\"gasUsedInFeeCalc\"},{\"type\":\"uint32\",\"name\":\"proofSize\"},{\"type\":\"uint32\",\"name\":\"numCacheOps\"},{\"type\":\"bool\",\"name\":\"processedByRelayer\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageStatusChanged\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"uint8\",\"name\":\"status\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigratedTo\",\"inputs\":[{\"type\":\"address\",\"name\":\"fromToken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigrationStatusChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"inbound\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrEnclaveUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrEnclave\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrSignerUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrSigner\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingAutoPauseEnabled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"enabled\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingPaused\",\"inputs\":[{\"type\":\"bool\",\"name\":\"paused\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"QeIdentityConfigured\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"indexed\":false,\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}]},{\"type\":\"error\",\"name\":\"REENTRANT_CALL\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"RELAYER_MAX_PROOF_BYTES\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"error\",\"name\":\"RESOLVER_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_INVALID_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_UNEXPECTED_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_ZERO_ADDR\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"name\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumRemoved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"SGX_ALREADY_ATTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_ATTESTATION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_INSTANCE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_RA_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_EMPTY_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_HOPS_WITH_LOOP\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_LAST_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_MID_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_STATE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_SIGNAL_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_UNAUTHORIZED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"SignalSent\",\"inputs\":[{\"type\":\"address\",\"name\":\"app\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"slot\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"StateVariablesUpdated\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"slotB\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"error\",\"name\":\"TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"TT_INVALID_PARAM\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TcbInfoJsonConfigured\",\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"indexed\":false,\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"canonicalChainId\",\"indexed\":false},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferBatch\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256[]\",\"name\":\"ids\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"values\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferSingle\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionContested\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"contester\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"contestBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionProved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"validityBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"URI\",\"inputs\":[{\"type\":\"string\",\"name\":\"value\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_DATA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_ECDSA_SIGNATURE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEAUTHDATA_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEREPORT_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_MEMBER_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_UNSUPPORT_CERTIFICATION_TYPE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_BTOKEN_BLACKLISTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_CTOKEN_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INSUFFICIENT_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INTERFACE_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_AMOUNT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_CTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_NEW_BTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TO_ADDR\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_LAST_MIGRATION_TOO_CLOSE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_TOKEN_ARRAY_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDR_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_VALUE\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"allowance\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"approvals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"bytes32\",\"name\":\"proofHash\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"approvalBits\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\",\"name\":\"approved_\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"authorize\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_addr\"},{\"type\":\"bool\",\"name\":\"_authorize\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"id\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOfBatch\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"accounts\"},{\"type\":\"uint256[]\",\"name\":\"ids\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"batchTransfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"recipients\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"bondBalanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_user\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"btokenDenylist\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"denied\"}]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"canonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"canonicalToBridged\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btoken\"}]},{\"type\":\"function\",\"name\":\"changeBridgedToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctoken\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"address\",\"name\":\"_btokenNew\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btokenOld_\"}]},{\"type\":\"function\",\"name\":\"changeMigrationStatus\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_migratingAddress\"},{\"type\":\"bool\",\"name\":\"_migratingInbound\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"checkLocalEnclaveReport\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"checkpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint32\",\"name\":\"pos\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint32\",\"name\":\"fromBlock\"},{\"type\":\"uint224\",\"name\":\"votes\"}]}]},{\"type\":\"function\",\"name\":\"clock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint48\"}]},{\"type\":\"function\",\"name\":\"configureQeIdentityJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"configureTcbInfoJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"context\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"name\":\"ctx_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"}]}]},{\"type\":\"function\",\"name\":\"decimals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint8\"}]},{\"type\":\"function\",\"name\":\"decodeCert\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"der\"},{\"type\":\"bool\",\"name\":\"isPckCert\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"tuple\",\"name\":\"cert\",\"components\":[{\"type\":\"uint256\",\"name\":\"notBefore\"},{\"type\":\"uint256\",\"name\":\"notAfter\"},{\"type\":\"bytes\",\"name\":\"serialNumber\"},{\"type\":\"bytes\",\"name\":\"tbsCertificate\"},{\"type\":\"bytes\",\"name\":\"pubKey\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bool\",\"name\":\"isPck\"},{\"type\":\"tuple\",\"name\":\"pck\",\"components\":[{\"type\":\"string\",\"name\":\"commonName\"},{\"type\":\"string\",\"name\":\"issuerName\"},{\"type\":\"tuple\",\"name\":\"sgxExtension\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint256[]\",\"name\":\"sgxTcbCompSvnArr\"}]}]}]}]},{\"type\":\"function\",\"name\":\"decreaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"subtractedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"delegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegateBySig\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"},{\"type\":\"uint256\",\"name\":\"nonce\"},{\"type\":\"uint256\",\"name\":\"expiry\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegates\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"depositBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"eip712Domain\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes1\",\"name\":\"fields\"},{\"type\":\"string\",\"name\":\"name\"},{\"type\":\"string\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"verifyingContract\"},{\"type\":\"bytes32\",\"name\":\"salt\"},{\"type\":\"uint256[]\",\"name\":\"extensions\"}]},{\"type\":\"function\",\"name\":\"enableProvingAutoPause\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"enableTaikoTokenAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"failMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getApproved\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"blk_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]}]},{\"type\":\"function\",\"name\":\"getConfig\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"uint64\",\"name\":\"blockMaxProposals\"},{\"type\":\"uint64\",\"name\":\"blockRingBufferSize\"},{\"type\":\"uint64\",\"name\":\"maxBlocksToVerify\"},{\"type\":\"uint32\",\"name\":\"blockMaxGasLimit\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint8\",\"name\":\"stateRootSyncInternal\"},{\"type\":\"bool\",\"name\":\"checkEOAForCalldataDA\"}]}]},{\"type\":\"function\",\"name\":\"getLastSyncedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getLastVerifiedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getMessageMinGasLimit\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"dataLength\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"getMinTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"uint16\"}]},{\"type\":\"function\",\"name\":\"getPastTotalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getPastVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getSignalSlot\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"getStateVariables\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"getSyncedChainData\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"chainData_\"}]},{\"type\":\"function\",\"name\":\"getTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint16\",\"name\":\"_tierId\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"verifierName\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint24\",\"name\":\"cooldownWindow\"},{\"type\":\"uint16\",\"name\":\"provingWindow\"},{\"type\":\"uint8\",\"name\":\"maxBlocksToVerifyPerProof\"}]}]},{\"type\":\"function\",\"name\":\"getTierIds\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint16[]\",\"name\":\"tiers_\"}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"uint32\",\"name\":\"_tid\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_parentHash\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getVerifiedBlockProver\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"prover_\"}]},{\"type\":\"function\",\"name\":\"getVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"guardianIds\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"guardian\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"id\"}]},{\"type\":\"function\",\"name\":\"guardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"hashAssignment\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_assignment\",\"components\":[{\"type\":\"address\",\"name\":\"feeToken\"},{\"type\":\"uint64\",\"name\":\"expiry\"},{\"type\":\"uint64\",\"name\":\"maxBlockId\"},{\"type\":\"uint64\",\"name\":\"maxProposedIn\"},{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"tuple[]\",\"name\":\"tierFees\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint128\",\"name\":\"fee\"}]},{\"type\":\"bytes\",\"name\":\"signature\"}]},{\"type\":\"address\",\"name\":\"_taikoL1Address\"},{\"type\":\"address\",\"name\":\"_blockProposer\"},{\"type\":\"address\",\"name\":\"_assignedProver\"},{\"type\":\"bytes32\",\"name\":\"_blobHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"hashMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"impl\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"inNonReentrant\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"increaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"addedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"bytes32\",\"name\":\"_genesisBlockHash\"},{\"type\":\"bool\",\"name\":\"_toPause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"sigVerifyLibAddr\"},{\"type\":\"address\",\"name\":\"pemCertLibAddr\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"uint8\",\"name\":\"_decimals\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init2\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"isApprovedForAll\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"address\",\"name\":\"operator\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isAuthorized\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"addr\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"authorized\"}]},{\"type\":\"function\",\"name\":\"isChainDataSynced\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isDestChainEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"enabled_\"},{\"type\":\"address\",\"name\":\"destBridge_\"}]},{\"type\":\"function\",\"name\":\"isMessageFailed\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isSignalSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"lastMigrationStart\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"timestamp\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"latestProofHash\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"blockId\"}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"hash\"}]},{\"type\":\"function\",\"name\":\"messageStatus\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status\"}]},{\"type\":\"function\",\"name\":\"migratingAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"migratingInbound\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"minGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mintBatch\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256[]\",\"name\":\"_tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"_amounts\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"nextMessageId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nonces\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"numCheckpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"numGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"onBlockProposed\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_blk\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]},{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onERC1155BatchReceived\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256[]\"},{\"type\":\"uint256[]\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC1155Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC721Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onMessageInvocation\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onMessageRecalled\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"ownerOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseProving\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_pause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseTaikoProving\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pemCertLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"permit\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"uint256\",\"name\":\"deadline\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"processMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status_\"},{\"type\":\"uint8\",\"name\":\"reason_\"}]},{\"type\":\"function\",\"name\":\"proposeBlock\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_params\"},{\"type\":\"bytes\",\"name\":\"_txList\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"meta_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"deposits_\",\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"function\",\"name\":\"proveBlock\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes\",\"name\":\"_input\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"proveSignalReceived\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"numCacheOps_\"}]},{\"type\":\"function\",\"name\":\"provingAutoPauseEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"qeIdentity\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"}]},{\"type\":\"function\",\"name\":\"recallMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"removeRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"retryMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bool\",\"name\":\"_isLastAttempt\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeBatchTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256[]\",\"name\":\"ids\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"id\"},{\"type\":\"uint256\",\"name\":\"amount\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"selfDelegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_anyToken\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sendMessage\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash_\"},{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendSignal\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256[]\",\"name\":\"tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256\",\"name\":\"amount\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"serialNumIsRevoked\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"idx\"},{\"type\":\"bytes\",\"name\":\"serialNum\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"revoked\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setApprovalForAll\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"operator\"},{\"type\":\"bool\",\"name\":\"approved\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setGuardians\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_newGuardians\"},{\"type\":\"uint8\",\"name\":\"_minGuardians\"},{\"type\":\"bool\",\"name\":\"_clearData\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrEnclave\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrEnclave\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrSigner\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrSigner\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sigVerifyLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"signalForChainData\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"signalForFailedMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"source\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"splitCertificateChain\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"pemChain\"},{\"type\":\"uint256\",\"name\":\"size\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"bytes[]\",\"name\":\"certs\"}]},{\"type\":\"function\",\"name\":\"srcChainId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"srcToken\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"state\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"__reserve1\"},{\"type\":\"tuple\",\"name\":\"slotA\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"name\":\"slotB\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"supportsInterface\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes4\",\"name\":\"_interfaceId\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"syncChainData\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"tcbInfo\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"}],\"outputs\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"}]},{\"type\":\"function\",\"name\":\"toggleLocalReportCheck\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"tokenURI\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"topBlockId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"kind\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId\"}]},{\"type\":\"function\",\"name\":\"totalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"transfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"trustedUserMrEnclave\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"enclave\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"trustedUserMrSigner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"signer\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"uri\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"verifyAttestation\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"}]},{\"type\":\"function\",\"name\":\"verifyBlocks\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_maxBlocksToVerify\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyES256Signature\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"tbs\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bytes\",\"name\":\"publicKey\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"sigValid\"}]},{\"type\":\"function\",\"name\":\"verifyParsedQuote\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"v3quote\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"bool\"},{\"type\":\"bytes\"}]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifySignalReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"version\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"withdrawBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"withdrawTaikoToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"constructor\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"es256Verifier\"}]}]","addresses":["0x02772b7B3a5Bea0141C993Dbb8D0733C19F46169","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x11A9ebA17EbF92b40fcf9a640Ebbc47Db6fBeab0","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0x39E4C1214e733639d059979079A151911e42791d","0x47bB416ee947fE4a4b655011aF7d6E3A1B80E6e9","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0x579f40D0BE111b823962043702cabe6Aaa290780","0x67281b15aee4d6b805bc755e439abd524dd8da8d","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0xa25e645ff9897b0282e5f17d36de5bca4ec21d6e","0xaf145913EA4a56BE22E120ED9C24589659881702","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0xc4096E9ff1526Bd1840B65e9f45695135aC12De7","0xcc5d488073FA918cBbd73B9A523F3858C4de7372","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC"]}],"createdAt":"2024-08-27T09:44:01.744Z","subscriberId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","name":"TaikoL1: Pause/Unpause","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","blockWatcherId":"mainnet-6","paused":false,"stackResourceId":"mystack.taiko-l-1-pause-unpause","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"LOW","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet SGX Prover triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceAdded(uint256,address,address,uint256)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceDeleted(uint256,address)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[{"functionSignature":"verifyProof((bytes32,bytes32,address,uint64,bool,bool,address),(bytes32,bytes32,bytes32,bytes32),(uint16,bytes))","expression":null}],"eventConditions":[]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]}]","addresses":["0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81"]}],"createdAt":"2024-05-02T14:09:42.804Z","subscriberId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","name":"Taiko Mainnet SGX Prover","network":"mainnet","riskCategory":"TECHNICAL","monitorId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-sgx-prover","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Address Managers triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AddressSet(uint64,bytes32,address,address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x579f40D0BE111b823962043702cabe6Aaa290780"]}],"createdAt":"2024-05-02T14:00:18.874Z","subscriberId":"3919cb83-487f-4432-88fa-33bbe4361fce","name":"Taiko Mainnet Address Managers","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"3919cb83-487f-4432-88fa-33bbe4361fce","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-address-managers","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Essential Contracts triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AdminChanged(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"BeaconUpgraded(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Initialized(uint8)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferStarted(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferred(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Upgraded(address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0xaf145913EA4a56BE22E120ED9C24589659881702","0x579f40D0BE111b823962043702cabe6Aaa290780","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3"]}],"createdAt":"2024-05-02T13:49:54.192Z","subscriberId":"67a53521-3d4a-4de4-92ab-ede82cc45644","name":"Taiko Mainnet Essential Contracts","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"67a53521-3d4a-4de4-92ab-ede82cc45644","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-essential-contracts","type":"BLOCK"}]},"actions":{"removed":[],"created":[],"updated":[{"autotaskId":"4390573f-1796-4c27-8933-7f157e77c2b4","actionId":"4390573f-1796-4c27-8933-7f157e77c2b4","name":"TaikoL1: BlockVerified Alert","paused":false,"trigger":{"cron":null,"frequencyMinutes":4,"type":"schedule"},"codeDigest":"KOTnS1Yf5tvLYRNPMJ0JnrGAv66lJy5ms0M9KHsmVZI=","stackResourceId":"mystack.taiko-l-1-block-verified-alert","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-05","encodedZippedCode":"UEsDBAoAAAAAAAAAQVDHg6kMXRAAAF0QAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAiYmxvY2tJZCIsCiAgICAgICAgdHlwZTogInVpbnQyNTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJhZGRyZXNzIiwKICAgICAgICBuYW1lOiAicHJvdmVyIiwKICAgICAgICB0eXBlOiAiYWRkcmVzcyIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICBuYW1lOiAiYmxvY2tIYXNoIiwKICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICBuYW1lOiAic3RhdGVSb290IiwKICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MTYiLAogICAgICAgIG5hbWU6ICJ0aWVyIiwKICAgICAgICB0eXBlOiAidWludDE2IiwKICAgICAgfSwKICAgIF0sCiAgICBuYW1lOiAiQmxvY2tWZXJpZmllZCIsCiAgICB0eXBlOiAiZXZlbnQiLAogIH0sCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAiYmxvY2tJZCIsCiAgICAgICAgdHlwZTogInVpbnQyNTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJhZGRyZXNzIiwKICAgICAgICBuYW1lOiAicHJvdmVyIiwKICAgICAgICB0eXBlOiAiYWRkcmVzcyIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICBuYW1lOiAiYmxvY2tIYXNoIiwKICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICBuYW1lOiAic3RhdGVSb290IiwKICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MTYiLAogICAgICAgIG5hbWU6ICJ0aWVyIiwKICAgICAgICB0eXBlOiAidWludDE2IiwKICAgICAgfSwKICAgIF0sCiAgICBuYW1lOiAiQmxvY2tWZXJpZmllZFYyIiwKICAgIHR5cGU6ICJldmVudCIsCiAgfSwKXTsKCmZ1bmN0aW9uIGFsZXJ0T3JnKG5vdGlmaWNhdGlvbkNsaWVudCwgbWVzc2FnZSkgewogIG5vdGlmaWNhdGlvbkNsaWVudC5zZW5kKHsKICAgIGNoYW5uZWxBbGlhczogImRpc2NvcmRfYnJpZGdpbmciLAogICAgc3ViamVjdDogIvCfmqggVGFpa29MMTogQmxvY2tWZXJpZmllZCBBbGVydCIsCiAgICBtZXNzYWdlLAogIH0pOwoKICBub3RpZmljYXRpb25DbGllbnQuc2VuZCh7CiAgICBjaGFubmVsQWxpYXM6ICJ0Z190YWlrb19ndWFyZGlhbnMiLAogICAgc3ViamVjdDogIvCfmqggVGFpa29MMTogQmxvY2tWZXJpZmllZCBBbGVydCIsCiAgICBtZXNzYWdlLAogIH0pOwp9Cgphc3luYyBmdW5jdGlvbiBnZXRMYXRlc3RCbG9ja051bWJlcihwcm92aWRlcikgewogIGNvbnN0IGN1cnJlbnRCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKCJsYXRlc3QiKTsKICByZXR1cm4gY3VycmVudEJsb2NrLm51bWJlcjsKfQoKYXN5bmMgZnVuY3Rpb24gZmV0Y2hMb2dzRnJvbUwxKAogIGV2ZW50TmFtZXMsCiAgZnJvbUJsb2NrLAogIHRvQmxvY2ssCiAgYWRkcmVzcywKICBhYmksCiAgcHJvdmlkZXIsCikgewogIGNvbnN0IGlmYWNlID0gbmV3IGV0aGVycy51dGlscy5JbnRlcmZhY2UoYWJpKTsKICBjb25zdCBldmVudFRvcGljcyA9IGV2ZW50TmFtZXMubWFwKChldmVudE5hbWUpID0+CiAgICBpZmFjZS5nZXRFdmVudFRvcGljKGV2ZW50TmFtZSksCiAgKTsKCiAgY29uc29sZS5sb2coYGV2ZW50VG9waWNzOiAke2V2ZW50VG9waWNzfWApOwoKICB0cnkgewogICAgY29uc3QgbG9ncyA9IGF3YWl0IHByb3ZpZGVyLmdldExvZ3MoewogICAgICBhZGRyZXNzLAogICAgICBmcm9tQmxvY2ssCiAgICAgIHRvQmxvY2ssCiAgICAgIHRvcGljczogW2V2ZW50VG9waWNzXSwKICAgIH0pOwoKICAgIHJldHVybiBsb2dzLm1hcCgobG9nKSA9PiBpZmFjZS5wYXJzZUxvZyhsb2cpKTsKICB9IGNhdGNoIChlcnJvcikgewogICAgY29uc29sZS5lcnJvcigiRXJyb3IgZmV0Y2hpbmcgTDEgbG9nczoiLCBlcnJvcik7CiAgICByZXR1cm4gW107CiAgfQp9CgpmdW5jdGlvbiBjcmVhdGVQcm92aWRlcihhcGlLZXksIGFwaVNlY3JldCwgcmVsYXllckFwaUtleSwgcmVsYXllckFwaVNlY3JldCkgewogIGNvbnN0IGNsaWVudCA9IG5ldyBEZWZlbmRlcih7CiAgICBhcGlLZXksCiAgICBhcGlTZWNyZXQsCiAgICByZWxheWVyQXBpS2V5LAogICAgcmVsYXllckFwaVNlY3JldCwKICB9KTsKCiAgcmV0dXJuIGNsaWVudC5yZWxheVNpZ25lci5nZXRQcm92aWRlcigpOwp9Cgphc3luYyBmdW5jdGlvbiBjYWxjdWxhdGVCbG9ja1RpbWUocHJvdmlkZXIpIHsKICBjb25zdCBsYXRlc3RCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKCJsYXRlc3QiKTsKICBjb25zdCBwcmV2aW91c0Jsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2sobGF0ZXN0QmxvY2subnVtYmVyIC0gMTAwKTsKCiAgY29uc3QgdGltZURpZmYgPSBsYXRlc3RCbG9jay50aW1lc3RhbXAgLSBwcmV2aW91c0Jsb2NrLnRpbWVzdGFtcDsKICBjb25zdCBibG9ja0RpZmYgPSBsYXRlc3RCbG9jay5udW1iZXIgLSBwcmV2aW91c0Jsb2NrLm51bWJlcjsKCiAgY29uc3QgYmxvY2tUaW1lID0gdGltZURpZmYgLyBibG9ja0RpZmY7CiAgcmV0dXJuIGJsb2NrVGltZTsKfQoKZXhwb3J0cy5oYW5kbGVyID0gYXN5bmMgZnVuY3Rpb24gKGV2ZW50LCBjb250ZXh0KSB7CiAgY29uc3QgeyBub3RpZmljYXRpb25DbGllbnQgfSA9IGNvbnRleHQ7CiAgY29uc3QgeyBhcGlLZXksIGFwaVNlY3JldCwgdGFpa29MMUFwaUtleSwgdGFpa29MMUFwaVNlY3JldCB9ID0gZXZlbnQuc2VjcmV0czsKCiAgY29uc3QgdGFpa29MMVByb3ZpZGVyID0gY3JlYXRlUHJvdmlkZXIoCiAgICBhcGlLZXksCiAgICBhcGlTZWNyZXQsCiAgICB0YWlrb0wxQXBpS2V5LAogICAgdGFpa29MMUFwaVNlY3JldCwKICApOwoKICBjb25zdCBjdXJyZW50QmxvY2tOdW1iZXIgPSBhd2FpdCBnZXRMYXRlc3RCbG9ja051bWJlcih0YWlrb0wxUHJvdmlkZXIpOwogIGNvbnN0IGJsb2NrVGltZUluU2Vjb25kcyA9IGF3YWl0IGNhbGN1bGF0ZUJsb2NrVGltZSh0YWlrb0wxUHJvdmlkZXIpOwogIGNvbnN0IGJsb2Nrc0luRml2ZU1pbnV0ZXMgPSBNYXRoLmZsb29yKCg1ICogNjApIC8gYmxvY2tUaW1lSW5TZWNvbmRzKTsKCiAgY29uc3QgZnJvbUJsb2NrID0gY3VycmVudEJsb2NrTnVtYmVyIC0gYmxvY2tzSW5GaXZlTWludXRlczsKICBjb25zdCB0b0Jsb2NrID0gY3VycmVudEJsb2NrTnVtYmVyOwoKICBjb25zdCBsb2dzID0gYXdhaXQgZmV0Y2hMb2dzRnJvbUwxKAogICAgWyJCbG9ja1ZlcmlmaWVkIiwgIkJsb2NrVmVyaWZpZWRWMiJdLAogICAgZnJvbUJsb2NrLAogICAgdG9CbG9jaywKICAgICIweDA2YTlBYjI3YzdlMjI1NWRmMTgxNUU2Q0MwMTY4ZDc3NTVGZWIxOWEiLAogICAgQUJJLAogICAgdGFpa29MMVByb3ZpZGVyLAogICk7CgogIGlmIChsb2dzLmxlbmd0aCA9PT0gMCkgewogICAgYWxlcnRPcmcoCiAgICAgIG5vdGlmaWNhdGlvbkNsaWVudCwKICAgICAgYEBkYXZpZGNhaSBAeXVlYTc1ODMgTm8gQmxvY2tWZXJpZmllZCBldmVudCBkZXRlY3RlZCBpbiB0aGUgbGFzdCAzMCBtaW5zIGluIFRhaWtvTDEhYCwKICAgICk7CiAgfQoKICByZXR1cm4gdHJ1ZTsKfTsKUEsBAhQACgAAAAAAAABBUMeDqQxdEAAAXRAAAAgAAAAAAAAAAAAAAAAAAAAAAGluZGV4LmpzUEsFBgAAAAABAAEANgAAAIMQAAAAAA=="}]},"contracts":{"removed":[],"created":[],"updated":[]},"relayers":{"removed":[],"created":[],"updated":[],"relayerKeys":{"removed":[],"created":[],"updated":[]}},"notifications":{"removed":[],"created":[],"updated":[]},"secrets":{"removed":[],"created":[],"updated":[]},"blockExplorerApiKeys":{"removed":[],"created":[],"updated":[]},"forkedNetworks":{"removed":[],"created":[],"updated":[]},"privateNetworks":{"removed":[],"created":[],"updated":[]}} +{"stack":"mystack","timestamp":"2024-09-20T10:34:25.843Z","monitors":{"removed":[],"created":[{"type":"BLOCK","network":"mainnet","tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","subscriberId":"1bc1012e-54fc-4fbc-8971-54c5b2a5146e","monitorId":"1bc1012e-54fc-4fbc-8971-54c5b2a5146e","createdAt":"2024-09-20T10:36:31.684Z","name":"TaikoL1: ProvingPaused Alert","paused":false,"notifyConfig":{"notifications":[{"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"updatedAt":"2024-09-19T10:48:03.908Z","tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","paused":false,"stackResourceId":"mystack.discord-bridging","type":"discord"}],"severityLevel":"HIGH","timeoutMs":60000,"messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"⚠️ TaikoL1: ProvingPaused Alert"},"stackResourceId":"mystack.taiko-l-1-proving-paused-alert","skipABIValidation":false,"blockWatcherId":"mainnet-1","addressRules":[{"conditions":[],"addresses":["0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a"]}]},{"type":"BLOCK","network":"mainnet","tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","subscriberId":"8e05b9b7-09d2-4b2e-b843-96a62f03c80a","monitorId":"8e05b9b7-09d2-4b2e-b843-96a62f03c80a","createdAt":"2024-09-20T10:36:35.701Z","name":"GuardianProver: GuardiansUpdated Alert","paused":false,"notifyConfig":{"notifications":[{"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"updatedAt":"2024-09-19T10:48:03.908Z","tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","paused":false,"stackResourceId":"mystack.discord-bridging","type":"discord"}],"severityLevel":"MEDIUM","timeoutMs":60000,"messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"⚠️ GuardianProver: GuardiansUpdated Alert"},"stackResourceId":"mystack.guardian-prover-guardians-updated-alert","skipABIValidation":false,"blockWatcherId":"mainnet-1","addressRules":[{"conditions":[],"addresses":["0xE3D777143Ea25A6E031d1e921F396750885f43aC"]}]},{"type":"BLOCK","network":"mainnet","tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","subscriberId":"deb988aa-3550-4690-9f9b-b45486a45af0","monitorId":"deb988aa-3550-4690-9f9b-b45486a45af0","createdAt":"2024-09-20T10:36:39.801Z","name":"GuardianProver: ConflictingProofs Alert","paused":false,"notifyConfig":{"notifications":[{"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"updatedAt":"2024-09-19T10:48:03.908Z","tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","paused":false,"stackResourceId":"mystack.discord-bridging","type":"discord"}],"severityLevel":"MEDIUM","timeoutMs":60000,"messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"🚨 GuardianProver: ConflictingProofs Alert"},"stackResourceId":"mystack.guardian-prover-conflicting-proofs-alert","skipABIValidation":false,"blockWatcherId":"mainnet-1","addressRules":[{"conditions":[],"addresses":["0xE3D777143Ea25A6E031d1e921F396750885f43aC"]}]},{"type":"BLOCK","network":"mainnet","tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","subscriberId":"cf7ea759-183f-4761-96cc-ec6cf9052d3b","monitorId":"cf7ea759-183f-4761-96cc-ec6cf9052d3b","createdAt":"2024-09-20T10:36:44.961Z","name":"GuardianProver: ProvingAutoPauseEnabled Alert","paused":false,"notifyConfig":{"notifications":[{"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"updatedAt":"2024-09-19T10:48:03.908Z","tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","paused":false,"stackResourceId":"mystack.discord-bridging","type":"discord"}],"severityLevel":"MEDIUM","timeoutMs":60000,"messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"⚠️ GuardianProver: ProvingAutoPauseEnabled Alert"},"stackResourceId":"mystack.guardian-prover-proving-auto-pause-enabled-alert","skipABIValidation":false,"blockWatcherId":"mainnet-1","addressRules":[{"conditions":[],"addresses":["0xE3D777143Ea25A6E031d1e921F396750885f43aC"]}]}],"updated":[{"skipABIValidation":true,"alertThreshold":null,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"Defender Monitor: TaikoL1: Pause/Unpause triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]}],"abi":"[{\"type\":\"error\",\"name\":\"AM_ADDRESS_ALREADY_SET\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"spender\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"approved\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ApprovalForAll\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"operationId\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"approvalBits\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"minGuardiansReached\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Authorized\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"authorized\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"BB_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_MINT_DISALLOWED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_CANNOT_RECEIVE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_BURN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INSUFFICIENT_GAS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CONTEXT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_GAS_LIMIT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_VALUE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_MESSAGE_NOT_SENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_OUT_OF_ETH_QUOTA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PROOF_TOO_LARGE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_RETRY_FAILED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_SIGNAL_NOT_RECEIVED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockProposed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"assignedProver\",\"indexed\":true},{\"type\":\"uint96\",\"name\":\"livenessBond\",\"indexed\":false},{\"type\":\"tuple\",\"name\":\"meta\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"depositsProcessed\",\"indexed\":false,\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockVerified\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"stateRoot\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondCredited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondDebited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenChanged\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btokenOld\",\"indexed\":false},{\"type\":\"address\",\"name\":\"btokenNew\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"CLOCK_MODE\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"CalldataTxList\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"txList\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ChainDataSynced\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"kind\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"data\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ConflictingProofs\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"guardian\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"currentProofHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"newProofHash\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"provingPaused\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"DOMAIN_SEPARATOR\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"fromDelegate\",\"indexed\":true},{\"type\":\"address\",\"name\":\"toDelegate\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateVotesChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegate\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"previousBalance\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"newBalance\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EIP712DomainChanged\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ETH_TRANSFER_FAILED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EtherPaymentFailed\",\"inputs\":[{\"type\":\"address\",\"name\":\"to\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"maxGas\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"FUNC_NOT_IMPLEMENTED\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"GAS_OVERHEAD\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"GAS_RESERVE\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN_SET\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_MIN_GUARDIANS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardianApproval\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false},{\"type\":\"bytes\",\"name\":\"proofData\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardiansUpdated\",\"inputs\":[{\"type\":\"uint32\",\"name\":\"version\",\"indexed\":false},{\"type\":\"address[]\",\"name\":\"guardians\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_EXPIRED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"error\",\"name\":\"INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"L1_ALREADY_CONTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_ALREADY_PROVED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_AVAILABLE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOCK_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_CANNOT_CONTEST\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_BLOCK_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_GENESIS_HASH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TIER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TRANSITION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_NOT_ASSIGNED_PROVER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_PROVING_PAUSED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_RECEIVE_DISABLED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TOO_MANY_BLOCKS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TRANSITION_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_PARENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_TRANSITION_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_ACCOUNT_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_INCLUSION_PROOF\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"LocalReportCheckToggled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"checkLocalEnclaveReport\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"MAX_GAS_PAYING_PROVER\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"MIN_MIGRATION_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageProcessed\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"stats\",\"indexed\":false,\"components\":[{\"type\":\"uint32\",\"name\":\"gasUsedInFeeCalc\"},{\"type\":\"uint32\",\"name\":\"proofSize\"},{\"type\":\"uint32\",\"name\":\"numCacheOps\"},{\"type\":\"bool\",\"name\":\"processedByRelayer\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageStatusChanged\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"uint8\",\"name\":\"status\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigratedTo\",\"inputs\":[{\"type\":\"address\",\"name\":\"fromToken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigrationStatusChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"inbound\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrEnclaveUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrEnclave\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrSignerUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrSigner\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingAutoPauseEnabled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"enabled\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingPaused\",\"inputs\":[{\"type\":\"bool\",\"name\":\"paused\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"QeIdentityConfigured\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"indexed\":false,\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}]},{\"type\":\"error\",\"name\":\"REENTRANT_CALL\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"RELAYER_MAX_PROOF_BYTES\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"error\",\"name\":\"RESOLVER_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_INVALID_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_UNEXPECTED_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_ZERO_ADDR\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"name\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumRemoved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"SGX_ALREADY_ATTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_ATTESTATION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_INSTANCE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_RA_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_EMPTY_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_HOPS_WITH_LOOP\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_LAST_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_MID_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_STATE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_SIGNAL_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_UNAUTHORIZED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"SignalSent\",\"inputs\":[{\"type\":\"address\",\"name\":\"app\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"slot\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"StateVariablesUpdated\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"slotB\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"error\",\"name\":\"TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"TT_INVALID_PARAM\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TcbInfoJsonConfigured\",\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"indexed\":false,\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"canonicalChainId\",\"indexed\":false},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferBatch\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256[]\",\"name\":\"ids\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"values\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferSingle\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionContested\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"contester\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"contestBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionProved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"validityBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"URI\",\"inputs\":[{\"type\":\"string\",\"name\":\"value\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_DATA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_ECDSA_SIGNATURE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEAUTHDATA_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEREPORT_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_MEMBER_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_UNSUPPORT_CERTIFICATION_TYPE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_BTOKEN_BLACKLISTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_CTOKEN_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INSUFFICIENT_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INTERFACE_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_AMOUNT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_CTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_NEW_BTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TO_ADDR\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_LAST_MIGRATION_TOO_CLOSE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_TOKEN_ARRAY_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDR_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_VALUE\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"allowance\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"approvals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"bytes32\",\"name\":\"proofHash\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"approvalBits\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\",\"name\":\"approved_\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"authorize\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_addr\"},{\"type\":\"bool\",\"name\":\"_authorize\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"id\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOfBatch\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"accounts\"},{\"type\":\"uint256[]\",\"name\":\"ids\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"batchTransfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"recipients\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"bondBalanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_user\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"btokenDenylist\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"denied\"}]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"canonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"canonicalToBridged\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btoken\"}]},{\"type\":\"function\",\"name\":\"changeBridgedToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctoken\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"address\",\"name\":\"_btokenNew\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btokenOld_\"}]},{\"type\":\"function\",\"name\":\"changeMigrationStatus\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_migratingAddress\"},{\"type\":\"bool\",\"name\":\"_migratingInbound\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"checkLocalEnclaveReport\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"checkpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint32\",\"name\":\"pos\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint32\",\"name\":\"fromBlock\"},{\"type\":\"uint224\",\"name\":\"votes\"}]}]},{\"type\":\"function\",\"name\":\"clock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint48\"}]},{\"type\":\"function\",\"name\":\"configureQeIdentityJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"configureTcbInfoJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"context\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"name\":\"ctx_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"}]}]},{\"type\":\"function\",\"name\":\"decimals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint8\"}]},{\"type\":\"function\",\"name\":\"decodeCert\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"der\"},{\"type\":\"bool\",\"name\":\"isPckCert\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"tuple\",\"name\":\"cert\",\"components\":[{\"type\":\"uint256\",\"name\":\"notBefore\"},{\"type\":\"uint256\",\"name\":\"notAfter\"},{\"type\":\"bytes\",\"name\":\"serialNumber\"},{\"type\":\"bytes\",\"name\":\"tbsCertificate\"},{\"type\":\"bytes\",\"name\":\"pubKey\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bool\",\"name\":\"isPck\"},{\"type\":\"tuple\",\"name\":\"pck\",\"components\":[{\"type\":\"string\",\"name\":\"commonName\"},{\"type\":\"string\",\"name\":\"issuerName\"},{\"type\":\"tuple\",\"name\":\"sgxExtension\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint256[]\",\"name\":\"sgxTcbCompSvnArr\"}]}]}]}]},{\"type\":\"function\",\"name\":\"decreaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"subtractedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"delegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegateBySig\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"},{\"type\":\"uint256\",\"name\":\"nonce\"},{\"type\":\"uint256\",\"name\":\"expiry\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegates\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"depositBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"eip712Domain\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes1\",\"name\":\"fields\"},{\"type\":\"string\",\"name\":\"name\"},{\"type\":\"string\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"verifyingContract\"},{\"type\":\"bytes32\",\"name\":\"salt\"},{\"type\":\"uint256[]\",\"name\":\"extensions\"}]},{\"type\":\"function\",\"name\":\"enableProvingAutoPause\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"enableTaikoTokenAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"failMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getApproved\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"blk_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]}]},{\"type\":\"function\",\"name\":\"getConfig\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"uint64\",\"name\":\"blockMaxProposals\"},{\"type\":\"uint64\",\"name\":\"blockRingBufferSize\"},{\"type\":\"uint64\",\"name\":\"maxBlocksToVerify\"},{\"type\":\"uint32\",\"name\":\"blockMaxGasLimit\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint8\",\"name\":\"stateRootSyncInternal\"},{\"type\":\"bool\",\"name\":\"checkEOAForCalldataDA\"}]}]},{\"type\":\"function\",\"name\":\"getLastSyncedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getLastVerifiedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getMessageMinGasLimit\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"dataLength\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"getMinTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"uint16\"}]},{\"type\":\"function\",\"name\":\"getPastTotalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getPastVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getSignalSlot\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"getStateVariables\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"getSyncedChainData\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"chainData_\"}]},{\"type\":\"function\",\"name\":\"getTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint16\",\"name\":\"_tierId\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"verifierName\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint24\",\"name\":\"cooldownWindow\"},{\"type\":\"uint16\",\"name\":\"provingWindow\"},{\"type\":\"uint8\",\"name\":\"maxBlocksToVerifyPerProof\"}]}]},{\"type\":\"function\",\"name\":\"getTierIds\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint16[]\",\"name\":\"tiers_\"}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"uint32\",\"name\":\"_tid\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_parentHash\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getVerifiedBlockProver\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"prover_\"}]},{\"type\":\"function\",\"name\":\"getVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"guardianIds\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"guardian\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"id\"}]},{\"type\":\"function\",\"name\":\"guardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"hashAssignment\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_assignment\",\"components\":[{\"type\":\"address\",\"name\":\"feeToken\"},{\"type\":\"uint64\",\"name\":\"expiry\"},{\"type\":\"uint64\",\"name\":\"maxBlockId\"},{\"type\":\"uint64\",\"name\":\"maxProposedIn\"},{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"tuple[]\",\"name\":\"tierFees\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint128\",\"name\":\"fee\"}]},{\"type\":\"bytes\",\"name\":\"signature\"}]},{\"type\":\"address\",\"name\":\"_taikoL1Address\"},{\"type\":\"address\",\"name\":\"_blockProposer\"},{\"type\":\"address\",\"name\":\"_assignedProver\"},{\"type\":\"bytes32\",\"name\":\"_blobHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"hashMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"impl\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"inNonReentrant\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"increaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"addedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"bytes32\",\"name\":\"_genesisBlockHash\"},{\"type\":\"bool\",\"name\":\"_toPause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"sigVerifyLibAddr\"},{\"type\":\"address\",\"name\":\"pemCertLibAddr\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"uint8\",\"name\":\"_decimals\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init2\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"isApprovedForAll\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"address\",\"name\":\"operator\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isAuthorized\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"addr\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"authorized\"}]},{\"type\":\"function\",\"name\":\"isChainDataSynced\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isDestChainEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"enabled_\"},{\"type\":\"address\",\"name\":\"destBridge_\"}]},{\"type\":\"function\",\"name\":\"isMessageFailed\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isSignalSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"lastMigrationStart\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"timestamp\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"latestProofHash\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"blockId\"}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"hash\"}]},{\"type\":\"function\",\"name\":\"messageStatus\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status\"}]},{\"type\":\"function\",\"name\":\"migratingAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"migratingInbound\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"minGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mintBatch\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256[]\",\"name\":\"_tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"_amounts\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"nextMessageId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nonces\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"numCheckpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"numGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"onBlockProposed\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_blk\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]},{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onERC1155BatchReceived\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256[]\"},{\"type\":\"uint256[]\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC1155Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC721Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onMessageInvocation\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onMessageRecalled\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"ownerOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseProving\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_pause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseTaikoProving\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pemCertLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"permit\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"uint256\",\"name\":\"deadline\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"processMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status_\"},{\"type\":\"uint8\",\"name\":\"reason_\"}]},{\"type\":\"function\",\"name\":\"proposeBlock\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_params\"},{\"type\":\"bytes\",\"name\":\"_txList\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"meta_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"deposits_\",\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"function\",\"name\":\"proveBlock\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes\",\"name\":\"_input\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"proveSignalReceived\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"numCacheOps_\"}]},{\"type\":\"function\",\"name\":\"provingAutoPauseEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"qeIdentity\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"}]},{\"type\":\"function\",\"name\":\"recallMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"removeRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"retryMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bool\",\"name\":\"_isLastAttempt\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeBatchTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256[]\",\"name\":\"ids\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"id\"},{\"type\":\"uint256\",\"name\":\"amount\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"selfDelegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_anyToken\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sendMessage\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash_\"},{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendSignal\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256[]\",\"name\":\"tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256\",\"name\":\"amount\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"serialNumIsRevoked\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"idx\"},{\"type\":\"bytes\",\"name\":\"serialNum\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"revoked\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setApprovalForAll\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"operator\"},{\"type\":\"bool\",\"name\":\"approved\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setGuardians\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_newGuardians\"},{\"type\":\"uint8\",\"name\":\"_minGuardians\"},{\"type\":\"bool\",\"name\":\"_clearData\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrEnclave\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrEnclave\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrSigner\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrSigner\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sigVerifyLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"signalForChainData\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"signalForFailedMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"source\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"splitCertificateChain\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"pemChain\"},{\"type\":\"uint256\",\"name\":\"size\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"bytes[]\",\"name\":\"certs\"}]},{\"type\":\"function\",\"name\":\"srcChainId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"srcToken\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"state\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"__reserve1\"},{\"type\":\"tuple\",\"name\":\"slotA\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"name\":\"slotB\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"supportsInterface\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes4\",\"name\":\"_interfaceId\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"syncChainData\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"tcbInfo\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"}],\"outputs\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"}]},{\"type\":\"function\",\"name\":\"toggleLocalReportCheck\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"tokenURI\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"topBlockId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"kind\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId\"}]},{\"type\":\"function\",\"name\":\"totalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"transfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"trustedUserMrEnclave\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"enclave\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"trustedUserMrSigner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"signer\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"uri\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"verifyAttestation\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"}]},{\"type\":\"function\",\"name\":\"verifyBlocks\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_maxBlocksToVerify\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyES256Signature\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"tbs\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bytes\",\"name\":\"publicKey\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"sigValid\"}]},{\"type\":\"function\",\"name\":\"verifyParsedQuote\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"v3quote\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"bool\"},{\"type\":\"bytes\"}]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifySignalReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"version\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"withdrawBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"withdrawTaikoToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"constructor\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"es256Verifier\"}]}]","addresses":["0x02772b7B3a5Bea0141C993Dbb8D0733C19F46169","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x11A9ebA17EbF92b40fcf9a640Ebbc47Db6fBeab0","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0x39E4C1214e733639d059979079A151911e42791d","0x47bB416ee947fE4a4b655011aF7d6E3A1B80E6e9","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0x579f40D0BE111b823962043702cabe6Aaa290780","0x67281b15aee4d6b805bc755e439abd524dd8da8d","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0xa25e645ff9897b0282e5f17d36de5bca4ec21d6e","0xaf145913EA4a56BE22E120ED9C24589659881702","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0xc4096E9ff1526Bd1840B65e9f45695135aC12De7","0xcc5d488073FA918cBbd73B9A523F3858C4de7372","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC"]}],"createdAt":"2024-08-27T09:44:01.744Z","subscriberId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","name":"TaikoL1: Pause/Unpause","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","blockWatcherId":"mainnet-6","paused":false,"stackResourceId":"mystack.taiko-l-1-pause-unpause","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"LOW","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet SGX Prover triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceAdded(uint256,address,address,uint256)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceDeleted(uint256,address)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[{"functionSignature":"verifyProof((bytes32,bytes32,address,uint64,bool,bool,address),(bytes32,bytes32,bytes32,bytes32),(uint16,bytes))","expression":null}],"eventConditions":[]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]}]","addresses":["0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81"]}],"createdAt":"2024-05-02T14:09:42.804Z","subscriberId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","name":"Taiko Mainnet SGX Prover","network":"mainnet","riskCategory":"TECHNICAL","monitorId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-sgx-prover","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Address Managers triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AddressSet(uint64,bytes32,address,address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x579f40D0BE111b823962043702cabe6Aaa290780"]}],"createdAt":"2024-05-02T14:00:18.874Z","subscriberId":"3919cb83-487f-4432-88fa-33bbe4361fce","name":"Taiko Mainnet Address Managers","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"3919cb83-487f-4432-88fa-33bbe4361fce","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-address-managers","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Essential Contracts triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AdminChanged(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"BeaconUpgraded(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Initialized(uint8)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferStarted(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferred(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Upgraded(address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0xaf145913EA4a56BE22E120ED9C24589659881702","0x579f40D0BE111b823962043702cabe6Aaa290780","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3"]}],"createdAt":"2024-05-02T13:49:54.192Z","subscriberId":"67a53521-3d4a-4de4-92ab-ede82cc45644","name":"Taiko Mainnet Essential Contracts","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"67a53521-3d4a-4de4-92ab-ede82cc45644","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-essential-contracts","type":"BLOCK"}]},"actions":{"removed":[],"created":[],"updated":[]},"contracts":{"removed":[],"created":[],"updated":[]},"relayers":{"removed":[],"created":[],"updated":[],"relayerKeys":{"removed":[],"created":[],"updated":[]}},"notifications":{"removed":[],"created":[],"updated":[]},"secrets":{"removed":[],"created":[],"updated":[]},"blockExplorerApiKeys":{"removed":[],"created":[],"updated":[]},"forkedNetworks":{"removed":[],"created":[],"updated":[]},"privateNetworks":{"removed":[],"created":[],"updated":[]}} +{"stack":"mystack","timestamp":"2024-09-20T11:03:25.435Z","monitors":{"removed":[],"created":[],"updated":[{"skipABIValidation":false,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"⚠️ TaikoL1: ProvingPaused Alert","notifications":[{"paused":false,"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","type":"discord","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"stackResourceId":"mystack.discord-bridging","updatedAt":"2024-09-19T10:48:03.908Z"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[],"addresses":["0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a"]}],"createdAt":"2024-09-20T10:36:31.684Z","subscriberId":"1bc1012e-54fc-4fbc-8971-54c5b2a5146e","name":"TaikoL1: ProvingPaused Alert","network":"mainnet","monitorId":"1bc1012e-54fc-4fbc-8971-54c5b2a5146e","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-l-1-proving-paused-alert","type":"BLOCK"},{"skipABIValidation":false,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"⚠️ GuardianProver: GuardiansUpdated Alert","notifications":[{"paused":false,"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","type":"discord","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"stackResourceId":"mystack.discord-bridging","updatedAt":"2024-09-19T10:48:03.908Z"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[],"addresses":["0xE3D777143Ea25A6E031d1e921F396750885f43aC"]}],"createdAt":"2024-09-20T10:36:35.701Z","subscriberId":"8e05b9b7-09d2-4b2e-b843-96a62f03c80a","name":"GuardianProver: GuardiansUpdated Alert","network":"mainnet","monitorId":"8e05b9b7-09d2-4b2e-b843-96a62f03c80a","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.guardian-prover-guardians-updated-alert","type":"BLOCK"},{"skipABIValidation":false,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"🚨 GuardianProver: ConflictingProofs Alert","notifications":[{"paused":false,"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","type":"discord","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"stackResourceId":"mystack.discord-bridging","updatedAt":"2024-09-19T10:48:03.908Z"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[],"addresses":["0xE3D777143Ea25A6E031d1e921F396750885f43aC"]}],"createdAt":"2024-09-20T10:36:39.801Z","subscriberId":"deb988aa-3550-4690-9f9b-b45486a45af0","name":"GuardianProver: ConflictingProofs Alert","network":"mainnet","monitorId":"deb988aa-3550-4690-9f9b-b45486a45af0","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.guardian-prover-conflicting-proofs-alert","type":"BLOCK"},{"skipABIValidation":false,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"⚠️ GuardianProver: ProvingAutoPauseEnabled Alert","notifications":[{"paused":false,"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","type":"discord","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"stackResourceId":"mystack.discord-bridging","updatedAt":"2024-09-19T10:48:03.908Z"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[],"addresses":["0xE3D777143Ea25A6E031d1e921F396750885f43aC"]}],"createdAt":"2024-09-20T10:36:44.961Z","subscriberId":"cf7ea759-183f-4761-96cc-ec6cf9052d3b","name":"GuardianProver: ProvingAutoPauseEnabled Alert","network":"mainnet","monitorId":"cf7ea759-183f-4761-96cc-ec6cf9052d3b","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.guardian-prover-proving-auto-pause-enabled-alert","type":"BLOCK"},{"skipABIValidation":true,"alertThreshold":null,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"Defender Monitor: TaikoL1: Pause/Unpause triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]}],"abi":"[{\"type\":\"error\",\"name\":\"AM_ADDRESS_ALREADY_SET\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"spender\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"approved\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ApprovalForAll\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"operationId\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"approvalBits\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"minGuardiansReached\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Authorized\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"authorized\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"BB_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_MINT_DISALLOWED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_CANNOT_RECEIVE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_BURN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INSUFFICIENT_GAS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CONTEXT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_GAS_LIMIT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_VALUE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_MESSAGE_NOT_SENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_OUT_OF_ETH_QUOTA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PROOF_TOO_LARGE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_RETRY_FAILED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_SIGNAL_NOT_RECEIVED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockProposed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"assignedProver\",\"indexed\":true},{\"type\":\"uint96\",\"name\":\"livenessBond\",\"indexed\":false},{\"type\":\"tuple\",\"name\":\"meta\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"depositsProcessed\",\"indexed\":false,\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockVerified\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"stateRoot\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondCredited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondDebited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenChanged\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btokenOld\",\"indexed\":false},{\"type\":\"address\",\"name\":\"btokenNew\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"CLOCK_MODE\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"CalldataTxList\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"txList\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ChainDataSynced\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"kind\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"data\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ConflictingProofs\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"guardian\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"currentProofHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"newProofHash\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"provingPaused\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"DOMAIN_SEPARATOR\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"fromDelegate\",\"indexed\":true},{\"type\":\"address\",\"name\":\"toDelegate\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateVotesChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegate\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"previousBalance\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"newBalance\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EIP712DomainChanged\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ETH_TRANSFER_FAILED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EtherPaymentFailed\",\"inputs\":[{\"type\":\"address\",\"name\":\"to\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"maxGas\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"FUNC_NOT_IMPLEMENTED\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"GAS_OVERHEAD\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"GAS_RESERVE\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN_SET\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_MIN_GUARDIANS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardianApproval\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false},{\"type\":\"bytes\",\"name\":\"proofData\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardiansUpdated\",\"inputs\":[{\"type\":\"uint32\",\"name\":\"version\",\"indexed\":false},{\"type\":\"address[]\",\"name\":\"guardians\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_EXPIRED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"error\",\"name\":\"INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"L1_ALREADY_CONTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_ALREADY_PROVED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_AVAILABLE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOCK_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_CANNOT_CONTEST\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_BLOCK_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_GENESIS_HASH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TIER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TRANSITION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_NOT_ASSIGNED_PROVER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_PROVING_PAUSED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_RECEIVE_DISABLED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TOO_MANY_BLOCKS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TRANSITION_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_PARENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_TRANSITION_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_ACCOUNT_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_INCLUSION_PROOF\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"LocalReportCheckToggled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"checkLocalEnclaveReport\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"MAX_GAS_PAYING_PROVER\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"MIN_MIGRATION_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageProcessed\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"stats\",\"indexed\":false,\"components\":[{\"type\":\"uint32\",\"name\":\"gasUsedInFeeCalc\"},{\"type\":\"uint32\",\"name\":\"proofSize\"},{\"type\":\"uint32\",\"name\":\"numCacheOps\"},{\"type\":\"bool\",\"name\":\"processedByRelayer\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageStatusChanged\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"uint8\",\"name\":\"status\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigratedTo\",\"inputs\":[{\"type\":\"address\",\"name\":\"fromToken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigrationStatusChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"inbound\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrEnclaveUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrEnclave\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrSignerUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrSigner\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingAutoPauseEnabled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"enabled\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingPaused\",\"inputs\":[{\"type\":\"bool\",\"name\":\"paused\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"QeIdentityConfigured\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"indexed\":false,\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}]},{\"type\":\"error\",\"name\":\"REENTRANT_CALL\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"RELAYER_MAX_PROOF_BYTES\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"error\",\"name\":\"RESOLVER_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_INVALID_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_UNEXPECTED_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_ZERO_ADDR\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"name\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumRemoved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"SGX_ALREADY_ATTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_ATTESTATION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_INSTANCE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_RA_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_EMPTY_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_HOPS_WITH_LOOP\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_LAST_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_MID_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_STATE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_SIGNAL_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_UNAUTHORIZED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"SignalSent\",\"inputs\":[{\"type\":\"address\",\"name\":\"app\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"slot\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"StateVariablesUpdated\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"slotB\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"error\",\"name\":\"TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"TT_INVALID_PARAM\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TcbInfoJsonConfigured\",\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"indexed\":false,\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"canonicalChainId\",\"indexed\":false},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferBatch\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256[]\",\"name\":\"ids\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"values\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferSingle\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionContested\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"contester\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"contestBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionProved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"validityBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"URI\",\"inputs\":[{\"type\":\"string\",\"name\":\"value\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_DATA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_ECDSA_SIGNATURE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEAUTHDATA_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEREPORT_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_MEMBER_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_UNSUPPORT_CERTIFICATION_TYPE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_BTOKEN_BLACKLISTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_CTOKEN_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INSUFFICIENT_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INTERFACE_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_AMOUNT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_CTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_NEW_BTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TO_ADDR\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_LAST_MIGRATION_TOO_CLOSE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_TOKEN_ARRAY_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDR_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_VALUE\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"allowance\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"approvals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"bytes32\",\"name\":\"proofHash\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"approvalBits\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\",\"name\":\"approved_\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"authorize\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_addr\"},{\"type\":\"bool\",\"name\":\"_authorize\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"id\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOfBatch\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"accounts\"},{\"type\":\"uint256[]\",\"name\":\"ids\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"batchTransfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"recipients\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"bondBalanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_user\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"btokenDenylist\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"denied\"}]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"canonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"canonicalToBridged\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btoken\"}]},{\"type\":\"function\",\"name\":\"changeBridgedToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctoken\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"address\",\"name\":\"_btokenNew\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btokenOld_\"}]},{\"type\":\"function\",\"name\":\"changeMigrationStatus\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_migratingAddress\"},{\"type\":\"bool\",\"name\":\"_migratingInbound\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"checkLocalEnclaveReport\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"checkpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint32\",\"name\":\"pos\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint32\",\"name\":\"fromBlock\"},{\"type\":\"uint224\",\"name\":\"votes\"}]}]},{\"type\":\"function\",\"name\":\"clock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint48\"}]},{\"type\":\"function\",\"name\":\"configureQeIdentityJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"configureTcbInfoJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"context\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"name\":\"ctx_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"}]}]},{\"type\":\"function\",\"name\":\"decimals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint8\"}]},{\"type\":\"function\",\"name\":\"decodeCert\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"der\"},{\"type\":\"bool\",\"name\":\"isPckCert\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"tuple\",\"name\":\"cert\",\"components\":[{\"type\":\"uint256\",\"name\":\"notBefore\"},{\"type\":\"uint256\",\"name\":\"notAfter\"},{\"type\":\"bytes\",\"name\":\"serialNumber\"},{\"type\":\"bytes\",\"name\":\"tbsCertificate\"},{\"type\":\"bytes\",\"name\":\"pubKey\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bool\",\"name\":\"isPck\"},{\"type\":\"tuple\",\"name\":\"pck\",\"components\":[{\"type\":\"string\",\"name\":\"commonName\"},{\"type\":\"string\",\"name\":\"issuerName\"},{\"type\":\"tuple\",\"name\":\"sgxExtension\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint256[]\",\"name\":\"sgxTcbCompSvnArr\"}]}]}]}]},{\"type\":\"function\",\"name\":\"decreaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"subtractedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"delegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegateBySig\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"},{\"type\":\"uint256\",\"name\":\"nonce\"},{\"type\":\"uint256\",\"name\":\"expiry\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegates\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"depositBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"eip712Domain\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes1\",\"name\":\"fields\"},{\"type\":\"string\",\"name\":\"name\"},{\"type\":\"string\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"verifyingContract\"},{\"type\":\"bytes32\",\"name\":\"salt\"},{\"type\":\"uint256[]\",\"name\":\"extensions\"}]},{\"type\":\"function\",\"name\":\"enableProvingAutoPause\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"enableTaikoTokenAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"failMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getApproved\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"blk_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]}]},{\"type\":\"function\",\"name\":\"getConfig\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"uint64\",\"name\":\"blockMaxProposals\"},{\"type\":\"uint64\",\"name\":\"blockRingBufferSize\"},{\"type\":\"uint64\",\"name\":\"maxBlocksToVerify\"},{\"type\":\"uint32\",\"name\":\"blockMaxGasLimit\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint8\",\"name\":\"stateRootSyncInternal\"},{\"type\":\"bool\",\"name\":\"checkEOAForCalldataDA\"}]}]},{\"type\":\"function\",\"name\":\"getLastSyncedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getLastVerifiedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getMessageMinGasLimit\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"dataLength\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"getMinTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"uint16\"}]},{\"type\":\"function\",\"name\":\"getPastTotalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getPastVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getSignalSlot\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"getStateVariables\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"getSyncedChainData\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"chainData_\"}]},{\"type\":\"function\",\"name\":\"getTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint16\",\"name\":\"_tierId\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"verifierName\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint24\",\"name\":\"cooldownWindow\"},{\"type\":\"uint16\",\"name\":\"provingWindow\"},{\"type\":\"uint8\",\"name\":\"maxBlocksToVerifyPerProof\"}]}]},{\"type\":\"function\",\"name\":\"getTierIds\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint16[]\",\"name\":\"tiers_\"}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"uint32\",\"name\":\"_tid\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_parentHash\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getVerifiedBlockProver\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"prover_\"}]},{\"type\":\"function\",\"name\":\"getVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"guardianIds\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"guardian\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"id\"}]},{\"type\":\"function\",\"name\":\"guardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"hashAssignment\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_assignment\",\"components\":[{\"type\":\"address\",\"name\":\"feeToken\"},{\"type\":\"uint64\",\"name\":\"expiry\"},{\"type\":\"uint64\",\"name\":\"maxBlockId\"},{\"type\":\"uint64\",\"name\":\"maxProposedIn\"},{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"tuple[]\",\"name\":\"tierFees\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint128\",\"name\":\"fee\"}]},{\"type\":\"bytes\",\"name\":\"signature\"}]},{\"type\":\"address\",\"name\":\"_taikoL1Address\"},{\"type\":\"address\",\"name\":\"_blockProposer\"},{\"type\":\"address\",\"name\":\"_assignedProver\"},{\"type\":\"bytes32\",\"name\":\"_blobHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"hashMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"impl\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"inNonReentrant\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"increaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"addedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"bytes32\",\"name\":\"_genesisBlockHash\"},{\"type\":\"bool\",\"name\":\"_toPause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"sigVerifyLibAddr\"},{\"type\":\"address\",\"name\":\"pemCertLibAddr\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"uint8\",\"name\":\"_decimals\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init2\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"isApprovedForAll\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"address\",\"name\":\"operator\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isAuthorized\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"addr\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"authorized\"}]},{\"type\":\"function\",\"name\":\"isChainDataSynced\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isDestChainEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"enabled_\"},{\"type\":\"address\",\"name\":\"destBridge_\"}]},{\"type\":\"function\",\"name\":\"isMessageFailed\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isSignalSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"lastMigrationStart\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"timestamp\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"latestProofHash\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"blockId\"}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"hash\"}]},{\"type\":\"function\",\"name\":\"messageStatus\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status\"}]},{\"type\":\"function\",\"name\":\"migratingAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"migratingInbound\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"minGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mintBatch\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256[]\",\"name\":\"_tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"_amounts\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"nextMessageId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nonces\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"numCheckpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"numGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"onBlockProposed\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_blk\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]},{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onERC1155BatchReceived\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256[]\"},{\"type\":\"uint256[]\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC1155Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC721Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onMessageInvocation\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onMessageRecalled\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"ownerOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseProving\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_pause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseTaikoProving\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pemCertLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"permit\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"uint256\",\"name\":\"deadline\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"processMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status_\"},{\"type\":\"uint8\",\"name\":\"reason_\"}]},{\"type\":\"function\",\"name\":\"proposeBlock\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_params\"},{\"type\":\"bytes\",\"name\":\"_txList\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"meta_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"deposits_\",\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"function\",\"name\":\"proveBlock\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes\",\"name\":\"_input\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"proveSignalReceived\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"numCacheOps_\"}]},{\"type\":\"function\",\"name\":\"provingAutoPauseEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"qeIdentity\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"}]},{\"type\":\"function\",\"name\":\"recallMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"removeRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"retryMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bool\",\"name\":\"_isLastAttempt\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeBatchTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256[]\",\"name\":\"ids\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"id\"},{\"type\":\"uint256\",\"name\":\"amount\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"selfDelegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_anyToken\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sendMessage\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash_\"},{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendSignal\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256[]\",\"name\":\"tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256\",\"name\":\"amount\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"serialNumIsRevoked\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"idx\"},{\"type\":\"bytes\",\"name\":\"serialNum\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"revoked\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setApprovalForAll\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"operator\"},{\"type\":\"bool\",\"name\":\"approved\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setGuardians\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_newGuardians\"},{\"type\":\"uint8\",\"name\":\"_minGuardians\"},{\"type\":\"bool\",\"name\":\"_clearData\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrEnclave\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrEnclave\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrSigner\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrSigner\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sigVerifyLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"signalForChainData\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"signalForFailedMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"source\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"splitCertificateChain\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"pemChain\"},{\"type\":\"uint256\",\"name\":\"size\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"bytes[]\",\"name\":\"certs\"}]},{\"type\":\"function\",\"name\":\"srcChainId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"srcToken\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"state\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"__reserve1\"},{\"type\":\"tuple\",\"name\":\"slotA\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"name\":\"slotB\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"supportsInterface\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes4\",\"name\":\"_interfaceId\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"syncChainData\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"tcbInfo\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"}],\"outputs\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"}]},{\"type\":\"function\",\"name\":\"toggleLocalReportCheck\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"tokenURI\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"topBlockId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"kind\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId\"}]},{\"type\":\"function\",\"name\":\"totalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"transfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"trustedUserMrEnclave\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"enclave\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"trustedUserMrSigner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"signer\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"uri\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"verifyAttestation\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"}]},{\"type\":\"function\",\"name\":\"verifyBlocks\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_maxBlocksToVerify\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyES256Signature\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"tbs\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bytes\",\"name\":\"publicKey\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"sigValid\"}]},{\"type\":\"function\",\"name\":\"verifyParsedQuote\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"v3quote\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"bool\"},{\"type\":\"bytes\"}]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifySignalReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"version\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"withdrawBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"withdrawTaikoToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"constructor\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"es256Verifier\"}]}]","addresses":["0x02772b7B3a5Bea0141C993Dbb8D0733C19F46169","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x11A9ebA17EbF92b40fcf9a640Ebbc47Db6fBeab0","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0x39E4C1214e733639d059979079A151911e42791d","0x47bB416ee947fE4a4b655011aF7d6E3A1B80E6e9","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0x579f40D0BE111b823962043702cabe6Aaa290780","0x67281b15aee4d6b805bc755e439abd524dd8da8d","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0xa25e645ff9897b0282e5f17d36de5bca4ec21d6e","0xaf145913EA4a56BE22E120ED9C24589659881702","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0xc4096E9ff1526Bd1840B65e9f45695135aC12De7","0xcc5d488073FA918cBbd73B9A523F3858C4de7372","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC"]}],"createdAt":"2024-08-27T09:44:01.744Z","subscriberId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","name":"TaikoL1: Pause/Unpause","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","blockWatcherId":"mainnet-6","paused":false,"stackResourceId":"mystack.taiko-l-1-pause-unpause","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"LOW","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet SGX Prover triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceAdded(uint256,address,address,uint256)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceDeleted(uint256,address)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[{"functionSignature":"verifyProof((bytes32,bytes32,address,uint64,bool,bool,address),(bytes32,bytes32,bytes32,bytes32),(uint16,bytes))","expression":null}],"eventConditions":[]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]}]","addresses":["0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81"]}],"createdAt":"2024-05-02T14:09:42.804Z","subscriberId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","name":"Taiko Mainnet SGX Prover","network":"mainnet","riskCategory":"TECHNICAL","monitorId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-sgx-prover","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Address Managers triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AddressSet(uint64,bytes32,address,address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x579f40D0BE111b823962043702cabe6Aaa290780"]}],"createdAt":"2024-05-02T14:00:18.874Z","subscriberId":"3919cb83-487f-4432-88fa-33bbe4361fce","name":"Taiko Mainnet Address Managers","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"3919cb83-487f-4432-88fa-33bbe4361fce","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-address-managers","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Essential Contracts triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AdminChanged(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"BeaconUpgraded(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Initialized(uint8)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferStarted(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferred(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Upgraded(address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0xaf145913EA4a56BE22E120ED9C24589659881702","0x579f40D0BE111b823962043702cabe6Aaa290780","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3"]}],"createdAt":"2024-05-02T13:49:54.192Z","subscriberId":"67a53521-3d4a-4de4-92ab-ede82cc45644","name":"Taiko Mainnet Essential Contracts","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"67a53521-3d4a-4de4-92ab-ede82cc45644","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-essential-contracts","type":"BLOCK"}]},"actions":{"removed":[],"created":[],"updated":[{"autotaskId":"86964fd3-3da8-4501-a572-cbf51045f861","actionId":"86964fd3-3da8-4501-a572-cbf51045f861","name":"ERC20Vault: Balance Drop","paused":false,"trigger":{"cron":null,"frequencyMinutes":15,"type":"schedule"},"codeDigest":"+Y75bpyOzEuCm0y95ZczKkySm4PgLyQQt6ASpaB08Lk=","stackResourceId":"mystack.erc-20-vault-balance-drop","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVASVlLscBMAAHATAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBFUkMyMF9BQkkgPSBbCiAgewogICAgY29uc3RhbnQ6IHRydWUsCiAgICBpbnB1dHM6IFt7IG5hbWU6ICJfb3duZXIiLCB0eXBlOiAiYWRkcmVzcyIgfV0sCiAgICBuYW1lOiAiYmFsYW5jZU9mIiwKICAgIG91dHB1dHM6IFt7IG5hbWU6ICJiYWxhbmNlIiwgdHlwZTogInVpbnQyNTYiIH1dLAogICAgcGF5YWJsZTogZmFsc2UsCiAgICBzdGF0ZU11dGFiaWxpdHk6ICJ2aWV3IiwKICAgIHR5cGU6ICJmdW5jdGlvbiIsCiAgfSwKXTsKCmFzeW5jIGZ1bmN0aW9uIGdldEVSQzIwQmFsYW5jZShwcm92aWRlciwgdG9rZW5BZGRyZXNzLCB2YXVsdEFkZHJlc3MpIHsKICBjb25zdCBjb250cmFjdCA9IG5ldyBldGhlcnMuQ29udHJhY3QodG9rZW5BZGRyZXNzLCBFUkMyMF9BQkksIHByb3ZpZGVyKTsKICByZXR1cm4gYXdhaXQgY29udHJhY3QuYmFsYW5jZU9mKHZhdWx0QWRkcmVzcyk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGdldE5hdGl2ZVRva2VuQmFsYW5jZShwcm92aWRlciwgdmF1bHRBZGRyZXNzKSB7CiAgcmV0dXJuIGF3YWl0IHByb3ZpZGVyLmdldEJhbGFuY2UodmF1bHRBZGRyZXNzKTsKfQoKYXN5bmMgZnVuY3Rpb24gbW9uaXRvclRva2VuQmFsYW5jZSgKICBwcm92aWRlciwKICB0b2tlbkFkZHJlc3MsCiAgdmF1bHRBZGRyZXNzLAogIHByZXZpb3VzQmFsYW5jZUtleSwKICBub3RpZmljYXRpb25DbGllbnQsCiAgc2VjcmV0cywKICBjbGllbnQsCiAgdG9rZW5OYW1lLAogIG5ldHdvcmtOYW1lLAopIHsKICBjb25zb2xlLmxvZyhgTW9uaXRvcmluZyAke3Rva2VuTmFtZX0gYmFsYW5jZSBvbiAke25ldHdvcmtOYW1lfWApOwogIGNvbnN0IHByZXZpb3VzQmFsYW5jZSA9IGV0aGVycy5CaWdOdW1iZXIuZnJvbSgKICAgIHNlY3JldHNbcHJldmlvdXNCYWxhbmNlS2V5XSB8fCAiMCIsCiAgKTsKICBjb25zb2xlLmxvZygKICAgIGBQcmV2aW91cyAke3Rva2VuTmFtZX0gQmFsYW5jZTogJHtldGhlcnMudXRpbHMuZm9ybWF0VW5pdHMoCiAgICAgIHByZXZpb3VzQmFsYW5jZSwKICAgICAgMTgsCiAgICApfWAsCiAgKTsKCiAgbGV0IGN1cnJlbnRCYWxhbmNlOwogIGlmICh0b2tlbk5hbWUgPT09ICJFVEgiKSB7CiAgICBjdXJyZW50QmFsYW5jZSA9IGF3YWl0IGdldE5hdGl2ZVRva2VuQmFsYW5jZShwcm92aWRlciwgdmF1bHRBZGRyZXNzKTsKICB9IGVsc2UgewogICAgY3VycmVudEJhbGFuY2UgPSBhd2FpdCBnZXRFUkMyMEJhbGFuY2UoCiAgICAgIHByb3ZpZGVyLAogICAgICB0b2tlbkFkZHJlc3MsCiAgICAgIHZhdWx0QWRkcmVzcywKICAgICk7CiAgfQogIGNvbnNvbGUubG9nKAogICAgYEN1cnJlbnQgJHt0b2tlbk5hbWV9IEJhbGFuY2U6ICR7ZXRoZXJzLnV0aWxzLmZvcm1hdFVuaXRzKAogICAgICBjdXJyZW50QmFsYW5jZSwKICAgICAgMTgsCiAgICApfWAsCiAgKTsKCiAgaWYgKCFwcmV2aW91c0JhbGFuY2UuaXNaZXJvKCkpIHsKICAgIGNvbnN0IGRyb3BQZXJjZW50YWdlID0gcHJldmlvdXNCYWxhbmNlCiAgICAgIC5zdWIoY3VycmVudEJhbGFuY2UpCiAgICAgIC5tdWwoMTAwKQogICAgICAuZGl2KHByZXZpb3VzQmFsYW5jZSkKICAgICAgLnRvTnVtYmVyKCk7CiAgICBjb25zb2xlLmxvZygKICAgICAgYENhbGN1bGF0ZWQgZHJvcCBwZXJjZW50YWdlIGZvciAke3Rva2VuTmFtZX06ICR7ZHJvcFBlcmNlbnRhZ2V9JWAsCiAgICApOwoKICAgIGlmIChkcm9wUGVyY2VudGFnZSA+PSA1KSB7CiAgICAgIGNvbnN0IG1lc3NhZ2UgPSBgQWxlcnQ6ICR7dG9rZW5OYW1lfSBiYWxhbmNlIGhhcyBkcm9wcGVkIGJ5ICR7ZHJvcFBlcmNlbnRhZ2V9JSBvbiAke25ldHdvcmtOYW1lfS5cblByZXZpb3VzIEJhbGFuY2U6ICR7ZXRoZXJzLnV0aWxzLmZvcm1hdFVuaXRzKAogICAgICAgIHByZXZpb3VzQmFsYW5jZSwKICAgICAgICAxOCwKICAgICAgKX1cbkN1cnJlbnQgQmFsYW5jZTogJHtldGhlcnMudXRpbHMuZm9ybWF0VW5pdHMoY3VycmVudEJhbGFuY2UsIDE4KX1gOwogICAgICBhbGVydE9yZygKICAgICAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICAgICAgYOKaoO+4jyAke25ldHdvcmtOYW1lfTogJHt0b2tlbk5hbWV9IEJhbGFuY2UgRHJvcCBBbGVydGAsCiAgICAgICAgbWVzc2FnZSwKICAgICAgKTsKICAgIH0gZWxzZSB7CiAgICAgIGNvbnNvbGUubG9nKAogICAgICAgIGBObyBzaWduaWZpY2FudCAke3Rva2VuTmFtZX0gYmFsYW5jZSBkcm9wIGRldGVjdGVkIG9uICR7bmV0d29ya05hbWV9YCwKICAgICAgKTsKICAgIH0KICB9IGVsc2UgewogICAgY29uc29sZS5sb2coCiAgICAgIGBObyBwcmV2aW91cyAke3Rva2VuTmFtZX0gYmFsYW5jZSB0byBjb21wYXJlIG9uICR7bmV0d29ya05hbWV9YCwKICAgICk7CiAgfQoKICBhd2FpdCBzdG9yZVByZXZpb3VzQmFsYW5jZShjbGllbnQsIHByZXZpb3VzQmFsYW5jZUtleSwgY3VycmVudEJhbGFuY2UpOwp9CgpmdW5jdGlvbiBhbGVydE9yZyhub3RpZmljYXRpb25DbGllbnQsIHN1YmplY3QsIG1lc3NhZ2UpIHsKICBub3RpZmljYXRpb25DbGllbnQuc2VuZCh7CiAgICBjaGFubmVsQWxpYXM6ICJkaXNjb3JkX2JyaWRnaW5nIiwKICAgIHN1YmplY3QsCiAgICBtZXNzYWdlLAogIH0pOwp9Cgphc3luYyBmdW5jdGlvbiBzdG9yZVByZXZpb3VzQmFsYW5jZShjbGllbnQsIGtleSwgbmV3QmFsYW5jZSkgewogIGNvbnNvbGUubG9nKAogICAgYFN0b3JpbmcgcHJldmlvdXMgYmFsYW5jZSB1bmRlciBrZXk6ICR7a2V5fSwgdmFsdWU6ICR7bmV3QmFsYW5jZS50b1N0cmluZygpfWAsCiAgKTsKICBjb25zdCBib2R5ID0gewogICAgZGVsZXRlczogW10sCiAgICBzZWNyZXRzOiB7CiAgICAgIFtrZXldOiBuZXdCYWxhbmNlLnRvU3RyaW5nKCksCiAgICB9LAogIH07CiAgYXdhaXQgY2xpZW50LmFjdGlvbi5jcmVhdGVTZWNyZXRzKGJvZHkpOwp9CgpmdW5jdGlvbiBjcmVhdGVQcm92aWRlcihhcGlLZXksIGFwaVNlY3JldCwgcmVsYXllckFwaUtleSwgcmVsYXllckFwaVNlY3JldCkgewogIGNvbnNvbGUubG9nKGBDcmVhdGluZyBwcm92aWRlciB3aXRoIEFQSSBrZXlzYCk7CiAgY29uc3QgY2xpZW50ID0gbmV3IERlZmVuZGVyKHsKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHJlbGF5ZXJBcGlLZXksCiAgICByZWxheWVyQXBpU2VjcmV0LAogIH0pOwoKICByZXR1cm4gY2xpZW50LnJlbGF5U2lnbmVyLmdldFByb3ZpZGVyKCk7Cn0KCmV4cG9ydHMuaGFuZGxlciA9IGFzeW5jIGZ1bmN0aW9uIChldmVudCwgY29udGV4dCkgewogIGNvbnN0IHsgbm90aWZpY2F0aW9uQ2xpZW50IH0gPSBjb250ZXh0OwogIGNvbnN0IHsgYXBpS2V5LCBhcGlTZWNyZXQsIHRhaWtvTDFBcGlLZXksIHRhaWtvTDFBcGlTZWNyZXQgfSA9IGV2ZW50LnNlY3JldHM7CgogIGNvbnNvbGUubG9nKGBTdGFydGluZyBiYWxhbmNlIG1vbml0b3JpbmcgZm9yIEwxYCk7CgogIGNvbnN0IGwxUHJvdmlkZXIgPSBjcmVhdGVQcm92aWRlcigKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHRhaWtvTDFBcGlLZXksCiAgICB0YWlrb0wxQXBpU2VjcmV0LAogICk7CgogIGNvbnN0IGwxVmF1bHRBZGRyZXNzID0gIjB4OTk2MjgyY0ExMUU1REViNkI1RDEyMkNDM0I5QTFGY0FBRDQ0MTVBYiI7CgogIGNvbnN0IGwxVG9rZW5BZGRyZXNzZXMgPSB7CiAgICBFVEg6IG51bGwsCiAgICBUQUlLTzogZXRoZXJzLnV0aWxzLmdldEFkZHJlc3MoCiAgICAgICIweDEwZGVhNjc0NzhjNUY4QzVFMkQ5MGU1RTlCMjZkQmU2MGM1NGQ4MDAiLAogICAgKSwKICAgIFVTREM6IGV0aGVycy51dGlscy5nZXRBZGRyZXNzKCIweEEwYjg2OTkxYzYyMThiMzZjMWQxOUQ0YTJlOUViMGNFMzYwNmVCNDgiKSwKICAgIFVTRFQ6IGV0aGVycy51dGlscy5nZXRBZGRyZXNzKCIweGRBQzE3Rjk1OEQyZWU1MjNhMjIwNjIwNjk5NDU5N0MxM0Q4MzFlYzciKSwKICB9OwoKICBjb25zdCBjbGllbnQgPSBuZXcgRGVmZW5kZXIoewogICAgYXBpS2V5LAogICAgYXBpU2VjcmV0LAogICAgdGFpa29MMUFwaUtleSwKICAgIHRhaWtvTDFBcGlTZWNyZXQsCiAgfSk7CgogIGF3YWl0IG1vbml0b3JUb2tlbkJhbGFuY2UoCiAgICBsMVByb3ZpZGVyLAogICAgbDFUb2tlbkFkZHJlc3Nlcy5FVEgsCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfRVRIIiwKICAgIG5vdGlmaWNhdGlvbkNsaWVudCwKICAgIGV2ZW50LnNlY3JldHMsCiAgICBjbGllbnQsCiAgICAiRVRIIiwKICAgICJMMSIsCiAgKTsKICBhd2FpdCBtb25pdG9yVG9rZW5CYWxhbmNlKAogICAgbDFQcm92aWRlciwKICAgIGwxVG9rZW5BZGRyZXNzZXMuVEFJS08sCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfVEFJS08iLAogICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgZXZlbnQuc2VjcmV0cywKICAgIGNsaWVudCwKICAgICJUQUlLTyIsCiAgICAiTDEiLAogICk7CiAgYXdhaXQgbW9uaXRvclRva2VuQmFsYW5jZSgKICAgIGwxUHJvdmlkZXIsCiAgICBsMVRva2VuQWRkcmVzc2VzLlVTREMsCiAgICBsMVZhdWx0QWRkcmVzcywKICAgICJwcmV2aW91c0JhbGFuY2VfTDFfVVNEQyIsCiAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICBldmVudC5zZWNyZXRzLAogICAgY2xpZW50LAogICAgIlVTREMiLAogICAgIkwxIiwKICApOwogIGF3YWl0IG1vbml0b3JUb2tlbkJhbGFuY2UoCiAgICBsMVByb3ZpZGVyLAogICAgbDFUb2tlbkFkZHJlc3Nlcy5VU0RULAogICAgbDFWYXVsdEFkZHJlc3MsCiAgICAicHJldmlvdXNCYWxhbmNlX0wxX1VTRFQiLAogICAgbm90aWZpY2F0aW9uQ2xpZW50LAogICAgZXZlbnQuc2VjcmV0cywKICAgIGNsaWVudCwKICAgICJVU0RUIiwKICAgICJMMSIsCiAgKTsKCiAgY29uc29sZS5sb2coYEJhbGFuY2UgbW9uaXRvcmluZyBjb21wbGV0ZWRgKTsKCiAgcmV0dXJuIHRydWU7Cn07ClBLAQIUAAoAAAAAAAAAQVASVlLscBMAAHATAAAIAAAAAAAAAAAAAAAAAAAAAABpbmRleC5qc1BLBQYAAAAAAQABADYAAACWEwAAAAA="},{"autotaskId":"9c132973-b8dc-4406-895c-a4ba343455cf","actionId":"9c132973-b8dc-4406-895c-a4ba343455cf","name":"GuardianProver: Approved Count","paused":false,"trigger":{"cron":null,"frequencyMinutes":15,"type":"schedule"},"codeDigest":"uAUUlOAM2ITq1/WSZHtl4SydkwiCxNgrhR21sTpxmfc=","stackResourceId":"mystack.guardian-prover-approved-count","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-21","encodedZippedCode":"UEsDBAoAAAAAAAAAQVCjgTWbWw0AAFsNAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAib3BlcmF0aW9uSWQiLAogICAgICAgIHR5cGU6ICJ1aW50MjU2IiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogInVpbnQyNTYiLAogICAgICAgIG5hbWU6ICJhcHByb3ZhbEJpdHMiLAogICAgICAgIHR5cGU6ICJ1aW50MjU2IiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogImJvb2wiLAogICAgICAgIG5hbWU6ICJtaW5HdWFyZGlhbnNSZWFjaGVkIiwKICAgICAgICB0eXBlOiAiYm9vbCIsCiAgICAgIH0sCiAgICBdLAogICAgbmFtZTogIkFwcHJvdmVkIiwKICAgIHR5cGU6ICJldmVudCIsCiAgfSwKXTsKCmZ1bmN0aW9uIGFsZXJ0T3JnKG5vdGlmaWNhdGlvbkNsaWVudCwgbWVzc2FnZSkgewogIG5vdGlmaWNhdGlvbkNsaWVudC5zZW5kKHsKICAgIGNoYW5uZWxBbGlhczogImRpc2NvcmRfYnJpZGdpbmciLAogICAgc3ViamVjdDogIuKaoO+4jyBHdWFyZGlhblByb3ZlcjogQXBwcm92ZWQgQ291bnQiLAogICAgbWVzc2FnZSwKICB9KTsKfQoKYXN5bmMgZnVuY3Rpb24gZ2V0TGF0ZXN0QmxvY2tOdW1iZXIocHJvdmlkZXIpIHsKICBjb25zdCBjdXJyZW50QmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jaygibGF0ZXN0Iik7CiAgcmV0dXJuIGN1cnJlbnRCbG9jay5udW1iZXI7Cn0KCmFzeW5jIGZ1bmN0aW9uIGNhbGN1bGF0ZUJsb2NrVGltZShwcm92aWRlcikgewogIGNvbnN0IGxhdGVzdEJsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2soImxhdGVzdCIpOwogIGNvbnN0IHByZXZpb3VzQmxvY2sgPSBhd2FpdCBwcm92aWRlci5nZXRCbG9jayhsYXRlc3RCbG9jay5udW1iZXIgLSAxMDApOwoKICBjb25zdCB0aW1lRGlmZiA9IGxhdGVzdEJsb2NrLnRpbWVzdGFtcCAtIHByZXZpb3VzQmxvY2sudGltZXN0YW1wOwogIGNvbnN0IGJsb2NrRGlmZiA9IGxhdGVzdEJsb2NrLm51bWJlciAtIHByZXZpb3VzQmxvY2subnVtYmVyOwoKICBjb25zdCBibG9ja1RpbWUgPSB0aW1lRGlmZiAvIGJsb2NrRGlmZjsKICByZXR1cm4gYmxvY2tUaW1lOwp9Cgphc3luYyBmdW5jdGlvbiBjYWxjdWxhdGVCbG9ja1JhbmdlKHByb3ZpZGVyKSB7CiAgY29uc3QgY3VycmVudEJsb2NrTnVtYmVyID0gYXdhaXQgZ2V0TGF0ZXN0QmxvY2tOdW1iZXIocHJvdmlkZXIpOwogIGNvbnN0IGJsb2NrVGltZUluU2Vjb25kcyA9IGF3YWl0IGNhbGN1bGF0ZUJsb2NrVGltZShwcm92aWRlcik7CiAgY29uc3QgYmxvY2tzSW5PbmVIb3VyID0gTWF0aC5mbG9vcigoMTYgKiA2MCkgLyBibG9ja1RpbWVJblNlY29uZHMpOwoKICBjb25zdCBmcm9tQmxvY2sgPSBjdXJyZW50QmxvY2tOdW1iZXIgLSBibG9ja3NJbk9uZUhvdXI7CiAgY29uc3QgdG9CbG9jayA9IGN1cnJlbnRCbG9ja051bWJlcjsKCiAgY29uc29sZS5sb2coYENhbGN1bGF0ZWQgYmxvY2sgcmFuZ2U6IGZyb20gJHtmcm9tQmxvY2t9IHRvICR7dG9CbG9ja31gKTsKCiAgcmV0dXJuIHsgZnJvbUJsb2NrLCB0b0Jsb2NrIH07Cn0KCmFzeW5jIGZ1bmN0aW9uIGZldGNoTG9nc0Zyb21MMSgKICBldmVudE5hbWUsCiAgZnJvbUJsb2NrLAogIHRvQmxvY2ssCiAgYWRkcmVzcywKICBhYmksCiAgcHJvdmlkZXIsCikgewogIGNvbnN0IGlmYWNlID0gbmV3IGV0aGVycy51dGlscy5JbnRlcmZhY2UoYWJpKTsKICBjb25zdCBldmVudFRvcGljID0gaWZhY2UuZ2V0RXZlbnRUb3BpYyhldmVudE5hbWUpOwogIGNvbnNvbGUubG9nKGBldmVudFRvcGljOiAke2V2ZW50VG9waWN9YCk7CiAgdHJ5IHsKICAgIGNvbnN0IGxvZ3MgPSBhd2FpdCBwcm92aWRlci5nZXRMb2dzKHsKICAgICAgYWRkcmVzcywKICAgICAgZnJvbUJsb2NrLAogICAgICB0b0Jsb2NrLAogICAgICB0b3BpY3M6IFtldmVudFRvcGljXSwKICAgIH0pOwogICAgY29uc29sZS5sb2coYEZldGNoZWQgbG9nczogJHtsb2dzLmxlbmd0aH1gKTsKICAgIHJldHVybiBsb2dzLm1hcCgobG9nKSA9PiB7CiAgICAgIGNvbnN0IHBhcnNlZExvZyA9IGlmYWNlLnBhcnNlTG9nKGxvZyk7CiAgICAgIGNvbnNvbGUubG9nKGBQYXJzZWQgbG9nOiAke0pTT04uc3RyaW5naWZ5KHBhcnNlZExvZyl9YCk7CiAgICAgIHJldHVybiBwYXJzZWRMb2c7CiAgICB9KTsKICB9IGNhdGNoIChlcnJvcikgewogICAgY29uc29sZS5lcnJvcigiRXJyb3IgZmV0Y2hpbmcgTDEgbG9nczoiLCBlcnJvcik7CiAgICByZXR1cm4gW107CiAgfQp9CgpmdW5jdGlvbiBjcmVhdGVQcm92aWRlcihhcGlLZXksIGFwaVNlY3JldCwgcmVsYXllckFwaUtleSwgcmVsYXllckFwaVNlY3JldCkgewogIGNvbnN0IGNsaWVudCA9IG5ldyBEZWZlbmRlcih7CiAgICBhcGlLZXksCiAgICBhcGlTZWNyZXQsCiAgICByZWxheWVyQXBpS2V5LAogICAgcmVsYXllckFwaVNlY3JldCwKICB9KTsKCiAgcmV0dXJuIGNsaWVudC5yZWxheVNpZ25lci5nZXRQcm92aWRlcigpOwp9CgpleHBvcnRzLmhhbmRsZXIgPSBhc3luYyBmdW5jdGlvbiAoZXZlbnQsIGNvbnRleHQpIHsKICBjb25zdCB7IG5vdGlmaWNhdGlvbkNsaWVudCB9ID0gY29udGV4dDsKICBjb25zdCB7IGFwaUtleSwgYXBpU2VjcmV0LCB0YWlrb0wxQXBpS2V5LCB0YWlrb0wxQXBpU2VjcmV0IH0gPSBldmVudC5zZWNyZXRzOwoKICBjb25zdCB0YWlrb0wxUHJvdmlkZXIgPSBjcmVhdGVQcm92aWRlcigKICAgIGFwaUtleSwKICAgIGFwaVNlY3JldCwKICAgIHRhaWtvTDFBcGlLZXksCiAgICB0YWlrb0wxQXBpU2VjcmV0LAogICk7CgogIGNvbnN0IHsgZnJvbUJsb2NrLCB0b0Jsb2NrIH0gPSBhd2FpdCBjYWxjdWxhdGVCbG9ja1JhbmdlKHRhaWtvTDFQcm92aWRlcik7CgogIGNvbnN0IGxvZ3MgPSBhd2FpdCBmZXRjaExvZ3NGcm9tTDEoCiAgICAiQXBwcm92ZWQiLAogICAgZnJvbUJsb2NrLAogICAgdG9CbG9jaywKICAgICIweEUzRDc3NzE0M0VhMjVBNkUwMzFkMWU5MjFGMzk2NzUwODg1ZjQzYUMiLAogICAgQUJJLAogICAgdGFpa29MMVByb3ZpZGVyLAogICk7CgogIGlmIChsb2dzLmxlbmd0aCA+IDApIHsKICAgIGFsZXJ0T3JnKAogICAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICAgIGBAdGFpa298Z3VhcmRpYW5zIERldGVjdGVkICR7bG9ncy5sZW5ndGh9IEFwcHJvdmVkIGV2ZW50cyBpbiB0aGUgbGFzdCAxNSBtaW5zIG9uIEd1YXJkaWFuIWAsCiAgICApOwogIH0KCiAgcmV0dXJuIHRydWU7Cn07ClBLAQIUAAoAAAAAAAAAQVCjgTWbWw0AAFsNAAAIAAAAAAAAAAAAAAAAAAAAAABpbmRleC5qc1BLBQYAAAAAAQABADYAAACBDQAAAAA="},{"autotaskId":"3cabb163-79fb-432c-a90a-c111b346a209","actionId":"3cabb163-79fb-432c-a90a-c111b346a209","name":"TaikoL1: BlockProposed Alert","paused":false,"trigger":{"cron":null,"frequencyMinutes":4,"type":"schedule"},"codeDigest":"vJWyfL6uhkwr/JAecuiNP9OlAKXck8QKPr4RG7swqew=","stackResourceId":"mystack.taiko-l-1-block-proposed-alert","runtime":"nodejs20.x","dependenciesVersion":"v2024-08-05","encodedZippedCode":"UEsDBAoAAAAAAAAAQVDWZSrfwCEAAMAhAAAIAAAAaW5kZXguanNjb25zdCB7IGV0aGVycyB9ID0gcmVxdWlyZSgiZXRoZXJzIik7CmNvbnN0IHsgRGVmZW5kZXIgfSA9IHJlcXVpcmUoIkBvcGVuemVwcGVsaW4vZGVmZW5kZXItc2RrIik7Cgpjb25zdCBBQkkgPSBbCiAgewogICAgYW5vbnltb3VzOiBmYWxzZSwKICAgIGlucHV0czogWwogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MjU2IiwKICAgICAgICBuYW1lOiAiYmxvY2tJZCIsCiAgICAgICAgdHlwZTogInVpbnQyNTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgaW5kZXhlZDogdHJ1ZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJhZGRyZXNzIiwKICAgICAgICBuYW1lOiAiYXNzaWduZWRQcm92ZXIiLAogICAgICAgIHR5cGU6ICJhZGRyZXNzIiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogInVpbnQ5NiIsCiAgICAgICAgbmFtZTogImxpdmVuZXNzQm9uZCIsCiAgICAgICAgdHlwZTogInVpbnQ5NiIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBjb21wb25lbnRzOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAibDFIYXNoIiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJkaWZmaWN1bHR5IiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJibG9iSGFzaCIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAiZXh0cmFEYXRhIiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJkZXBvc2l0c0hhc2giLAogICAgICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJhZGRyZXNzIiwKICAgICAgICAgICAgbmFtZTogImNvaW5iYXNlIiwKICAgICAgICAgICAgdHlwZTogImFkZHJlc3MiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDY0IiwKICAgICAgICAgICAgbmFtZTogImlkIiwKICAgICAgICAgICAgdHlwZTogInVpbnQ2NCIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50MzIiLAogICAgICAgICAgICBuYW1lOiAiZ2FzTGltaXQiLAogICAgICAgICAgICB0eXBlOiAidWludDMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogInVpbnQ2NCIsCiAgICAgICAgICAgIG5hbWU6ICJ0aW1lc3RhbXAiLAogICAgICAgICAgICB0eXBlOiAidWludDY0IiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogInVpbnQ2NCIsCiAgICAgICAgICAgIG5hbWU6ICJsMUhlaWdodCIsCiAgICAgICAgICAgIHR5cGU6ICJ1aW50NjQiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDE2IiwKICAgICAgICAgICAgbmFtZTogIm1pblRpZXIiLAogICAgICAgICAgICB0eXBlOiAidWludDE2IiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJvb2wiLAogICAgICAgICAgICBuYW1lOiAiYmxvYlVzZWQiLAogICAgICAgICAgICB0eXBlOiAiYm9vbCIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogInBhcmVudE1ldGFIYXNoIiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYWRkcmVzcyIsCiAgICAgICAgICAgIG5hbWU6ICJzZW5kZXIiLAogICAgICAgICAgICB0eXBlOiAiYWRkcmVzcyIsCiAgICAgICAgICB9LAogICAgICAgIF0sCiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAic3RydWN0IFRhaWtvRGF0YS5CbG9ja01ldGFkYXRhIiwKICAgICAgICBuYW1lOiAibWV0YSIsCiAgICAgICAgdHlwZTogInR1cGxlIiwKICAgICAgfSwKICAgICAgewogICAgICAgIGNvbXBvbmVudHM6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYWRkcmVzcyIsCiAgICAgICAgICAgIG5hbWU6ICJyZWNpcGllbnQiLAogICAgICAgICAgICB0eXBlOiAiYWRkcmVzcyIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50OTYiLAogICAgICAgICAgICBuYW1lOiAiYW1vdW50IiwKICAgICAgICAgICAgdHlwZTogInVpbnQ5NiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50NjQiLAogICAgICAgICAgICBuYW1lOiAiaWQiLAogICAgICAgICAgICB0eXBlOiAidWludDY0IiwKICAgICAgICAgIH0sCiAgICAgICAgXSwKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJzdHJ1Y3QgVGFpa29EYXRhLkV0aERlcG9zaXRbXSIsCiAgICAgICAgbmFtZTogImRlcG9zaXRzUHJvY2Vzc2VkIiwKICAgICAgICB0eXBlOiAidHVwbGVbXSIsCiAgICAgIH0sCiAgICBdLAogICAgbmFtZTogIkJsb2NrUHJvcG9zZWQiLAogICAgdHlwZTogImV2ZW50IiwKICB9LAogIHsKICAgIGFub255bW91czogZmFsc2UsCiAgICBpbnB1dHM6IFsKICAgICAgewogICAgICAgIGluZGV4ZWQ6IHRydWUsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDI1NiIsCiAgICAgICAgbmFtZTogImJsb2NrSWQiLAogICAgICAgIHR5cGU6ICJ1aW50MjU2IiwKICAgICAgfSwKICAgICAgewogICAgICAgIGluZGV4ZWQ6IHRydWUsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAiYWRkcmVzcyIsCiAgICAgICAgbmFtZTogImFzc2lnbmVkUHJvdmVyIiwKICAgICAgICB0eXBlOiAiYWRkcmVzcyIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBpbmRleGVkOiBmYWxzZSwKICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50OTYiLAogICAgICAgIG5hbWU6ICJsaXZlbmVzc0JvbmQiLAogICAgICAgIHR5cGU6ICJ1aW50OTYiLAogICAgICB9LAogICAgICB7CiAgICAgICAgY29tcG9uZW50czogWwogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogImwxSGFzaCIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAiZGlmZmljdWx0eSIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAiYmxvYkhhc2giLAogICAgICAgICAgICB0eXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJieXRlczMyIiwKICAgICAgICAgICAgbmFtZTogImV4dHJhRGF0YSIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgICBuYW1lOiAiZGVwb3NpdHNIYXNoIiwKICAgICAgICAgICAgdHlwZTogImJ5dGVzMzIiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYWRkcmVzcyIsCiAgICAgICAgICAgIG5hbWU6ICJjb2luYmFzZSIsCiAgICAgICAgICAgIHR5cGU6ICJhZGRyZXNzIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogInVpbnQ2NCIsCiAgICAgICAgICAgIG5hbWU6ICJpZCIsCiAgICAgICAgICAgIHR5cGU6ICJ1aW50NjQiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDMyIiwKICAgICAgICAgICAgbmFtZTogImdhc0xpbWl0IiwKICAgICAgICAgICAgdHlwZTogInVpbnQzMiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50NjQiLAogICAgICAgICAgICBuYW1lOiAidGltZXN0YW1wIiwKICAgICAgICAgICAgdHlwZTogInVpbnQ2NCIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJ1aW50NjQiLAogICAgICAgICAgICBuYW1lOiAibDFIZWlnaHQiLAogICAgICAgICAgICB0eXBlOiAidWludDY0IiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogInVpbnQxNiIsCiAgICAgICAgICAgIG5hbWU6ICJtaW5UaWVyIiwKICAgICAgICAgICAgdHlwZTogInVpbnQxNiIsCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICBpbnRlcm5hbFR5cGU6ICJib29sIiwKICAgICAgICAgICAgbmFtZTogImJsb2JVc2VkIiwKICAgICAgICAgICAgdHlwZTogImJvb2wiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAiYnl0ZXMzMiIsCiAgICAgICAgICAgIG5hbWU6ICJwYXJlbnRNZXRhSGFzaCIsCiAgICAgICAgICAgIHR5cGU6ICJieXRlczMyIiwKICAgICAgICAgIH0sCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImFkZHJlc3MiLAogICAgICAgICAgICBuYW1lOiAic2VuZGVyIiwKICAgICAgICAgICAgdHlwZTogImFkZHJlc3MiLAogICAgICAgICAgfSwKICAgICAgICBdLAogICAgICAgIGluZGV4ZWQ6IGZhbHNlLAogICAgICAgIGludGVybmFsVHlwZTogInN0cnVjdCBUYWlrb0RhdGEuQmxvY2tNZXRhZGF0YSIsCiAgICAgICAgbmFtZTogIm1ldGEiLAogICAgICAgIHR5cGU6ICJ0dXBsZSIsCiAgICAgIH0sCiAgICAgIHsKICAgICAgICBjb21wb25lbnRzOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgIGludGVybmFsVHlwZTogImFkZHJlc3MiLAogICAgICAgICAgICBuYW1lOiAicmVjaXBpZW50IiwKICAgICAgICAgICAgdHlwZTogImFkZHJlc3MiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDk2IiwKICAgICAgICAgICAgbmFtZTogImFtb3VudCIsCiAgICAgICAgICAgIHR5cGU6ICJ1aW50OTYiLAogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgaW50ZXJuYWxUeXBlOiAidWludDY0IiwKICAgICAgICAgICAgbmFtZTogImlkIiwKICAgICAgICAgICAgdHlwZTogInVpbnQ2NCIsCiAgICAgICAgICB9LAogICAgICAgIF0sCiAgICAgICAgaW5kZXhlZDogZmFsc2UsCiAgICAgICAgaW50ZXJuYWxUeXBlOiAic3RydWN0IFRhaWtvRGF0YS5FdGhEZXBvc2l0W10iLAogICAgICAgIG5hbWU6ICJkZXBvc2l0c1Byb2Nlc3NlZCIsCiAgICAgICAgdHlwZTogInR1cGxlW10iLAogICAgICB9LAogICAgXSwKICAgIG5hbWU6ICJCbG9ja1Byb3Bvc2VkVjIiLAogICAgdHlwZTogImV2ZW50IiwKICB9LApdOwoKZnVuY3Rpb24gYWxlcnRPcmcobm90aWZpY2F0aW9uQ2xpZW50LCBtZXNzYWdlKSB7CiAgbm90aWZpY2F0aW9uQ2xpZW50LnNlbmQoewogICAgY2hhbm5lbEFsaWFzOiAiZGlzY29yZF9icmlkZ2luZyIsCiAgICBzdWJqZWN0OiAi8J+aqCBUYWlrb0wxOiBCbG9ja1Byb3Bvc2VkIEFsZXJ0IiwKICAgIG1lc3NhZ2UsCiAgfSk7CgogIG5vdGlmaWNhdGlvbkNsaWVudC5zZW5kKHsKICAgIGNoYW5uZWxBbGlhczogInRnX3RhaWtvX2d1YXJkaWFucyIsCiAgICBzdWJqZWN0OiAi8J+aqCBUYWlrb0wxOiBCbG9ja1Byb3Bvc2VkIEFsZXJ0IiwKICAgIG1lc3NhZ2UsCiAgfSk7Cn0KCmFzeW5jIGZ1bmN0aW9uIGdldExhdGVzdEJsb2NrTnVtYmVyKHByb3ZpZGVyKSB7CiAgY29uc3QgY3VycmVudEJsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2soImxhdGVzdCIpOwogIHJldHVybiBjdXJyZW50QmxvY2subnVtYmVyOwp9Cgphc3luYyBmdW5jdGlvbiBmZXRjaExvZ3NGcm9tTDEoCiAgZXZlbnROYW1lcywKICBmcm9tQmxvY2ssCiAgdG9CbG9jaywKICBhZGRyZXNzLAogIGFiaSwKICBwcm92aWRlciwKKSB7CiAgY29uc3QgaWZhY2UgPSBuZXcgZXRoZXJzLnV0aWxzLkludGVyZmFjZShhYmkpOwoKICBjb25zdCBhbGxMb2dzID0gW107CgogIGZvciAoY29uc3QgZXZlbnROYW1lIG9mIGV2ZW50TmFtZXMpIHsKICAgIGNvbnN0IGV2ZW50VG9waWMgPSBpZmFjZS5nZXRFdmVudFRvcGljKGV2ZW50TmFtZSk7CgogICAgdHJ5IHsKICAgICAgY29uc3QgbG9ncyA9IGF3YWl0IHByb3ZpZGVyLmdldExvZ3MoewogICAgICAgIGFkZHJlc3MsCiAgICAgICAgZnJvbUJsb2NrLAogICAgICAgIHRvQmxvY2ssCiAgICAgICAgdG9waWNzOiBbZXZlbnRUb3BpY10sCiAgICAgIH0pOwoKICAgICAgYWxsTG9ncy5wdXNoKAogICAgICAgIC4uLmxvZ3MubWFwKChsb2cpID0+CiAgICAgICAgICBpZmFjZS5kZWNvZGVFdmVudExvZyhldmVudE5hbWUsIGxvZy5kYXRhLCBsb2cudG9waWNzKSwKICAgICAgICApLAogICAgICApOwogICAgfSBjYXRjaCAoZXJyb3IpIHsKICAgICAgY29uc29sZS5lcnJvcihgRXJyb3IgZmV0Y2hpbmcgbG9ncyBmb3IgJHtldmVudE5hbWV9OmAsIGVycm9yKTsKICAgIH0KICB9CgogIHJldHVybiBhbGxMb2dzOwp9CgpmdW5jdGlvbiBjcmVhdGVQcm92aWRlcihhcGlLZXksIGFwaVNlY3JldCwgcmVsYXllckFwaUtleSwgcmVsYXllckFwaVNlY3JldCkgewogIGNvbnN0IGNsaWVudCA9IG5ldyBEZWZlbmRlcih7CiAgICBhcGlLZXksCiAgICBhcGlTZWNyZXQsCiAgICByZWxheWVyQXBpS2V5LAogICAgcmVsYXllckFwaVNlY3JldCwKICB9KTsKCiAgcmV0dXJuIGNsaWVudC5yZWxheVNpZ25lci5nZXRQcm92aWRlcigpOwp9Cgphc3luYyBmdW5jdGlvbiBjYWxjdWxhdGVCbG9ja1RpbWUocHJvdmlkZXIpIHsKICBjb25zdCBsYXRlc3RCbG9jayA9IGF3YWl0IHByb3ZpZGVyLmdldEJsb2NrKCJsYXRlc3QiKTsKICBjb25zdCBwcmV2aW91c0Jsb2NrID0gYXdhaXQgcHJvdmlkZXIuZ2V0QmxvY2sobGF0ZXN0QmxvY2subnVtYmVyIC0gMTAwKTsKCiAgY29uc3QgdGltZURpZmYgPSBsYXRlc3RCbG9jay50aW1lc3RhbXAgLSBwcmV2aW91c0Jsb2NrLnRpbWVzdGFtcDsKICBjb25zdCBibG9ja0RpZmYgPSBsYXRlc3RCbG9jay5udW1iZXIgLSBwcmV2aW91c0Jsb2NrLm51bWJlcjsKCiAgY29uc3QgYmxvY2tUaW1lID0gdGltZURpZmYgLyBibG9ja0RpZmY7CiAgcmV0dXJuIGJsb2NrVGltZTsKfQoKZXhwb3J0cy5oYW5kbGVyID0gYXN5bmMgZnVuY3Rpb24gKGV2ZW50LCBjb250ZXh0KSB7CiAgY29uc3QgeyBub3RpZmljYXRpb25DbGllbnQgfSA9IGNvbnRleHQ7CiAgY29uc3QgeyBhcGlLZXksIGFwaVNlY3JldCwgdGFpa29MMUFwaUtleSwgdGFpa29MMUFwaVNlY3JldCB9ID0gZXZlbnQuc2VjcmV0czsKCiAgY29uc3QgdGFpa29MMVByb3ZpZGVyID0gY3JlYXRlUHJvdmlkZXIoCiAgICBhcGlLZXksCiAgICBhcGlTZWNyZXQsCiAgICB0YWlrb0wxQXBpS2V5LAogICAgdGFpa29MMUFwaVNlY3JldCwKICApOwoKICBjb25zdCBjdXJyZW50QmxvY2tOdW1iZXIgPSBhd2FpdCBnZXRMYXRlc3RCbG9ja051bWJlcih0YWlrb0wxUHJvdmlkZXIpOwogIGNvbnN0IGJsb2NrVGltZUluU2Vjb25kcyA9IGF3YWl0IGNhbGN1bGF0ZUJsb2NrVGltZSh0YWlrb0wxUHJvdmlkZXIpOwogIGNvbnN0IGJsb2Nrc0luRml2ZU1pbnV0ZXMgPSBNYXRoLmZsb29yKCg1ICogNjApIC8gYmxvY2tUaW1lSW5TZWNvbmRzKTsKCiAgY29uc3QgZnJvbUJsb2NrID0gY3VycmVudEJsb2NrTnVtYmVyIC0gYmxvY2tzSW5GaXZlTWludXRlczsKICBjb25zdCB0b0Jsb2NrID0gY3VycmVudEJsb2NrTnVtYmVyOwoKICBjb25zdCBsb2dzID0gYXdhaXQgZmV0Y2hMb2dzRnJvbUwxKAogICAgWyJCbG9ja1Byb3Bvc2VkIiwgIkJsb2NrUHJvcG9zZWRWMiJdLAogICAgZnJvbUJsb2NrLAogICAgdG9CbG9jaywKICAgICIweDA2YTlBYjI3YzdlMjI1NWRmMTgxNUU2Q0MwMTY4ZDc3NTVGZWIxOWEiLAogICAgQUJJLAogICAgdGFpa29MMVByb3ZpZGVyLAogICk7CgogIGNvbnNvbGUubG9nKGBMb2dzIGZvdW5kOiAke2xvZ3MubGVuZ3RofWApOwoKICBpZiAobG9ncy5sZW5ndGggPT09IDApIHsKICAgIGFsZXJ0T3JnKAogICAgICBub3RpZmljYXRpb25DbGllbnQsCiAgICAgIGBObyBCbG9ja1Byb3Bvc2VkIGV2ZW50IGRldGVjdGVkIGluIHRoZSBsYXN0IDE1IG1pbnMgb24gVGFpa29MMSFgLAogICAgKTsKICB9CgogIHJldHVybiB0cnVlOwp9OwpQSwECFAAKAAAAAAAAAEFQ1mUq38AhAADAIQAACAAAAAAAAAAAAAAAAAAAAAAAaW5kZXguanNQSwUGAAAAAAEAAQA2AAAA5iEAAAAA"}]},"contracts":{"removed":[],"created":[],"updated":[]},"relayers":{"removed":[],"created":[],"updated":[],"relayerKeys":{"removed":[],"created":[],"updated":[]}},"notifications":{"removed":[],"created":[],"updated":[]},"secrets":{"removed":[],"created":[],"updated":[]},"blockExplorerApiKeys":{"removed":[],"created":[],"updated":[]},"forkedNetworks":{"removed":[],"created":[],"updated":[]},"privateNetworks":{"removed":[],"created":[],"updated":[]}} +{"stack":"mystack","timestamp":"2024-09-20T11:10:56.918Z","monitors":{"removed":[],"created":[],"updated":[{"skipABIValidation":false,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"⚠️ TaikoL1: ProvingPaused Alert","notifications":[{"paused":false,"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","type":"discord","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"stackResourceId":"mystack.discord-bridging","updatedAt":"2024-09-19T10:48:03.908Z"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[],"addresses":["0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a"]}],"createdAt":"2024-09-20T10:36:31.684Z","subscriberId":"1bc1012e-54fc-4fbc-8971-54c5b2a5146e","name":"TaikoL1: ProvingPaused Alert","network":"mainnet","monitorId":"1bc1012e-54fc-4fbc-8971-54c5b2a5146e","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-l-1-proving-paused-alert","type":"BLOCK"},{"skipABIValidation":false,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"⚠️ GuardianProver: GuardiansUpdated Alert","notifications":[{"paused":false,"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","type":"discord","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"stackResourceId":"mystack.discord-bridging","updatedAt":"2024-09-19T10:48:03.908Z"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[],"addresses":["0xE3D777143Ea25A6E031d1e921F396750885f43aC"]}],"createdAt":"2024-09-20T10:36:35.701Z","subscriberId":"8e05b9b7-09d2-4b2e-b843-96a62f03c80a","name":"GuardianProver: GuardiansUpdated Alert","network":"mainnet","monitorId":"8e05b9b7-09d2-4b2e-b843-96a62f03c80a","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.guardian-prover-guardians-updated-alert","type":"BLOCK"},{"skipABIValidation":false,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"🚨 GuardianProver: ConflictingProofs Alert","notifications":[{"paused":false,"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","type":"discord","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"stackResourceId":"mystack.discord-bridging","updatedAt":"2024-09-19T10:48:03.908Z"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[],"addresses":["0xE3D777143Ea25A6E031d1e921F396750885f43aC"]}],"createdAt":"2024-09-20T10:36:39.801Z","subscriberId":"deb988aa-3550-4690-9f9b-b45486a45af0","name":"GuardianProver: ConflictingProofs Alert","network":"mainnet","monitorId":"deb988aa-3550-4690-9f9b-b45486a45af0","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.guardian-prover-conflicting-proofs-alert","type":"BLOCK"},{"skipABIValidation":false,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"⚠️ GuardianProver: ProvingAutoPauseEnabled Alert","notifications":[{"paused":false,"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","name":"discord_bridging","notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827","type":"discord","config":{"url":"https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s"},"stackResourceId":"mystack.discord-bridging","updatedAt":"2024-09-19T10:48:03.908Z"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[],"addresses":["0xE3D777143Ea25A6E031d1e921F396750885f43aC"]}],"createdAt":"2024-09-20T10:36:44.961Z","subscriberId":"cf7ea759-183f-4761-96cc-ec6cf9052d3b","name":"GuardianProver: ProvingAutoPauseEnabled Alert","network":"mainnet","monitorId":"cf7ea759-183f-4761-96cc-ec6cf9052d3b","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.guardian-prover-proving-auto-pause-enabled-alert","type":"BLOCK"},{"skipABIValidation":true,"alertThreshold":null,"notifyConfig":{"severityLevel":"MEDIUM","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n**Match Reasons**\n\n{{ matchReasonsFormatted }}\n\n**Metadata**\n\n{{ metadataFormatted }}","messageSubject":"Defender Monitor: TaikoL1: Pause/Unpause triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":60000},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]}],"abi":"[{\"type\":\"error\",\"name\":\"AM_ADDRESS_ALREADY_SET\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"spender\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approval\",\"inputs\":[{\"type\":\"address\",\"name\":\"owner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"approved\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ApprovalForAll\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Approved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"operationId\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"approvalBits\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"minGuardiansReached\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Authorized\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"authorized\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"BB_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_MINT_DISALLOWED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BB_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_CANNOT_RECEIVE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_BURN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"BTOKEN_INVALID_PARAMS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INSUFFICIENT_GAS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_CONTEXT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_GAS_LIMIT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_INVALID_VALUE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_MESSAGE_NOT_SENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_OUT_OF_ETH_QUOTA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_PROOF_TOO_LARGE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_RETRY_FAILED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"B_SIGNAL_NOT_RECEIVED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockProposed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"assignedProver\",\"indexed\":true},{\"type\":\"uint96\",\"name\":\"livenessBond\",\"indexed\":false},{\"type\":\"tuple\",\"name\":\"meta\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"depositsProcessed\",\"indexed\":false,\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BlockVerified\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"stateRoot\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondCredited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BondDebited\",\"inputs\":[{\"type\":\"address\",\"name\":\"user\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenChanged\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btokenOld\",\"indexed\":false},{\"type\":\"address\",\"name\":\"btokenNew\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BridgedTokenDeployed\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"srcChainId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"btoken\",\"indexed\":true},{\"type\":\"string\",\"name\":\"ctokenSymbol\",\"indexed\":false},{\"type\":\"string\",\"name\":\"ctokenName\",\"indexed\":false},{\"type\":\"uint8\",\"name\":\"ctokenDecimal\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"CLOCK_MODE\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"CalldataTxList\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"txList\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ChainDataSynced\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"kind\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"data\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ConflictingProofs\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"address\",\"name\":\"guardian\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"currentProofHash\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"newProofHash\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"provingPaused\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"DOMAIN_SEPARATOR\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"fromDelegate\",\"indexed\":true},{\"type\":\"address\",\"name\":\"toDelegate\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"DelegateVotesChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"delegate\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"previousBalance\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"newBalance\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EIP712DomainChanged\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ETH_TRANSFER_FAILED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"EtherPaymentFailed\",\"inputs\":[{\"type\":\"address\",\"name\":\"to\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"maxGas\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"FUNC_NOT_IMPLEMENTED\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"GAS_OVERHEAD\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"GAS_RESERVE\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_GUARDIAN_SET\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_MIN_GUARDIANS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GP_INVALID_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"GV_ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardianApproval\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"blockHash\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"approved\",\"indexed\":false},{\"type\":\"bytes\",\"name\":\"proofData\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"GuardiansUpdated\",\"inputs\":[{\"type\":\"uint32\",\"name\":\"version\",\"indexed\":false},{\"type\":\"address[]\",\"name\":\"guardians\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_EXPIRED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_ASSIGNMENT_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"HOOK_TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"error\",\"name\":\"INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"L1_ALREADY_CONTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_ALREADY_PROVED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_AVAILABLE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOB_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_BLOCK_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_CANNOT_CONTEST\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_BLOCK_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_GENESIS_HASH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_PAUSE_STATUS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_SIG\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TIER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_INVALID_TRANSITION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_NOT_ASSIGNED_PROVER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_PROVING_PAUSED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_RECEIVE_DISABLED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TOO_MANY_BLOCKS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_TRANSITION_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_PARENT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"L1_UNEXPECTED_TRANSITION_ID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_ACCOUNT_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"LTP_INVALID_INCLUSION_PROOF\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"LocalReportCheckToggled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"checkLocalEnclaveReport\",\"indexed\":false}]},{\"type\":\"function\",\"name\":\"MAX_GAS_PAYING_PROVER\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"MIN_MIGRATION_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageProcessed\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"stats\",\"indexed\":false,\"components\":[{\"type\":\"uint32\",\"name\":\"gasUsedInFeeCalc\"},{\"type\":\"uint32\",\"name\":\"proofSize\"},{\"type\":\"uint32\",\"name\":\"numCacheOps\"},{\"type\":\"bool\",\"name\":\"processedByRelayer\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"message\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MessageStatusChanged\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"uint8\",\"name\":\"status\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigratedTo\",\"inputs\":[{\"type\":\"address\",\"name\":\"fromToken\",\"indexed\":true},{\"type\":\"address\",\"name\":\"account\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MigrationStatusChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"addr\",\"indexed\":false},{\"type\":\"bool\",\"name\":\"inbound\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrEnclaveUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrEnclave\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"MrSignerUpdated\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"mrSigner\",\"indexed\":true},{\"type\":\"bool\",\"name\":\"trusted\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingAutoPauseEnabled\",\"inputs\":[{\"type\":\"bool\",\"name\":\"enabled\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"ProvingPaused\",\"inputs\":[{\"type\":\"bool\",\"name\":\"paused\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"QeIdentityConfigured\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"indexed\":false,\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}]},{\"type\":\"error\",\"name\":\"REENTRANT_CALL\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"RELAYER_MAX_PROOF_BYTES\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"error\",\"name\":\"RESOLVER_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_INVALID_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_UNEXPECTED_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"RESOLVER_ZERO_ADDR\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"name\"}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"RevokedCertSerialNumRemoved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\",\"indexed\":true},{\"type\":\"bytes\",\"name\":\"serialNum\",\"indexed\":false}]},{\"type\":\"error\",\"name\":\"SGX_ALREADY_ATTESTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_ATTESTATION\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_INSTANCE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_INVALID_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SGX_RA_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_EMPTY_PROOF\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_HOPS_WITH_LOOP\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_LAST_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_MID_HOP_CHAINID\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_INVALID_STATE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_SIGNAL_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SS_UNAUTHORIZED\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"SignalSent\",\"inputs\":[{\"type\":\"address\",\"name\":\"app\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"signal\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"slot\",\"indexed\":false},{\"type\":\"bytes32\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"StateVariablesUpdated\",\"inputs\":[{\"type\":\"tuple\",\"name\":\"slotB\",\"indexed\":false,\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"error\",\"name\":\"TIER_NOT_FOUND\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"TT_INVALID_PARAM\",\"inputs\":[]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TcbInfoJsonConfigured\",\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"indexed\":false,\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReceived\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"srcChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenReleased\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"tokenIds\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"amounts\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TokenSent\",\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint64\",\"name\":\"canonicalChainId\",\"indexed\":false},{\"type\":\"uint64\",\"name\":\"destChainId\",\"indexed\":false},{\"type\":\"address\",\"name\":\"ctoken\",\"indexed\":false},{\"type\":\"address\",\"name\":\"token\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"amount\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Transfer\",\"inputs\":[{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"tokenId\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferBatch\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256[]\",\"name\":\"ids\",\"indexed\":false},{\"type\":\"uint256[]\",\"name\":\"values\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransferSingle\",\"inputs\":[{\"type\":\"address\",\"name\":\"operator\",\"indexed\":true},{\"type\":\"address\",\"name\":\"from\",\"indexed\":true},{\"type\":\"address\",\"name\":\"to\",\"indexed\":true},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"value\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionContested\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"contester\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"contestBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"TransitionProved\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"blockId\",\"indexed\":true},{\"type\":\"tuple\",\"name\":\"tran\",\"indexed\":false,\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"address\",\"name\":\"prover\",\"indexed\":false},{\"type\":\"uint96\",\"name\":\"validityBond\",\"indexed\":false},{\"type\":\"uint16\",\"name\":\"tier\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"URI\",\"inputs\":[{\"type\":\"string\",\"name\":\"value\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_DATA\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_CERTIFICATION_CHAIN_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_ECDSA_SIGNATURE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEAUTHDATA_SIZE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QEREPORT_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_INVALID_QUOTE_MEMBER_LENGTN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"V3PARSER_UNSUPPORT_CERTIFICATION_TYPE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_BTOKEN_BLACKLISTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_CTOKEN_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INSUFFICIENT_FEE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INTERFACE_NOT_SUPPORTED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_AMOUNT\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_CTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_NEW_BTOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TOKEN\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_INVALID_TO_ADDR\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_LAST_MIGRATION_TOO_CLOSE\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_PERMISSION_DENIED\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"VAULT_TOKEN_ARRAY_MISMATCH\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDRESS\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_ADDR_MANAGER\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ZERO_VALUE\",\"inputs\":[]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"allowance\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"approvals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"bytes32\",\"name\":\"proofHash\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"approvalBits\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\",\"name\":\"approved_\"}]},{\"type\":\"function\",\"name\":\"approve\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"authorize\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_addr\"},{\"type\":\"bool\",\"name\":\"_authorize\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"id\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"balanceOfBatch\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"accounts\"},{\"type\":\"uint256[]\",\"name\":\"ids\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"batchTransfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"recipients\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"bondBalanceOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_user\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"bridgedToCanonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"function\",\"name\":\"btokenDenylist\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"btoken\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"denied\"}]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"burn\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"canonical\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"canonicalToBridged\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btoken\"}]},{\"type\":\"function\",\"name\":\"changeBridgedToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctoken\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint8\",\"name\":\"decimals\"},{\"type\":\"string\",\"name\":\"symbol\"},{\"type\":\"string\",\"name\":\"name\"}]},{\"type\":\"address\",\"name\":\"_btokenNew\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"btokenOld_\"}]},{\"type\":\"function\",\"name\":\"changeMigrationStatus\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_migratingAddress\"},{\"type\":\"bool\",\"name\":\"_migratingInbound\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"checkLocalEnclaveReport\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"checkpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint32\",\"name\":\"pos\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint32\",\"name\":\"fromBlock\"},{\"type\":\"uint224\",\"name\":\"votes\"}]}]},{\"type\":\"function\",\"name\":\"clock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint48\"}]},{\"type\":\"function\",\"name\":\"configureQeIdentityJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"qeIdentityInput\",\"components\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"tuple\",\"name\":\"tcb\",\"components\":[{\"type\":\"uint16\",\"name\":\"isvsvn\"}]},{\"type\":\"uint8\",\"name\":\"tcbStatus\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"configureTcbInfoJson\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple\",\"name\":\"tcbInfoInput\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"tuple[]\",\"name\":\"tcbLevels\",\"components\":[{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint8[]\",\"name\":\"sgxTcbCompSvnArr\"},{\"type\":\"uint8\",\"name\":\"status\"}]}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"context\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"name\":\"ctx_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"}]}]},{\"type\":\"function\",\"name\":\"decimals\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint8\"}]},{\"type\":\"function\",\"name\":\"decodeCert\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"der\"},{\"type\":\"bool\",\"name\":\"isPckCert\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"tuple\",\"name\":\"cert\",\"components\":[{\"type\":\"uint256\",\"name\":\"notBefore\"},{\"type\":\"uint256\",\"name\":\"notAfter\"},{\"type\":\"bytes\",\"name\":\"serialNumber\"},{\"type\":\"bytes\",\"name\":\"tbsCertificate\"},{\"type\":\"bytes\",\"name\":\"pubKey\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bool\",\"name\":\"isPck\"},{\"type\":\"tuple\",\"name\":\"pck\",\"components\":[{\"type\":\"string\",\"name\":\"commonName\"},{\"type\":\"string\",\"name\":\"issuerName\"},{\"type\":\"tuple\",\"name\":\"sgxExtension\",\"components\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"},{\"type\":\"uint256\",\"name\":\"pcesvn\"},{\"type\":\"uint256[]\",\"name\":\"sgxTcbCompSvnArr\"}]}]}]}]},{\"type\":\"function\",\"name\":\"decreaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"subtractedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"delegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegateBySig\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"delegatee\"},{\"type\":\"uint256\",\"name\":\"nonce\"},{\"type\":\"uint256\",\"name\":\"expiry\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"delegates\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"depositBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"eip712Domain\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes1\",\"name\":\"fields\"},{\"type\":\"string\",\"name\":\"name\"},{\"type\":\"string\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"verifyingContract\"},{\"type\":\"bytes32\",\"name\":\"salt\"},{\"type\":\"uint256[]\",\"name\":\"extensions\"}]},{\"type\":\"function\",\"name\":\"enableProvingAutoPause\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"enableTaikoTokenAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_enable\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"failMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getApproved\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"blk_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]}]},{\"type\":\"function\",\"name\":\"getConfig\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"uint64\",\"name\":\"blockMaxProposals\"},{\"type\":\"uint64\",\"name\":\"blockRingBufferSize\"},{\"type\":\"uint64\",\"name\":\"maxBlocksToVerify\"},{\"type\":\"uint32\",\"name\":\"blockMaxGasLimit\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint8\",\"name\":\"stateRootSyncInternal\"},{\"type\":\"bool\",\"name\":\"checkEOAForCalldataDA\"}]}]},{\"type\":\"function\",\"name\":\"getLastSyncedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getLastVerifiedBlock\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"blockHash_\"},{\"type\":\"bytes32\",\"name\":\"stateRoot_\"}]},{\"type\":\"function\",\"name\":\"getMessageMinGasLimit\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"dataLength\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"getMinTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"uint16\"}]},{\"type\":\"function\",\"name\":\"getPastTotalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getPastVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"uint256\",\"name\":\"timepoint\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"getSignalSlot\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"getStateVariables\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"getSyncedChainData\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId_\"},{\"type\":\"bytes32\",\"name\":\"chainData_\"}]},{\"type\":\"function\",\"name\":\"getTier\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint16\",\"name\":\"_tierId\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"verifierName\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint24\",\"name\":\"cooldownWindow\"},{\"type\":\"uint16\",\"name\":\"provingWindow\"},{\"type\":\"uint8\",\"name\":\"maxBlocksToVerifyPerProof\"}]}]},{\"type\":\"function\",\"name\":\"getTierIds\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint16[]\",\"name\":\"tiers_\"}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"uint32\",\"name\":\"_tid\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getTransition\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_parentHash\"}],\"outputs\":[{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"key\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint96\",\"name\":\"validityBond\"},{\"type\":\"address\",\"name\":\"contester\"},{\"type\":\"uint96\",\"name\":\"contestBond\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint8\",\"name\":\"__reserved1\"}]}]},{\"type\":\"function\",\"name\":\"getVerifiedBlockProver\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"prover_\"}]},{\"type\":\"function\",\"name\":\"getVotes\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"guardianIds\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"guardian\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"id\"}]},{\"type\":\"function\",\"name\":\"guardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"hashAssignment\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_assignment\",\"components\":[{\"type\":\"address\",\"name\":\"feeToken\"},{\"type\":\"uint64\",\"name\":\"expiry\"},{\"type\":\"uint64\",\"name\":\"maxBlockId\"},{\"type\":\"uint64\",\"name\":\"maxProposedIn\"},{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"tuple[]\",\"name\":\"tierFees\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"uint128\",\"name\":\"fee\"}]},{\"type\":\"bytes\",\"name\":\"signature\"}]},{\"type\":\"address\",\"name\":\"_taikoL1Address\"},{\"type\":\"address\",\"name\":\"_blockProposer\"},{\"type\":\"address\",\"name\":\"_assignedProver\"},{\"type\":\"bytes32\",\"name\":\"_blobHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"hashMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"impl\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"inNonReentrant\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"increaseAllowance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"addedValue\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"bytes32\",\"name\":\"_genesisBlockHash\"},{\"type\":\"bool\",\"name\":\"_toPause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"sigVerifyLibAddr\"},{\"type\":\"address\",\"name\":\"pemCertLibAddr\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"},{\"type\":\"address\",\"name\":\"_srcToken\"},{\"type\":\"uint256\",\"name\":\"_srcChainId\"},{\"type\":\"uint8\",\"name\":\"_decimals\"},{\"type\":\"string\",\"name\":\"_symbol\"},{\"type\":\"string\",\"name\":\"_name\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init2\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"isApprovedForAll\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"},{\"type\":\"address\",\"name\":\"operator\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isAuthorized\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"addr\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"authorized\"}]},{\"type\":\"function\",\"name\":\"isChainDataSynced\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isDestChainEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"enabled_\"},{\"type\":\"address\",\"name\":\"destBridge_\"}]},{\"type\":\"function\",\"name\":\"isMessageFailed\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isMessageSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"isSignalSent\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"lastMigrationStart\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"chainId\"},{\"type\":\"address\",\"name\":\"ctoken\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"timestamp\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"latestProofHash\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"version\"},{\"type\":\"uint256\",\"name\":\"blockId\"}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"hash\"}]},{\"type\":\"function\",\"name\":\"messageStatus\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status\"}]},{\"type\":\"function\",\"name\":\"migratingAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"migratingInbound\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"minGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mint\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_account\"},{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"mintBatch\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256[]\",\"name\":\"_tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"_amounts\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"name\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"nextMessageId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nonces\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"numCheckpoints\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"account\"}],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"numGuardians\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"onBlockProposed\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_blk\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"address\",\"name\":\"assignedProver\"},{\"type\":\"uint96\",\"name\":\"livenessBond\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"uint64\",\"name\":\"proposedAt\"},{\"type\":\"uint64\",\"name\":\"proposedIn\"},{\"type\":\"uint32\",\"name\":\"nextTransitionId\"},{\"type\":\"uint32\",\"name\":\"verifiedTransitionId\"}]},{\"type\":\"tuple\",\"name\":\"_meta\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onERC1155BatchReceived\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256[]\"},{\"type\":\"uint256[]\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC1155Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onERC721Received\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"address\"},{\"type\":\"address\"},{\"type\":\"uint256\"},{\"type\":\"bytes\"}],\"outputs\":[{\"type\":\"bytes4\"}]},{\"type\":\"function\",\"name\":\"onMessageInvocation\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"onMessageRecalled\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"ownerOf\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseProving\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bool\",\"name\":\"_pause\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"pauseTaikoProving\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pemCertLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"permit\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"owner\"},{\"type\":\"address\",\"name\":\"spender\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"uint256\",\"name\":\"deadline\"},{\"type\":\"uint8\",\"name\":\"v\"},{\"type\":\"bytes32\",\"name\":\"r\"},{\"type\":\"bytes32\",\"name\":\"s\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"processMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint8\",\"name\":\"status_\"},{\"type\":\"uint8\",\"name\":\"reason_\"}]},{\"type\":\"function\",\"name\":\"proposeBlock\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"bytes\",\"name\":\"_params\"},{\"type\":\"bytes\",\"name\":\"_txList\"}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"meta_\",\"components\":[{\"type\":\"bytes32\",\"name\":\"l1Hash\"},{\"type\":\"bytes32\",\"name\":\"difficulty\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"bytes32\",\"name\":\"extraData\"},{\"type\":\"bytes32\",\"name\":\"depositsHash\"},{\"type\":\"address\",\"name\":\"coinbase\"},{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint64\",\"name\":\"timestamp\"},{\"type\":\"uint64\",\"name\":\"l1Height\"},{\"type\":\"uint16\",\"name\":\"minTier\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"bytes32\",\"name\":\"parentMetaHash\"},{\"type\":\"address\",\"name\":\"sender\"}]},{\"type\":\"tuple[]\",\"name\":\"deposits_\",\"components\":[{\"type\":\"address\",\"name\":\"recipient\"},{\"type\":\"uint96\",\"name\":\"amount\"},{\"type\":\"uint64\",\"name\":\"id\"}]}]},{\"type\":\"function\",\"name\":\"proveBlock\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes\",\"name\":\"_input\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"proveSignalReceived\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[{\"type\":\"uint256\",\"name\":\"numCacheOps_\"}]},{\"type\":\"function\",\"name\":\"provingAutoPauseEnabled\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"qeIdentity\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes4\",\"name\":\"miscselect\"},{\"type\":\"bytes4\",\"name\":\"miscselectMask\"},{\"type\":\"uint16\",\"name\":\"isvprodid\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes16\",\"name\":\"attributesMask\"},{\"type\":\"bytes32\",\"name\":\"mrsigner\"}]},{\"type\":\"function\",\"name\":\"recallMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"removeRevokedCertSerialNum\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"index\"},{\"type\":\"bytes[]\",\"name\":\"serialNumBatch\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"retryMessage\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"bool\",\"name\":\"_isLastAttempt\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeBatchTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256[]\",\"name\":\"ids\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"id\"},{\"type\":\"uint256\",\"name\":\"amount\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"safeTransferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"selfDelegate\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_anyToken\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sendMessage\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_message\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"msgHash_\"},{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendSignal\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_signal\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256[]\",\"name\":\"tokenIds\"},{\"type\":\"uint256[]\",\"name\":\"amounts\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"sendToken\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_op\",\"components\":[{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"address\",\"name\":\"token\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"uint256\",\"name\":\"amount\"}]}],\"outputs\":[{\"type\":\"tuple\",\"name\":\"message_\",\"components\":[{\"type\":\"uint64\",\"name\":\"id\"},{\"type\":\"uint64\",\"name\":\"fee\"},{\"type\":\"uint32\",\"name\":\"gasLimit\"},{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"uint64\",\"name\":\"srcChainId\"},{\"type\":\"address\",\"name\":\"srcOwner\"},{\"type\":\"uint64\",\"name\":\"destChainId\"},{\"type\":\"address\",\"name\":\"destOwner\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"}]}]},{\"type\":\"function\",\"name\":\"serialNumIsRevoked\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"idx\"},{\"type\":\"bytes\",\"name\":\"serialNum\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"revoked\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setApprovalForAll\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"operator\"},{\"type\":\"bool\",\"name\":\"approved\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setGuardians\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_newGuardians\"},{\"type\":\"uint8\",\"name\":\"_minGuardians\"},{\"type\":\"bool\",\"name\":\"_clearData\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrEnclave\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrEnclave\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"setMrSigner\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_mrSigner\"},{\"type\":\"bool\",\"name\":\"_trusted\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"sigVerifyLib\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"signalForChainData\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"signalForFailedMessage\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"_msgHash\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"source\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"},{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"splitCertificateChain\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"pemChain\"},{\"type\":\"uint256\",\"name\":\"size\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"},{\"type\":\"bytes[]\",\"name\":\"certs\"}]},{\"type\":\"function\",\"name\":\"srcChainId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"srcToken\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"state\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\",\"name\":\"__reserve1\"},{\"type\":\"tuple\",\"name\":\"slotA\",\"components\":[{\"type\":\"uint64\",\"name\":\"genesisHeight\"},{\"type\":\"uint64\",\"name\":\"genesisTimestamp\"},{\"type\":\"uint64\",\"name\":\"lastSyncedBlockId\"},{\"type\":\"uint64\",\"name\":\"lastSynecdAt\"}]},{\"type\":\"tuple\",\"name\":\"slotB\",\"components\":[{\"type\":\"uint64\",\"name\":\"numBlocks\"},{\"type\":\"uint64\",\"name\":\"lastVerifiedBlockId\"},{\"type\":\"bool\",\"name\":\"provingPaused\"},{\"type\":\"uint8\",\"name\":\"__reservedB1\"},{\"type\":\"uint16\",\"name\":\"__reservedB2\"},{\"type\":\"uint32\",\"name\":\"__reservedB3\"},{\"type\":\"uint64\",\"name\":\"lastUnpausedAt\"}]}]},{\"type\":\"function\",\"name\":\"supportsInterface\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes4\",\"name\":\"_interfaceId\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"pure\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"symbol\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"syncChainData\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_kind\"},{\"type\":\"uint64\",\"name\":\"_blockId\"},{\"type\":\"bytes32\",\"name\":\"_chainData\"}],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"tcbInfo\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"string\",\"name\":\"fmspc\"}],\"outputs\":[{\"type\":\"string\",\"name\":\"pceid\"},{\"type\":\"string\",\"name\":\"fmspc\"}]},{\"type\":\"function\",\"name\":\"toggleLocalReportCheck\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"tokenURI\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_tokenId\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"topBlockId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\"},{\"type\":\"bytes32\",\"name\":\"kind\"}],\"outputs\":[{\"type\":\"uint64\",\"name\":\"blockId\"}]},{\"type\":\"function\",\"name\":\"totalSupply\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"transfer\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"amount\"}],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"transferFrom\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"from\"},{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"tokenId\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"trustedUserMrEnclave\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"enclave\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"trustedUserMrSigner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes32\",\"name\":\"signer\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"trusted\"}]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"uri\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\"}],\"outputs\":[{\"type\":\"string\"}]},{\"type\":\"function\",\"name\":\"verifyAttestation\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"success\"}]},{\"type\":\"function\",\"name\":\"verifyBlocks\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_maxBlocksToVerify\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyES256Signature\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"bytes\",\"name\":\"tbs\"},{\"type\":\"bytes\",\"name\":\"signature\"},{\"type\":\"bytes\",\"name\":\"publicKey\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"sigValid\"}]},{\"type\":\"function\",\"name\":\"verifyParsedQuote\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"v3quote\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"bool\"},{\"type\":\"bytes\"}]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifySignalReceived\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"address\",\"name\":\"_app\"},{\"type\":\"bytes32\",\"name\":\"_signal\"},{\"type\":\"bytes\",\"name\":\"_proof\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"version\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint32\"}]},{\"type\":\"function\",\"name\":\"withdrawBond\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"withdrawTaikoToken\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_to\"},{\"type\":\"uint256\",\"name\":\"_amount\"}],\"outputs\":[]},{\"type\":\"constructor\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"es256Verifier\"}]}]","addresses":["0x02772b7B3a5Bea0141C993Dbb8D0733C19F46169","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x11A9ebA17EbF92b40fcf9a640Ebbc47Db6fBeab0","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0x39E4C1214e733639d059979079A151911e42791d","0x47bB416ee947fE4a4b655011aF7d6E3A1B80E6e9","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0x579f40D0BE111b823962043702cabe6Aaa290780","0x67281b15aee4d6b805bc755e439abd524dd8da8d","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0xa25e645ff9897b0282e5f17d36de5bca4ec21d6e","0xaf145913EA4a56BE22E120ED9C24589659881702","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0xc4096E9ff1526Bd1840B65e9f45695135aC12De7","0xcc5d488073FA918cBbd73B9A523F3858C4de7372","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC"]}],"createdAt":"2024-08-27T09:44:01.744Z","subscriberId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","name":"TaikoL1: Pause/Unpause","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"d1b49dd5-72bd-480e-b5d7-649ce0aadd09","blockWatcherId":"mainnet-6","paused":false,"stackResourceId":"mystack.taiko-l-1-pause-unpause","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"LOW","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet SGX Prover triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceAdded(uint256,address,address,uint256)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[],"eventConditions":[{"eventSignature":"InstanceDeleted(uint256,address)","expression":null}]},{"txConditions":[{"status":"any","expression":"status == \"failed\""}],"functionConditions":[{"functionSignature":"verifyProof((bytes32,bytes32,address,uint64,bool,bool,address),(bytes32,bytes32,bytes32,bytes32),(uint16,bytes))","expression":null}],"eventConditions":[]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceAdded\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true},{\"type\":\"address\",\"name\":\"replaced\",\"indexed\":false},{\"type\":\"uint256\",\"name\":\"validSince\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"InstanceDeleted\",\"inputs\":[{\"type\":\"uint256\",\"name\":\"id\",\"indexed\":true},{\"type\":\"address\",\"name\":\"instance\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"INSTANCE_EXPIRY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"INSTANCE_VALIDITY_DELAY\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address[]\",\"name\":\"_instances\"}],\"outputs\":[{\"type\":\"uint256[]\"}]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"addressRegistered\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"instanceAddress\"}],\"outputs\":[{\"type\":\"bool\",\"name\":\"alreadyAttested\"}]},{\"type\":\"function\",\"name\":\"deleteInstances\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint256[]\",\"name\":\"_ids\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"},{\"type\":\"address\",\"name\":\"_addressManager\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"instances\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint256\",\"name\":\"instanceId\"}],\"outputs\":[{\"type\":\"address\",\"name\":\"addr\"},{\"type\":\"uint64\",\"name\":\"validSince\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"nextInstanceId\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"registerInstance\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_attestation\",\"components\":[{\"type\":\"tuple\",\"name\":\"header\",\"components\":[{\"type\":\"bytes2\",\"name\":\"version\"},{\"type\":\"bytes2\",\"name\":\"attestationKeyType\"},{\"type\":\"bytes4\",\"name\":\"teeType\"},{\"type\":\"bytes2\",\"name\":\"qeSvn\"},{\"type\":\"bytes2\",\"name\":\"pceSvn\"},{\"type\":\"bytes16\",\"name\":\"qeVendorId\"},{\"type\":\"bytes20\",\"name\":\"userData\"}]},{\"type\":\"tuple\",\"name\":\"localEnclaveReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"tuple\",\"name\":\"v3AuthData\",\"components\":[{\"type\":\"bytes\",\"name\":\"ecdsa256BitSignature\"},{\"type\":\"bytes\",\"name\":\"ecdsaAttestationKey\"},{\"type\":\"tuple\",\"name\":\"pckSignedQeReport\",\"components\":[{\"type\":\"bytes16\",\"name\":\"cpuSvn\"},{\"type\":\"bytes4\",\"name\":\"miscSelect\"},{\"type\":\"bytes28\",\"name\":\"reserved1\"},{\"type\":\"bytes16\",\"name\":\"attributes\"},{\"type\":\"bytes32\",\"name\":\"mrEnclave\"},{\"type\":\"bytes32\",\"name\":\"reserved2\"},{\"type\":\"bytes32\",\"name\":\"mrSigner\"},{\"type\":\"bytes\",\"name\":\"reserved3\"},{\"type\":\"uint16\",\"name\":\"isvProdId\"},{\"type\":\"uint16\",\"name\":\"isvSvn\"},{\"type\":\"bytes\",\"name\":\"reserved4\"},{\"type\":\"bytes\",\"name\":\"reportData\"}]},{\"type\":\"bytes\",\"name\":\"qeReportSignature\"},{\"type\":\"tuple\",\"name\":\"qeAuthData\",\"components\":[{\"type\":\"uint16\",\"name\":\"parsedDataSize\"},{\"type\":\"bytes\",\"name\":\"data\"}]},{\"type\":\"tuple\",\"name\":\"certification\",\"components\":[{\"type\":\"uint16\",\"name\":\"certType\"},{\"type\":\"uint32\",\"name\":\"certDataSize\"},{\"type\":\"bytes[3]\",\"name\":\"decodedCertDataArray\"}]}]}]}],\"outputs\":[{\"type\":\"uint256\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"verifyProof\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"tuple\",\"name\":\"_ctx\",\"components\":[{\"type\":\"bytes32\",\"name\":\"metaHash\"},{\"type\":\"bytes32\",\"name\":\"blobHash\"},{\"type\":\"address\",\"name\":\"prover\"},{\"type\":\"uint64\",\"name\":\"blockId\"},{\"type\":\"bool\",\"name\":\"isContesting\"},{\"type\":\"bool\",\"name\":\"blobUsed\"},{\"type\":\"address\",\"name\":\"msgSender\"}]},{\"type\":\"tuple\",\"name\":\"_tran\",\"components\":[{\"type\":\"bytes32\",\"name\":\"parentHash\"},{\"type\":\"bytes32\",\"name\":\"blockHash\"},{\"type\":\"bytes32\",\"name\":\"stateRoot\"},{\"type\":\"bytes32\",\"name\":\"graffiti\"}]},{\"type\":\"tuple\",\"name\":\"_proof\",\"components\":[{\"type\":\"uint16\",\"name\":\"tier\"},{\"type\":\"bytes\",\"name\":\"data\"}]}],\"outputs\":[]}]","addresses":["0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81"]}],"createdAt":"2024-05-02T14:09:42.804Z","subscriberId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","name":"Taiko Mainnet SGX Prover","network":"mainnet","riskCategory":"TECHNICAL","monitorId":"d49a2a9b-268d-4d30-9553-ec55ed952d87","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-sgx-prover","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Address Managers triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AddressSet(uint64,bytes32,address,address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AddressSet\",\"inputs\":[{\"type\":\"uint64\",\"name\":\"chainId\",\"indexed\":true},{\"type\":\"bytes32\",\"name\":\"name\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newAddress\",\"indexed\":false},{\"type\":\"address\",\"name\":\"oldAddress\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"getAddress\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"init\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"_owner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"setAddress\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"address\",\"name\":\"_newAddress\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x579f40D0BE111b823962043702cabe6Aaa290780"]}],"createdAt":"2024-05-02T14:00:18.874Z","subscriberId":"3919cb83-487f-4432-88fa-33bbe4361fce","name":"Taiko Mainnet Address Managers","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"3919cb83-487f-4432-88fa-33bbe4361fce","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-address-managers","type":"BLOCK"},{"skipABIValidation":false,"alertThreshold":null,"notifyConfig":{"severityLevel":"HIGH","messageBody":"**Defender Monitor {{ sentinel.name }} Triggered**\n\n**Network**\n\n{{ sentinel.network }}\n\n**Block Hash**\n\n{{ blockHash }}\n\n**Transaction Hash**\n\n{{ transaction.transactionHash }}\n\n**Explorer Link**\n\n{{ transaction.link }}\n\n{{ matchReasonsFormatted }}","messageSubject":"Defender Monitor: Taiko Mainnet Essential Contracts triggered","notifications":[{"type":"discord","sendCount":0,"notificationId":"93e8dbf2-4f87-4793-b3c3-6ff0dd6cf827"}],"timeoutMs":0},"tenantId":"0691b59e-8b53-4ae2-b874-959de8a9f2ee","addressRules":[{"conditions":[{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"AdminChanged(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"BeaconUpgraded(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Initialized(uint8)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferStarted(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"OwnershipTransferred(address,address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Paused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Unpaused(address)","expression":null}]},{"txConditions":[],"functionConditions":[],"eventConditions":[{"eventSignature":"Upgraded(address)","expression":null}]}],"abi":"[{\"type\":\"event\",\"anonymous\":false,\"name\":\"AdminChanged\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousAdmin\",\"indexed\":false},{\"type\":\"address\",\"name\":\"newAdmin\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"BeaconUpgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"beacon\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Initialized\",\"inputs\":[{\"type\":\"uint8\",\"name\":\"version\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferStarted\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"OwnershipTransferred\",\"inputs\":[{\"type\":\"address\",\"name\":\"previousOwner\",\"indexed\":true},{\"type\":\"address\",\"name\":\"newOwner\",\"indexed\":true}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Paused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Unpaused\",\"inputs\":[{\"type\":\"address\",\"name\":\"account\",\"indexed\":false}]},{\"type\":\"event\",\"anonymous\":false,\"name\":\"Upgraded\",\"inputs\":[{\"type\":\"address\",\"name\":\"implementation\",\"indexed\":true}]},{\"type\":\"function\",\"name\":\"acceptOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"addressManager\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"lastUnpausedAt\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"uint64\"}]},{\"type\":\"function\",\"name\":\"owner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"pause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"paused\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bool\"}]},{\"type\":\"function\",\"name\":\"pendingOwner\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"proxiableUUID\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[],\"outputs\":[{\"type\":\"bytes32\"}]},{\"type\":\"function\",\"name\":\"renounceOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"resolve\",\"constant\":true,\"stateMutability\":\"view\",\"payable\":false,\"inputs\":[{\"type\":\"uint64\",\"name\":\"_chainId\"},{\"type\":\"bytes32\",\"name\":\"_name\"},{\"type\":\"bool\",\"name\":\"_allowZeroAddress\"}],\"outputs\":[{\"type\":\"address\"}]},{\"type\":\"function\",\"name\":\"transferOwnership\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newOwner\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"unpause\",\"constant\":false,\"payable\":false,\"inputs\":[],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeTo\",\"constant\":false,\"payable\":false,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"}],\"outputs\":[]},{\"type\":\"function\",\"name\":\"upgradeToAndCall\",\"constant\":false,\"stateMutability\":\"payable\",\"payable\":true,\"inputs\":[{\"type\":\"address\",\"name\":\"newImplementation\"},{\"type\":\"bytes\",\"name\":\"data\"}],\"outputs\":[]}]","addresses":["0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa","0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800","0x9e0a24964e5397B566c1ed39258e21aB5E35C77C","0xd60247c6848B7Ca29eDdF63AA924E53dB6Ddd8EC","0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa","0xaf145913EA4a56BE22E120ED9C24589659881702","0x579f40D0BE111b823962043702cabe6Aaa290780","0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a","0x537a2f0D3a5879b41BCb5A2afE2EA5c4961796F6","0x33879cDF01121dc7bCe011b461e64d791aE931F2","0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81","0x579A8d63a2Db646284CBFE31FE5082c9989E985c","0xE3D777143Ea25A6E031d1e921F396750885f43aC","0x8d7C954960a36a7596d7eA4945dDf891967ca8A3"]}],"createdAt":"2024-05-02T13:49:54.192Z","subscriberId":"67a53521-3d4a-4de4-92ab-ede82cc45644","name":"Taiko Mainnet Essential Contracts","network":"mainnet","riskCategory":"ACCESS-CONTROL","monitorId":"67a53521-3d4a-4de4-92ab-ede82cc45644","blockWatcherId":"mainnet-1","paused":false,"stackResourceId":"mystack.taiko-mainnet-essential-contracts","type":"BLOCK"}]},"actions":{"removed":[],"created":[],"updated":[]},"contracts":{"removed":[],"created":[],"updated":[]},"relayers":{"removed":[],"created":[],"updated":[],"relayerKeys":{"removed":[],"created":[],"updated":[]}},"notifications":{"removed":[],"created":[],"updated":[]},"secrets":{"removed":[],"created":[],"updated":[]},"blockExplorerApiKeys":{"removed":[],"created":[],"updated":[]},"forkedNetworks":{"removed":[],"created":[],"updated":[]},"privateNetworks":{"removed":[],"created":[],"updated":[]}} diff --git a/packages/monitors/defender/mainnet/.env.example b/packages/monitors/defender/mainnet/.env.example new file mode 100644 index 0000000000..dc8a45401c --- /dev/null +++ b/packages/monitors/defender/mainnet/.env.example @@ -0,0 +1,2 @@ +DEFENDER_API_SECRET= +DEFENDER_API_KEY= diff --git a/packages/protocol/monitors/README.md b/packages/monitors/defender/mainnet/README.md similarity index 100% rename from packages/protocol/monitors/README.md rename to packages/monitors/defender/mainnet/README.md diff --git a/packages/protocol/monitors/actions/Bridge-MessageProcessed.js b/packages/monitors/defender/mainnet/actions/Bridge-MessageProcessed/index.js similarity index 97% rename from packages/protocol/monitors/actions/Bridge-MessageProcessed.js rename to packages/monitors/defender/mainnet/actions/Bridge-MessageProcessed/index.js index 09f4227e48..06936f591c 100644 --- a/packages/protocol/monitors/actions/Bridge-MessageProcessed.js +++ b/packages/monitors/defender/mainnet/actions/Bridge-MessageProcessed/index.js @@ -262,7 +262,7 @@ function findUnmatchedMessages(processedMessages, sentMessages) { } function alertOrg(notificationClient, missingCount) { - const outputMessage = `Bridge Health Alert! \nThere are ${missingCount} missing MessageSent events for the processed messages on the other chain.`; + const outputMessage = `@cyberhorsey @soylent_ @xiaodino007 Bridge Health Alert! \nThere are ${missingCount} missing MessageSent events for the processed messages on the other chain.`; notificationClient.send({ channelAlias: "discord_bridging", diff --git a/packages/protocol/monitors/actions/ER20Vault-BridgedTokenChanged.js b/packages/monitors/defender/mainnet/actions/ER20Vault-BridgedTokenChanged/index.js similarity index 100% rename from packages/protocol/monitors/actions/ER20Vault-BridgedTokenChanged.js rename to packages/monitors/defender/mainnet/actions/ER20Vault-BridgedTokenChanged/index.js diff --git a/packages/protocol/monitors/actions/ERC20Vault-BalanceDrop.js b/packages/monitors/defender/mainnet/actions/ERC20Vault-BalanceDrop/index.js similarity index 100% rename from packages/protocol/monitors/actions/ERC20Vault-BalanceDrop.js rename to packages/monitors/defender/mainnet/actions/ERC20Vault-BalanceDrop/index.js diff --git a/packages/protocol/monitors/actions/GuardianProver-ApprovedCount.js b/packages/monitors/defender/mainnet/actions/GuardianProver-ApprovedCount/index.js similarity index 94% rename from packages/protocol/monitors/actions/GuardianProver-ApprovedCount.js rename to packages/monitors/defender/mainnet/actions/GuardianProver-ApprovedCount/index.js index 919e2db9d7..ae37c7da0e 100644 --- a/packages/protocol/monitors/actions/GuardianProver-ApprovedCount.js +++ b/packages/monitors/defender/mainnet/actions/GuardianProver-ApprovedCount/index.js @@ -31,7 +31,7 @@ const ABI = [ function alertOrg(notificationClient, message) { notificationClient.send({ - channelAlias: "discord_configs", + channelAlias: "discord_bridging", subject: "⚠️ GuardianProver: Approved Count", message, }); @@ -56,7 +56,7 @@ async function calculateBlockTime(provider) { async function calculateBlockRange(provider) { const currentBlockNumber = await getLatestBlockNumber(provider); const blockTimeInSeconds = await calculateBlockTime(provider); - const blocksInOneHour = Math.floor((16 * 60) / blockTimeInSeconds); + const blocksInOneHour = Math.floor((15 * 60) / blockTimeInSeconds); const fromBlock = currentBlockNumber - blocksInOneHour; const toBlock = currentBlockNumber; @@ -132,7 +132,7 @@ exports.handler = async function (event, context) { if (logs.length > 0) { alertOrg( notificationClient, - `Detected ${logs.length} Approved events in the last 15 mins on Guardian!`, + `@taiko|guardians Detected ${logs.length} Approved events in the last 15 mins on Guardian!`, ); } diff --git a/packages/protocol/monitors/actions/GuardianProver-ConflictingProofs.js b/packages/monitors/defender/mainnet/actions/GuardianProver-ConflictingProofs/index.js similarity index 94% rename from packages/protocol/monitors/actions/GuardianProver-ConflictingProofs.js rename to packages/monitors/defender/mainnet/actions/GuardianProver-ConflictingProofs/index.js index 913fde80ff..bf9e9e00c8 100644 --- a/packages/protocol/monitors/actions/GuardianProver-ConflictingProofs.js +++ b/packages/monitors/defender/mainnet/actions/GuardianProver-ConflictingProofs/index.js @@ -43,7 +43,13 @@ const ABI = [ function alertOrg(notificationClient, message) { notificationClient.send({ - channelAlias: "discord_configs", + channelAlias: "discord_bridging", + subject: "🚨 GuardianProver: ConflictingProofs Alert", + message, + }); + + notificationClient.send({ + channelAlias: "tg_taiko_guardians", subject: "🚨 GuardianProver: ConflictingProofs Alert", message, }); diff --git a/packages/protocol/monitors/actions/GuardianProver-GuardiansUpdated.js b/packages/monitors/defender/mainnet/actions/GuardianProver-GuardiansUpdated/index.js similarity index 93% rename from packages/protocol/monitors/actions/GuardianProver-GuardiansUpdated.js rename to packages/monitors/defender/mainnet/actions/GuardianProver-GuardiansUpdated/index.js index b5be10015e..e6250747ec 100644 --- a/packages/protocol/monitors/actions/GuardianProver-GuardiansUpdated.js +++ b/packages/monitors/defender/mainnet/actions/GuardianProver-GuardiansUpdated/index.js @@ -25,7 +25,13 @@ const ABI = [ function alertOrg(notificationClient, message) { notificationClient.send({ - channelAlias: "discord_configs", + channelAlias: "discord_bridging", + subject: "⚠️ GuardianProver: GuardiansUpdated Alert", + message, + }); + + notificationClient.send({ + channelAlias: "tg_taiko_guardians", subject: "⚠️ GuardianProver: GuardiansUpdated Alert", message, }); diff --git a/packages/protocol/monitors/actions/GuardianProver-ProvingAutoPauseEnabled.js b/packages/monitors/defender/mainnet/actions/GuardianProver-ProvingAutoPauseEnabled/index.js similarity index 93% rename from packages/protocol/monitors/actions/GuardianProver-ProvingAutoPauseEnabled.js rename to packages/monitors/defender/mainnet/actions/GuardianProver-ProvingAutoPauseEnabled/index.js index c76d7dedbf..80acbd46f5 100644 --- a/packages/protocol/monitors/actions/GuardianProver-ProvingAutoPauseEnabled.js +++ b/packages/monitors/defender/mainnet/actions/GuardianProver-ProvingAutoPauseEnabled/index.js @@ -19,7 +19,12 @@ const ABI = [ function alertOrg(notificationClient, message) { notificationClient.send({ - channelAlias: "discord_configs", + channelAlias: "discord_bridging", + subject: "⚠️ GuardianProver: ProvingAutoPauseEnabled Alert", + message, + }); + notificationClient.send({ + channelAlias: "tg_taiko_guardians", subject: "⚠️ GuardianProver: ProvingAutoPauseEnabled Alert", message, }); diff --git a/packages/protocol/monitors/actions/SGXVerifier-verifyProofFailure.js b/packages/monitors/defender/mainnet/actions/SGXVerifier-verifyProofFailure/index.js similarity index 98% rename from packages/protocol/monitors/actions/SGXVerifier-verifyProofFailure.js rename to packages/monitors/defender/mainnet/actions/SGXVerifier-verifyProofFailure/index.js index 7eaa5bf7dc..0403697f3e 100644 --- a/packages/protocol/monitors/actions/SGXVerifier-verifyProofFailure.js +++ b/packages/monitors/defender/mainnet/actions/SGXVerifier-verifyProofFailure/index.js @@ -8,7 +8,7 @@ const verifyProofSelector = ethers.utils function alertOrg(notificationClient, message) { notificationClient.send({ - channelAlias: "discord_blocks", + channelAlias: "discord_bridging", subject: "⚠️ SGXVerifier: verifyProof Failure Alert", message, }); diff --git a/packages/protocol/monitors/actions/TaikoL1-BlockProposed.js b/packages/monitors/defender/mainnet/actions/TaikoL1-BlockProposed/index.js similarity index 96% rename from packages/protocol/monitors/actions/TaikoL1-BlockProposed.js rename to packages/monitors/defender/mainnet/actions/TaikoL1-BlockProposed/index.js index 9baa19db62..7ea49a7d85 100644 --- a/packages/protocol/monitors/actions/TaikoL1-BlockProposed.js +++ b/packages/monitors/defender/mainnet/actions/TaikoL1-BlockProposed/index.js @@ -258,7 +258,13 @@ const ABI = [ function alertOrg(notificationClient, message) { notificationClient.send({ - channelAlias: "discord_blocks", + channelAlias: "discord_bridging", + subject: "🚨 TaikoL1: BlockProposed Alert", + message, + }); + + notificationClient.send({ + channelAlias: "tg_taiko_guardians", subject: "🚨 TaikoL1: BlockProposed Alert", message, }); @@ -340,7 +346,7 @@ exports.handler = async function (event, context) { const currentBlockNumber = await getLatestBlockNumber(taikoL1Provider); const blockTimeInSeconds = await calculateBlockTime(taikoL1Provider); - const blocksInFiveMinutes = Math.floor((5 * 60) / blockTimeInSeconds); + const blocksInFiveMinutes = Math.floor((15 * 60) / blockTimeInSeconds); const fromBlock = currentBlockNumber - blocksInFiveMinutes; const toBlock = currentBlockNumber; @@ -359,7 +365,7 @@ exports.handler = async function (event, context) { if (logs.length === 0) { alertOrg( notificationClient, - `No BlockProposed event detected in the last 5 mins on TaikoL1!`, + `No BlockProposed event detected in the last 15 mins on TaikoL1!`, ); } diff --git a/packages/protocol/monitors/actions/TaikoL1-BlockVerified.js b/packages/monitors/defender/mainnet/actions/TaikoL1-BlockVerified/index.js similarity index 91% rename from packages/protocol/monitors/actions/TaikoL1-BlockVerified.js rename to packages/monitors/defender/mainnet/actions/TaikoL1-BlockVerified/index.js index ee1dee3030..fd3b74def3 100644 --- a/packages/protocol/monitors/actions/TaikoL1-BlockVerified.js +++ b/packages/monitors/defender/mainnet/actions/TaikoL1-BlockVerified/index.js @@ -80,7 +80,13 @@ const ABI = [ function alertOrg(notificationClient, message) { notificationClient.send({ - channelAlias: "discord_blocks", + channelAlias: "discord_bridging", + subject: "🚨 TaikoL1: BlockVerified Alert", + message, + }); + + notificationClient.send({ + channelAlias: "tg_taiko_guardians", subject: "🚨 TaikoL1: BlockVerified Alert", message, }); @@ -156,7 +162,7 @@ exports.handler = async function (event, context) { const currentBlockNumber = await getLatestBlockNumber(taikoL1Provider); const blockTimeInSeconds = await calculateBlockTime(taikoL1Provider); - const blocksInFiveMinutes = Math.floor((5 * 60) / blockTimeInSeconds); + const blocksInFiveMinutes = Math.floor((30 * 60) / blockTimeInSeconds); const fromBlock = currentBlockNumber - blocksInFiveMinutes; const toBlock = currentBlockNumber; @@ -173,7 +179,7 @@ exports.handler = async function (event, context) { if (logs.length === 0) { alertOrg( notificationClient, - `No BlockVerified event detected in the last 5 mins in TaikoL1!`, + `@davidcai @yuea7583 No BlockVerified event detected in the last 30 mins in TaikoL1!`, ); } diff --git a/packages/protocol/monitors/actions/TaikoL1-CalldataTxListCount.js b/packages/monitors/defender/mainnet/actions/TaikoL1-CalldataTxListCount/index.js similarity index 98% rename from packages/protocol/monitors/actions/TaikoL1-CalldataTxListCount.js rename to packages/monitors/defender/mainnet/actions/TaikoL1-CalldataTxListCount/index.js index 8c515fd22b..2539f4e90b 100644 --- a/packages/protocol/monitors/actions/TaikoL1-CalldataTxListCount.js +++ b/packages/monitors/defender/mainnet/actions/TaikoL1-CalldataTxListCount/index.js @@ -25,7 +25,7 @@ const ABI = [ function alertOrg(notificationClient, message) { notificationClient.send({ - channelAlias: "discord_blocks", + channelAlias: "discord_bridging", subject: "ℹ️ TaikoL1: CalldataTxList Count", message, }); diff --git a/packages/protocol/monitors/actions/TaikoL1-ProvingPaused.js b/packages/monitors/defender/mainnet/actions/TaikoL1-ProvingPaused/index.js similarity index 98% rename from packages/protocol/monitors/actions/TaikoL1-ProvingPaused.js rename to packages/monitors/defender/mainnet/actions/TaikoL1-ProvingPaused/index.js index 2e0eeb5cbf..9e52d04f3c 100644 --- a/packages/protocol/monitors/actions/TaikoL1-ProvingPaused.js +++ b/packages/monitors/defender/mainnet/actions/TaikoL1-ProvingPaused/index.js @@ -19,7 +19,7 @@ const ABI = [ function alertOrg(notificationClient, message) { notificationClient.send({ - channelAlias: "discord_configs", + channelAlias: "discord_bridging", subject: "⚠️ TaikoL1: ProvingPaused Alert", message, }); diff --git a/packages/protocol/monitors/actions/TaikoL1-TransitionContestedCount.js b/packages/monitors/defender/mainnet/actions/TaikoL1-TransitionContestedCount/index.js similarity index 99% rename from packages/protocol/monitors/actions/TaikoL1-TransitionContestedCount.js rename to packages/monitors/defender/mainnet/actions/TaikoL1-TransitionContestedCount/index.js index d38ed5579f..8c47353c3a 100644 --- a/packages/protocol/monitors/actions/TaikoL1-TransitionContestedCount.js +++ b/packages/monitors/defender/mainnet/actions/TaikoL1-TransitionContestedCount/index.js @@ -124,7 +124,7 @@ const ABI = [ function alertOrg(notificationClient, message) { notificationClient.send({ - channelAlias: "discord_blocks", + channelAlias: "discord_bridging", subject: "ℹ️ TaikoL1: TransitionContested Count", message, }); diff --git a/packages/protocol/monitors/actions/TaikoL1-TransitionProved.js b/packages/monitors/defender/mainnet/actions/TaikoL1-TransitionProved/index.js similarity index 99% rename from packages/protocol/monitors/actions/TaikoL1-TransitionProved.js rename to packages/monitors/defender/mainnet/actions/TaikoL1-TransitionProved/index.js index b391f3d880..489d8a9454 100644 --- a/packages/protocol/monitors/actions/TaikoL1-TransitionProved.js +++ b/packages/monitors/defender/mainnet/actions/TaikoL1-TransitionProved/index.js @@ -124,7 +124,7 @@ const ABI = [ function alertOrg(notificationClient, message) { notificationClient.send({ - channelAlias: "discord_blocks", + channelAlias: "discord_bridging", subject: "🚨 TaikoL1: TransitionProved Alert", message, }); diff --git a/packages/protocol/monitors/actions/Vaults-BridgedTokenDeployed.js b/packages/monitors/defender/mainnet/actions/Vaults-BridgedTokenDeployed/index.js similarity index 93% rename from packages/protocol/monitors/actions/Vaults-BridgedTokenDeployed.js rename to packages/monitors/defender/mainnet/actions/Vaults-BridgedTokenDeployed/index.js index c1da2a0a80..53dcf85a24 100644 --- a/packages/protocol/monitors/actions/Vaults-BridgedTokenDeployed.js +++ b/packages/monitors/defender/mainnet/actions/Vaults-BridgedTokenDeployed/index.js @@ -130,8 +130,8 @@ const ABIs = { function alertOrg(notificationClient, subject, message) { notificationClient.send({ channelAlias: "discord_bridging", - subject, - message, + subject: subject, + message: message, }); } @@ -226,9 +226,11 @@ async function monitorEvent( const eventCount = logs.length; if (eventCount > 0) { - const alertMessage = `Detected ${eventCount} ${subject} events on ${provider.network.name} in the last 24 hours!`; + const alertMessage = `ℹ️ Detected ${eventCount} ${subject} events on ${provider.network.name} in the last 24 hours!`; alertOrg(notificationClient, subject, alertMessage); } + + return; } exports.handler = async function (event, context) { @@ -260,7 +262,6 @@ exports.handler = async function (event, context) { const { fromBlock: l2FromBlock, toBlock: l2ToBlock } = await calculateBlockRange(l2Provider); - // Monitor ERC1155Vault events await monitorEvent( l1Provider, "BridgedTokenDeployed", @@ -268,7 +269,7 @@ exports.handler = async function (event, context) { l1ToBlock, "0xaf145913EA4a56BE22E120ED9C24589659881702", // L1 ABIs.ERC1155Vault, - "ℹ️ ERC1155Vault BridgedTokenDeployed", + " ERC1155Vault.BridgedTokenDeployed", notificationClient, ); @@ -279,11 +280,10 @@ exports.handler = async function (event, context) { l2ToBlock, "0x1670000000000000000000000000000000000004", // L2 ABIs.ERC1155Vault, - "ℹ️ ERC1155Vault BridgedTokenDeployed", + " ERC1155Vault.BridgedTokenDeployed", notificationClient, ); - // Monitor ERC721Vault events await monitorEvent( l1Provider, "BridgedTokenDeployed", @@ -291,7 +291,7 @@ exports.handler = async function (event, context) { l1ToBlock, "0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa", // L1 ABIs.ERC721Vault, - "ℹ️ ERC721Vault BridgedTokenDeployed", + " ERC721Vault.BridgedTokenDeployed", notificationClient, ); @@ -302,11 +302,10 @@ exports.handler = async function (event, context) { l2ToBlock, "0x1670000000000000000000000000000000000003", // L2 ABIs.ERC721Vault, - "ℹ️ ERC721Vault BridgedTokenDeployed", + " ERC721Vault.BridgedTokenDeployed", notificationClient, ); - // Monitor ERC20Vault events await monitorEvent( l1Provider, "BridgedTokenDeployed", @@ -314,7 +313,7 @@ exports.handler = async function (event, context) { l1ToBlock, "0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab", // L1 ABIs.ERC20Vault, - "ℹ️ ERC20 BridgedTokenDeployed", + " ERC20Vault.BridgedTokenDeployed", notificationClient, ); @@ -325,7 +324,7 @@ exports.handler = async function (event, context) { l2ToBlock, "0x1670000000000000000000000000000000000002", // L2 ABIs.ERC20Vault, - "ℹ️ ERC20Vault BridgedTokenDeployed", + " ERC20Vault.BridgedTokenDeployed", notificationClient, ); diff --git a/packages/protocol/monitors/serverless.yml b/packages/monitors/defender/mainnet/serverless.yml similarity index 65% rename from packages/protocol/monitors/serverless.yml rename to packages/monitors/defender/mainnet/serverless.yml index fd6459a34b..78cb450766 100644 --- a/packages/protocol/monitors/serverless.yml +++ b/packages/monitors/defender/mainnet/serverless.yml @@ -1,19 +1,18 @@ -service: defender-as-code-test-project +service: taiko-defender-as-code configValidationMode: error frameworkVersion: "3" +useDotenv: true + provider: name: defender stage: ${opt:stage, 'dev'} stackName: mystack ssot: false -custom: - config: ${file(secrets.${self:provider.stage}.yml)} - defender: - key: ${self:custom.config.keys.api} - secret: ${self:custom.config.keys.secret} + key: ${env:DEFENDER_API_KEY} + secret: ${env:DEFENDER_API_SECRET} resources: actions: @@ -23,7 +22,7 @@ resources: type: schedule frequency: 15 paused: false - path: ./actions/ERC20Vault-BalanceDrop.js + path: ./actions/ERC20Vault-BalanceDrop sgx-verifier-verify-proof-failure-alert: name: "SGXVerifier: VerifyProof failure Alert" @@ -31,7 +30,7 @@ resources: type: schedule frequency: 5 paused: false - path: ./actions/SGXVerifier-verifyProofFailure.js + path: ./actions/SGXVerifier-verifyProofFailure vaults-bridged-token-deployed: name: "Vaults: BridgedTokenDeployed" @@ -39,7 +38,7 @@ resources: type: schedule frequency: 1440 paused: false - path: ./actions/Vaults-BridgedTokenDeployed.js + path: ./actions/Vaults-BridgedTokenDeployed er-20-vault-bridged-token-changed: name: "ER20Vault : BridgedTokenChanged" @@ -47,7 +46,7 @@ resources: type: schedule frequency: 4 paused: false - path: ./actions/ER20Vault-BridgedTokenChanged.js + path: ./actions/ER20Vault-BridgedTokenChanged bridge-message-processed: name: "Bridge: MessageProcessed" @@ -55,7 +54,7 @@ resources: type: schedule frequency: 15 paused: false - path: ./actions/Bridge-MessageProcessed.js + path: ./actions/Bridge-MessageProcessed taiko-l-1-calldata-tx-list-count: name: "TaikoL1: CalldataTxList Count" @@ -63,23 +62,7 @@ resources: type: schedule frequency: 1440 paused: false - path: ./actions/TaikoL1-CalldataTxListCount.js - - guardian-prover-proving-auto-pause-enabled-alert: - name: "GuardianProver: ProvingAutoPauseEnabled Alert" - trigger: - type: schedule - frequency: 4 - paused: false - path: ./actions/GuardianProver-ProvingAutoPauseEnabled.js - - guardian-prover-conflicting-proofs-alert: - name: "GuardianProver: ConflictingProofs Alert" - trigger: - type: schedule - frequency: 4 - paused: false - path: ./actions/GuardianProver-ConflictingProofs.js + path: ./actions/TaikoL1-CalldataTxListCount guardian-prover-approved-count: name: "GuardianProver: Approved Count" @@ -87,23 +70,7 @@ resources: type: schedule frequency: 15 paused: false - path: ./actions/GuardianProver-ApprovedCount.js - - guardian-prover-guardians-updated-alert: - name: "GuardianProver: GuardiansUpdated Alert" - trigger: - type: schedule - frequency: 4 - paused: false - path: ./actions/GuardianProver-GuardiansUpdated.js - - taiko-l-1-proving-paused-alert: - name: "TaikoL1: ProvingPaused Alert" - trigger: - type: schedule - frequency: 4 - paused: false - path: ./actions/TaikoL1-ProvingPaused.js + path: ./actions/GuardianProver-ApprovedCount taiko-l-1-transition-contested-count: name: "TaikoL1: TransitionContested Count" @@ -111,7 +78,7 @@ resources: type: schedule frequency: 60 paused: false - path: ./actions/TaikoL1-TransitionContestedCount.js + path: ./actions/TaikoL1-TransitionContestedCount taiko-l-1-transition-proved-alert: name: "TaikoL1: TransitionProved Alert" @@ -119,7 +86,7 @@ resources: type: schedule frequency: 4 paused: false - path: ./actions/TaikoL1-TransitionProved.js + path: ./actions/TaikoL1-TransitionProved taiko-l-1-block-verified-alert: name: "TaikoL1: BlockVerified Alert" @@ -127,7 +94,7 @@ resources: type: schedule frequency: 4 paused: false - path: ./actions/TaikoL1-BlockVerified.js + path: ./actions/TaikoL1-BlockVerified taiko-l-1-block-proposed-alert: name: "TaikoL1: BlockProposed Alert" @@ -135,15 +102,13 @@ resources: type: schedule frequency: 4 paused: false - path: ./actions/TaikoL1-BlockProposed.js + path: ./actions/TaikoL1-BlockProposed policies: - policy-Qe: + policy-ts: eip1559-pricing: true - private-transactions: false - policy-hk: + policy-rA: eip1559-pricing: true - private-transactions: false contracts: pem-cert-chain-lib: name: pem_cert_chain_lib @@ -254,23 +219,316 @@ resources: name: discord_bridging config: url: >- - https://discord.com/api/webhooks/1235610195586187285/pT1ZoqTmEKcjtAt0JY6KxOeHP-_YP7mC3SG1janVZyuf99RE7XwymIFQ9iNlFiyxm41w + https://discord.com/api/webhooks/1079966997816811520/RdYRjk74nbjEPb44tKFGAgYqDRSmmk2BAmShGkpnmm6QpK-21n-Avw5TnVEaJ1CWhE0s paused: false - discord-blocks: - type: discord - name: discord_blocks - config: - url: >- - https://discord.com/api/webhooks/1235610046080221214/tEHgmjlZzZsuxGyv3bEPc1I_SGZ69ZmZ7JsF8ey5VEQadylYePXLjRyGCup1I96rTbRk + monitors: + taiko-l-1-prove-block-tx-failure: + name: "TaikoL1: proveBlock Tx Failure" + type: BLOCK + network: mainnet + addresses: + - "0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a" + skip-abi-validation: true paused: false - discord-configs: - type: discord - name: discord_configs - config: - url: >- - https://discord.com/api/webhooks/1235609859660185744/d6ygohFcXEJEj6zHlxGhLFqXq4lDfieLrFweae3SnsustZLF0q4aTKKHeuzmrgZBIcvy + confirm-level: 6 + notify-config: + timeout: 0 + message: >- + **Defender Monitor {{ monitor.name }} Triggered an Alert at {{ + timestamp }}** + + + **Network:** {{ monitor.network }} + + + **Block Hash:** {{ blockHash }} + + + **Transaction Hash:** {{ transaction.transactionHash }} + + + **Explorer Link:** {{ transaction.link }} + + + **Match Reasons** + + + {{ matchReasonsFormatted }} + + + **Metadata** + + + {{ metadataFormatted }} + message-subject: "[Alert] OpenZeppelin Defender Monitor TaikoL1: proveBlock Tx Failure" + channels: + - ${self:resources.notifications.tg-taiko-guardians} + - ${self:resources.notifications.discord-bridging} + severity-level: HIGH + conditions: + event: + - expression: null + signature: >- + BlockProposed(uint256,address,uint96,(bytes32,bytes32,bytes32,bytes32,bytes32,address,uint64,uint32,uint64,uint64,uint16,bool,bytes32,address),(address,uint96,uint64)[]) + function: + - expression: null + signature: proveBlock(uint64,bytes) + transaction: >- + (status == "failed") AND (from == + "0x000000629FBCf27A347d1AEbA658435230D74a5f" OR from == + "0x000000633b68f5d8d3a86593ebb815b4663bcbe0" OR from == + "0x00000027F51a57E7FcBC4b481d15fcE5BE68b30B") + taiko-l-1-proposed-block-tx-failure: + name: "TaikoL1: ProposedBlock Tx Failure" + type: BLOCK + network: mainnet + addresses: + - "0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a" + skip-abi-validation: true paused: false - monitors: + confirm-level: 1 + notify-config: + timeout: 0 + message: >- + **Defender Monitor {{ monitor.name }} Triggered an Alert at {{ + timestamp }}** + + + **Network:** {{ monitor.network }} + + + **Block Hash:** {{ blockHash }} + + + **Transaction Hash:** {{ transaction.transactionHash }} + + + **Explorer Link:** {{ transaction.link }} + + + **Match Reasons** + + + {{ matchReasonsFormatted }} + + + **Metadata** + + + {{ metadataFormatted }} + message-subject: >- + [Alert] OpenZeppelin Defender Monitor TaikoL1: ProposedBlock Tx + Failure + channels: + - ${self:resources.notifications.discord-bridging} + - ${self:resources.notifications.tg-taiko-guardians} + severity-level: HIGH + conditions: + event: + - expression: null + signature: >- + BlockProposed(uint256,address,uint96,(bytes32,bytes32,bytes32,bytes32,bytes32,address,uint64,uint32,uint64,uint64,uint16,bool,bytes32,address),(address,uint96,uint64)[]) + function: + - expression: null + signature: proposeBlock(bytes,bytes) + transaction: >- + (status == "failed") AND (from == + "0x000000629FBCf27A347d1AEbA658435230D74a5f" OR from == + "0x000000633b68f5d8d3a86593ebb815b4663bcbe0" OR from == + "0x00000027F51a57E7FcBC4b481d15fcE5BE68b30B") + guardian-prover-proving-auto-pause-enabled-alert: + name: "GuardianProver: ProvingAutoPauseEnabled" + type: BLOCK + network: mainnet + addresses: + - "0xE3D777143Ea25A6E031d1e921F396750885f43aC" + skip-abi-validation: false + paused: false + confirm-level: 6 + notify-config: + timeout: 60000 + message: >- + **Defender Monitor {{ monitor.name }} Triggered an Alert at {{ + timestamp }}** + + + **Network:** {{ monitor.network }} + + + **Block Hash:** {{ blockHash }} + + + **Transaction Hash:** {{ transaction.transactionHash }} + + + **Explorer Link:** {{ transaction.link }} + + + **Match Reasons** + + + {{ matchReasonsFormatted }} + + + **Metadata** + + + {{ metadataFormatted }} + message-subject: >- + [Alert] OpenZeppelin Defender Monitor GuardianProver: + ProvingAutoPauseEnabled + channels: + - ${self:resources.notifications.discord-bridging} + - ${self:resources.notifications.tg-taiko-guardians} + severity-level: MEDIUM + conditions: + event: + - expression: null + signature: GuardiansUpdated(uint32,address[]) + guardian-prover-conflicting-proofs-alert: + name: "GuardianProver: ConflictingProofs Alert" + type: BLOCK + network: mainnet + addresses: + - "0xE3D777143Ea25A6E031d1e921F396750885f43aC" + skip-abi-validation: false + paused: false + confirm-level: 1 + notify-config: + timeout: 60000 + message: >- + **Defender Monitor {{ monitor.name }} Triggered an Alert at {{ + timestamp }}** + + + **Network:** {{ monitor.network }} + + + **Block Hash:** {{ blockHash }} + + + **Transaction Hash:** {{ transaction.transactionHash }} + + + **Explorer Link:** {{ transaction.link }} + + + **Match Reasons** + + + {{ matchReasonsFormatted }} + + + **Metadata** + + + {{ metadataFormatted }} + message-subject: >- + [Alert] OpenZeppelin Defender Monitor GuardianProver: + ConflictingProofs Alert + channels: + - ${self:resources.notifications.discord-bridging} + - ${self:resources.notifications.tg-taiko-guardians} + severity-level: MEDIUM + conditions: + event: + - expression: null + signature: ConflictingProofs(uint256,address,bytes32,bytes32,bool) + guardian-prover-guardians-updated-alert: + name: "GuardianProver: GuardiansUpdated Alert" + type: BLOCK + network: mainnet + addresses: + - "0xE3D777143Ea25A6E031d1e921F396750885f43aC" + skip-abi-validation: false + paused: false + confirm-level: 1 + notify-config: + timeout: 60000 + message: >- + **Defender Monitor {{ monitor.name }} Triggered an Alert at {{ + timestamp }}** + + + **Network:** {{ monitor.network }} + + + **Block Hash:** {{ blockHash }} + + + **Transaction Hash:** {{ transaction.transactionHash }} + + + **Explorer Link:** {{ transaction.link }} + + + **Match Reasons** + + + {{ matchReasonsFormatted }} + + + **Metadata** + + + {{ metadataFormatted }} + message-subject: >- + [Alert] OpenZeppelin Defender Monitor GuardianProver: GuardiansUpdated + Alert + channels: + - ${self:resources.notifications.discord-bridging} + - ${self:resources.notifications.tg-taiko-guardians} + severity-level: MEDIUM + conditions: + event: + - expression: null + signature: GuardiansUpdated(uint32,address[]) + taiko-l-1-proving-paused-alert: + name: "TaikoL1: ProvingPaused Alert" + type: BLOCK + network: mainnet + addresses: + - "0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a" + skip-abi-validation: false + paused: false + confirm-level: 6 + notify-config: + timeout: 60000 + message: >- + **Defender Monitor {{ monitor.name }} Triggered an Alert at {{ + timestamp }}** + + + **Network:** {{ monitor.network }} + + + **Block Hash:** {{ blockHash }} + + + **Transaction Hash:** {{ transaction.transactionHash }} + + + **Explorer Link:** {{ transaction.link }} + + + **Match Reasons** + + + {{ matchReasonsFormatted }} + + + **Metadata** + + + {{ metadataFormatted }} + message-subject: "[Alert] OpenZeppelin Defender Monitor TaikoL1: ProvingPaused Alert" + channels: + - ${self:resources.notifications.discord-bridging} + severity-level: HIGH + conditions: + event: + - expression: null + signature: ProvingPaused(bool) address-manager-l-2-address-set: name: "Address Manager (L2): AddressSet" type: BLOCK @@ -311,7 +569,7 @@ resources: {{ metadataFormatted }} message-subject: "Defender Monitor: Address Manager (L2): AddressSet triggered" channels: - - ${self:resources.notifications.discord-configs} + - ${self:resources.notifications.discord-bridging} severity-level: MEDIUM conditions: event: @@ -325,7 +583,7 @@ resources: - "0x579f40D0BE111b823962043702cabe6Aaa290780" - "0xEf9EaA1dd30a9AA1df01c36411b5F082aA65fBaa" skip-abi-validation: false - paused: false + paused: true confirm-level: 9007199254740991 notify-config: timeout: 60000 @@ -356,8 +614,7 @@ resources: {{ metadataFormatted }} message-subject: "Defender Monitor: Address Manager (L1): AddressSet triggered" - channels: - - ${self:resources.notifications.discord-configs} + channels: [] severity-level: MEDIUM conditions: event: @@ -410,7 +667,7 @@ resources: {{ metadataFormatted }} message-subject: "Defender Monitor: TaikoL2: Pause/Unpause triggered" channels: - - ${self:resources.notifications.discord-configs} + - ${self:resources.notifications.discord-bridging} severity-level: MEDIUM conditions: event: @@ -479,7 +736,7 @@ resources: {{ metadataFormatted }} message-subject: "Defender Monitor: TaikoL1: Pause/Unpause triggered" channels: - - ${self:resources.notifications.discord-configs} + - ${self:resources.notifications.discord-bridging} severity-level: MEDIUM conditions: event: @@ -520,7 +777,7 @@ resources: {{ matchReasonsFormatted }} message-subject: "Defender Monitor: Taiko Mainnet SGX Prover triggered" channels: - - ${self:resources.notifications.discord-blocks} + - ${self:resources.notifications.discord-bridging} severity-level: LOW conditions: event: @@ -567,7 +824,7 @@ resources: {{ matchReasonsFormatted }} message-subject: "Defender Monitor: Taiko Mainnet Address Managers triggered" channels: - - ${self:resources.notifications.discord-configs} + - ${self:resources.notifications.discord-bridging} severity-level: HIGH conditions: event: @@ -621,7 +878,7 @@ resources: {{ matchReasonsFormatted }} message-subject: "Defender Monitor: Taiko Mainnet Essential Contracts triggered" channels: - - ${self:resources.notifications.discord-configs} + - ${self:resources.notifications.discord-bridging} severity-level: HIGH conditions: event: @@ -643,7 +900,7 @@ resources: signature: Upgraded(address) forked-networks: {} private-networks: - taikol-2: + taikol2: name: taikol2 rpc-url: https://rpc.mainnet.taiko.xyz configuration: diff --git a/packages/monitors/package.json b/packages/monitors/package.json new file mode 100644 index 0000000000..fa01b24545 --- /dev/null +++ b/packages/monitors/package.json @@ -0,0 +1,16 @@ +{ + "name": "monitors", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "devDependencies": { + "@openzeppelin/defender-as-code": "^3.0.1", + "serverless": "4.4.3" + } +} diff --git a/packages/protocol/.env.example b/packages/protocol/.env.example index 093b2fdede..fa0fd36a44 100644 --- a/packages/protocol/.env.example +++ b/packages/protocol/.env.example @@ -1,4 +1,4 @@ ETHERSCAN_API_KEY=ABC123ABC123ABC123ABC123ABC123ABC1 PRIVATE_KEY=0xabc123abc123abc123abc123abc123abc123abc123abc123abc123abc123abc1 LOG_LEVEL=DEBUG -REPORT_GAS=true \ No newline at end of file +REPORT_GAS=true diff --git a/packages/protocol/monitors/actions/ERC1155Vault-BridgedTokenDeployed.js b/packages/protocol/monitors/actions/ERC1155Vault-BridgedTokenDeployed.js deleted file mode 100644 index 4a0b8b9573..0000000000 --- a/packages/protocol/monitors/actions/ERC1155Vault-BridgedTokenDeployed.js +++ /dev/null @@ -1,162 +0,0 @@ -const { ethers } = require("ethers"); -const { Defender } = require("@openzeppelin/defender-sdk"); - -const ABI = [ - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: "uint64", - name: "chainId", - type: "uint64", - }, - { - indexed: true, - internalType: "address", - name: "ctoken", - type: "address", - }, - { - indexed: true, - internalType: "address", - name: "btoken", - type: "address", - }, - { - indexed: false, - internalType: "string", - name: "ctokenSymbol", - type: "string", - }, - { - indexed: false, - internalType: "string", - name: "ctokenName", - type: "string", - }, - ], - name: "BridgedTokenDeployed", - type: "event", - }, -]; - -function alertOrg(notificationClient, message) { - notificationClient.send({ - channelAlias: "discord_bridging", - subject: "ERC1155Vault BridgedTokenDeployed Event Count", - message, - }); -} - -async function getLatestBlockNumber(provider) { - const currentBlock = await provider.getBlock("latest"); - return currentBlock.number; -} - -async function calculateBlockTime(provider) { - const latestBlock = await provider.getBlock("latest"); - const previousBlock = await provider.getBlock(latestBlock.number - 100); - - const timeDiff = latestBlock.timestamp - previousBlock.timestamp; - const blockDiff = latestBlock.number - previousBlock.number; - - const blockTime = timeDiff / blockDiff; - return blockTime; -} - -async function calculateBlockRange(provider) { - const currentBlockNumber = await getLatestBlockNumber(provider); - const blockTimeInSeconds = await calculateBlockTime(provider); - const blocksIn24Hours = Math.floor((24 * 60 * 60) / blockTimeInSeconds); - - const fromBlock = currentBlockNumber - blocksIn24Hours; - const toBlock = currentBlockNumber; - - console.log(`Calculated block range: from ${fromBlock} to ${toBlock}`); - - return { fromBlock, toBlock }; -} - -async function fetchLogs( - eventName, - fromBlock, - toBlock, - address, - abi, - provider, -) { - const iface = new ethers.utils.Interface(abi); - const eventTopic = iface.getEventTopic(eventName); - console.log(`eventTopic: ${eventTopic}`); - try { - const logs = await provider.getLogs({ - address, - fromBlock, - toBlock, - topics: [eventTopic], - }); - console.log(`Fetched logs: ${logs.length}`); - return logs.map((log) => { - const parsedLog = iface.parseLog(log); - console.log(`Parsed log: ${JSON.stringify(parsedLog)}`); - return parsedLog; - }); - } catch (error) { - console.error("Error fetching logs:", error); - return []; - } -} - -function createProvider(apiKey, apiSecret, relayerApiKey, relayerApiSecret) { - const client = new Defender({ - apiKey, - apiSecret, - relayerApiKey, - relayerApiSecret, - }); - - return client.relaySigner.getProvider(); -} - -exports.handler = async function (event, context) { - const { notificationClient } = context; - const { apiKey, apiSecret, l1ApiKey, l1ApiSecret, l2ApiKey, l2ApiSecret } = - event.secrets; - - const l1Provider = createProvider(apiKey, apiSecret, l1ApiKey, l1ApiSecret); - const l2Provider = createProvider(apiKey, apiSecret, l2ApiKey, l2ApiSecret); - - const { fromBlock: l1FromBlock, toBlock: l1ToBlock } = - await calculateBlockRange(l1Provider); - const { fromBlock: l2FromBlock, toBlock: l2ToBlock } = - await calculateBlockRange(l2Provider); - - const l1Logs = await fetchLogs( - "BridgedTokenDeployed", - l1FromBlock, - l1ToBlock, - "0xaf145913EA4a56BE22E120ED9C24589659881702", - ABI, - l1Provider, - ); - - const l2Logs = await fetchLogs( - "BridgedTokenDeployed", - l2FromBlock, - l2ToBlock, - "0x1670000000000000000000000000000000000004", - ABI, - l2Provider, - ); - - const l1EventCount = l1Logs.length; - const l2EventCount = l2Logs.length; - - if (l1EventCount > 0 || l2EventCount > 0) { - const alertMessage = `Detected ${l1EventCount} ERC1155Vault BridgedTokenDeployed events on L1 and ${l2EventCount} events on L2 in the last 24 hours!`; - alertOrg(notificationClient, alertMessage); - } - - return true; -}; diff --git a/packages/protocol/monitors/actions/ERC20Vault-BridgedTokenDeployed.js b/packages/protocol/monitors/actions/ERC20Vault-BridgedTokenDeployed.js deleted file mode 100644 index 3939975e8f..0000000000 --- a/packages/protocol/monitors/actions/ERC20Vault-BridgedTokenDeployed.js +++ /dev/null @@ -1,168 +0,0 @@ -const { ethers } = require("ethers"); -const { Defender } = require("@openzeppelin/defender-sdk"); - -const ABI = [ - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: "uint256", - name: "srcChainId", - type: "uint256", - }, - { - indexed: true, - internalType: "address", - name: "ctoken", - type: "address", - }, - { - indexed: true, - internalType: "address", - name: "btoken", - type: "address", - }, - { - indexed: false, - internalType: "string", - name: "ctokenSymbol", - type: "string", - }, - { - indexed: false, - internalType: "string", - name: "ctokenName", - type: "string", - }, - { - indexed: false, - internalType: "uint8", - name: "ctokenDecimal", - type: "uint8", - }, - ], - name: "BridgedTokenDeployed", - type: "event", - }, -]; - -function alertOrg(notificationClient, message) { - notificationClient.send({ - channelAlias: "discord_bridging", - subject: "BridgedTokenDeployed Event Count", - message, - }); -} - -async function getLatestBlockNumber(provider) { - const currentBlock = await provider.getBlock("latest"); - return currentBlock.number; -} - -async function calculateBlockTime(provider) { - const latestBlock = await provider.getBlock("latest"); - const previousBlock = await provider.getBlock(latestBlock.number - 100); - - const timeDiff = latestBlock.timestamp - previousBlock.timestamp; - const blockDiff = latestBlock.number - previousBlock.number; - - const blockTime = timeDiff / blockDiff; - return blockTime; -} - -async function calculateBlockRange(provider) { - const currentBlockNumber = await getLatestBlockNumber(provider); - const blockTimeInSeconds = await calculateBlockTime(provider); - const blocksIn24Hours = Math.floor((24 * 60 * 60) / blockTimeInSeconds); - - const fromBlock = currentBlockNumber - blocksIn24Hours; - const toBlock = currentBlockNumber; - - console.log(`Calculated block range: from ${fromBlock} to ${toBlock}`); - - return { fromBlock, toBlock }; -} - -async function fetchLogs( - eventName, - fromBlock, - toBlock, - address, - abi, - provider, -) { - const iface = new ethers.utils.Interface(abi); - const eventTopic = iface.getEventTopic(eventName); - console.log(`eventTopic: ${eventTopic}`); - try { - const logs = await provider.getLogs({ - address, - fromBlock, - toBlock, - topics: [eventTopic], - }); - console.log(`Fetched logs: ${logs.length}`); - return logs.map((log) => { - const parsedLog = iface.parseLog(log); - console.log(`Parsed log: ${JSON.stringify(parsedLog)}`); - return parsedLog; - }); - } catch (error) { - console.error("Error fetching logs:", error); - return []; - } -} - -function createProvider(apiKey, apiSecret, relayerApiKey, relayerApiSecret) { - const client = new Defender({ - apiKey, - apiSecret, - relayerApiKey, - relayerApiSecret, - }); - - return client.relaySigner.getProvider(); -} - -exports.handler = async function (event, context) { - const { notificationClient } = context; - const { apiKey, apiSecret, l1ApiKey, l1ApiSecret, l2ApiKey, l2ApiSecret } = - event.secrets; - - const l1Provider = createProvider(apiKey, apiSecret, l1ApiKey, l1ApiSecret); - const l2Provider = createProvider(apiKey, apiSecret, l2ApiKey, l2ApiSecret); - - const { fromBlock: l1FromBlock, toBlock: l1ToBlock } = - await calculateBlockRange(l1Provider); - const { fromBlock: l2FromBlock, toBlock: l2ToBlock } = - await calculateBlockRange(l2Provider); - - const l1Logs = await fetchLogs( - "BridgedTokenDeployed", - l1FromBlock, - l1ToBlock, - "0x996282cA11E5DEb6B5D122CC3B9A1FcAAD4415Ab", - ABI, - l1Provider, - ); - - const l2Logs = await fetchLogs( - "BridgedTokenDeployed", - l2FromBlock, - l2ToBlock, - "0x1670000000000000000000000000000000000002", - ABI, - l2Provider, - ); - - const l1EventCount = l1Logs.length; - const l2EventCount = l2Logs.length; - - if (l1EventCount > 0 || l2EventCount > 0) { - const alertMessage = `Detected ${l1EventCount} BridgedTokenDeployed events on L1 and ${l2EventCount} events on L2 in the last 24 hours!`; - alertOrg(notificationClient, alertMessage); - } - - return true; -}; diff --git a/packages/protocol/monitors/actions/ERC721Vault-BridgedTokenDeployed.js b/packages/protocol/monitors/actions/ERC721Vault-BridgedTokenDeployed.js deleted file mode 100644 index 7684f22971..0000000000 --- a/packages/protocol/monitors/actions/ERC721Vault-BridgedTokenDeployed.js +++ /dev/null @@ -1,162 +0,0 @@ -const { ethers } = require("ethers"); -const { Defender } = require("@openzeppelin/defender-sdk"); - -const ABI = [ - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: "uint64", - name: "chainId", - type: "uint64", - }, - { - indexed: true, - internalType: "address", - name: "ctoken", - type: "address", - }, - { - indexed: true, - internalType: "address", - name: "btoken", - type: "address", - }, - { - indexed: false, - internalType: "string", - name: "ctokenSymbol", - type: "string", - }, - { - indexed: false, - internalType: "string", - name: "ctokenName", - type: "string", - }, - ], - name: "BridgedTokenDeployed", - type: "event", - }, -]; - -function alertOrg(notificationClient, message) { - notificationClient.send({ - channelAlias: "discord_bridging", - subject: "ERC721Vault BridgedTokenDeployed Event Count", - message, - }); -} - -async function getLatestBlockNumber(provider) { - const currentBlock = await provider.getBlock("latest"); - return currentBlock.number; -} - -async function calculateBlockTime(provider) { - const latestBlock = await provider.getBlock("latest"); - const previousBlock = await provider.getBlock(latestBlock.number - 100); - - const timeDiff = latestBlock.timestamp - previousBlock.timestamp; - const blockDiff = latestBlock.number - previousBlock.number; - - const blockTime = timeDiff / blockDiff; - return blockTime; -} - -async function calculateBlockRange(provider) { - const currentBlockNumber = await getLatestBlockNumber(provider); - const blockTimeInSeconds = await calculateBlockTime(provider); - const blocksIn24Hours = Math.floor((24 * 60 * 60) / blockTimeInSeconds); - - const fromBlock = currentBlockNumber - blocksIn24Hours; - const toBlock = currentBlockNumber; - - console.log(`Calculated block range: from ${fromBlock} to ${toBlock}`); - - return { fromBlock, toBlock }; -} - -async function fetchLogs( - eventName, - fromBlock, - toBlock, - address, - abi, - provider, -) { - const iface = new ethers.utils.Interface(abi); - const eventTopic = iface.getEventTopic(eventName); - console.log(`eventTopic: ${eventTopic}`); - try { - const logs = await provider.getLogs({ - address, - fromBlock, - toBlock, - topics: [eventTopic], - }); - console.log(`Fetched logs: ${logs.length}`); - return logs.map((log) => { - const parsedLog = iface.parseLog(log); - console.log(`Parsed log: ${JSON.stringify(parsedLog)}`); - return parsedLog; - }); - } catch (error) { - console.error("Error fetching logs:", error); - return []; - } -} - -function createProvider(apiKey, apiSecret, relayerApiKey, relayerApiSecret) { - const client = new Defender({ - apiKey, - apiSecret, - relayerApiKey, - relayerApiSecret, - }); - - return client.relaySigner.getProvider(); -} - -exports.handler = async function (event, context) { - const { notificationClient } = context; - const { apiKey, apiSecret, l1ApiKey, l1ApiSecret, l2ApiKey, l2ApiSecret } = - event.secrets; - - const l1Provider = createProvider(apiKey, apiSecret, l1ApiKey, l1ApiSecret); - const l2Provider = createProvider(apiKey, apiSecret, l2ApiKey, l2ApiSecret); - - const { fromBlock: l1FromBlock, toBlock: l1ToBlock } = - await calculateBlockRange(l1Provider); - const { fromBlock: l2FromBlock, toBlock: l2ToBlock } = - await calculateBlockRange(l2Provider); - - const l1Logs = await fetchLogs( - "BridgedTokenDeployed", - l1FromBlock, - l1ToBlock, - "0x0b470dd3A0e1C41228856Fb319649E7c08f419Aa", - ABI, - l1Provider, - ); - - const l2Logs = await fetchLogs( - "BridgedTokenDeployed", - l2FromBlock, - l2ToBlock, - "0x1670000000000000000000000000000000000003", - ABI, - l2Provider, - ); - - const l1EventCount = l1Logs.length; - const l2EventCount = l2Logs.length; - - if (l1EventCount > 0 || l2EventCount > 0) { - const alertMessage = `Detected ${l1EventCount} ERC721Vault BridgedTokenDeployed events on L1 and ${l2EventCount} events on L2 in the last 24 hours!`; - alertOrg(notificationClient, alertMessage); - } - - return true; -}; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 50a52177ad..d706304da6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,10 +10,10 @@ importers: devDependencies: lefthook: specifier: ^1.6.10 - version: 1.6.18 + version: 1.6.10 prettier: specifier: ^3.2.5 - version: 3.3.2 + version: 3.2.5 packages/blobstorage: {} @@ -21,62 +21,62 @@ importers: dependencies: '@moralisweb3/common-evm-utils': specifier: ^2.26.1 - version: 2.26.7(debug@4.3.5) + version: 2.26.2(debug@4.3.4) '@wagmi/connectors': specifier: ^4.3.1 - version: 4.3.10(@wagmi/core@2.11.6)(react-i18next@13.5.0)(react-native@0.74.3)(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) + version: 4.3.10(yrxxgsr3s6m7a4itnzsb2c7inm) '@wagmi/core': specifier: ^2.8.1 - version: 2.11.6(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) + version: 2.10.2(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@walletconnect/ethereum-provider': specifier: ^2.12.2 - version: 2.13.3(react@18.3.1) + version: 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) '@walletconnect/modal': specifier: ^2.6.2 - version: 2.6.2(react@18.3.1) + version: 2.6.2(@types/react@18.3.5)(react@18.2.0) '@web3modal/wagmi': specifier: ^4.1.11 - version: 4.2.3(@wagmi/connectors@4.3.10)(@wagmi/core@2.11.6)(react@18.3.1)(viem@2.16.5) + version: 4.1.11(@types/react@18.3.5)(@wagmi/connectors@4.3.10(yrxxgsr3s6m7a4itnzsb2c7inm))(@wagmi/core@2.10.2(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4)) '@zerodevx/svelte-toast': specifier: ^0.9.5 - version: 0.9.5(svelte@4.2.18) + version: 0.9.5(svelte@4.2.17) axios: specifier: ^1.6.7 - version: 1.7.2(debug@4.3.5) + version: 1.6.7(debug@4.3.4) buffer: specifier: ^6.0.3 version: 6.0.3 debug: specifier: ^4.3.4 - version: 4.3.5 + version: 4.3.4 events: specifier: ^3.3.0 version: 3.3.0 moralis: specifier: ^2.26.1 - version: 2.26.7(debug@4.3.5) + version: 2.26.2(debug@4.3.4) object-hash: specifier: ^3.0.0 version: 3.0.0 svelte-i18n: specifier: ^4.0.0 - version: 4.0.0(svelte@4.2.18) + version: 4.0.0(svelte@4.2.17) viem: specifier: ^2.9.29 - version: 2.16.5(typescript@5.5.3)(zod@3.23.8) + version: 2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) devDependencies: '@playwright/test': specifier: ^1.43.1 - version: 1.45.0 + version: 1.43.1 '@sveltejs/adapter-auto': specifier: ^3.2.0 - version: 3.2.2(@sveltejs/kit@2.5.24) + version: 3.2.0(@sveltejs/kit@2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2))) '@sveltejs/kit': specifier: ^2.5.21 - version: 2.5.24(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@5.3.2) + version: 2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) '@sveltejs/vite-plugin-svelte': specifier: ^3.1.0 - version: 3.1.1(svelte@4.2.18)(vite@5.3.2) + version: 3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) '@types/debug': specifier: ^4.1.12 version: 4.1.12 @@ -85,124 +85,124 @@ importers: version: 3.0.6 '@typescript-eslint/eslint-plugin': specifier: ^7.8.0 - version: 7.15.0(@typescript-eslint/parser@7.15.0)(eslint@8.57.0)(typescript@5.5.3) + version: 7.9.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0)(typescript@5.4.3) '@typescript-eslint/parser': specifier: ^7.8.0 - version: 7.15.0(eslint@8.57.0)(typescript@5.5.3) + version: 7.9.0(eslint@8.56.0)(typescript@5.4.3) '@vitest/coverage-v8': specifier: ^1.4.0 - version: 1.6.0(vitest@1.6.0) + version: 1.4.0(vitest@1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2)) '@wagmi/cli': specifier: ^2.1.4 - version: 2.1.13(typescript@5.5.3) + version: 2.1.4(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10) abitype: specifier: ^1.0.2 - version: 1.0.5(typescript@5.5.3)(zod@3.23.8) + version: 1.0.2(typescript@5.4.3)(zod@3.22.4) ajv: specifier: ^8.12.0 - version: 8.16.0 + version: 8.12.0 autoprefixer: specifier: ^10.4.18 - version: 10.4.19(postcss@8.4.39) + version: 10.4.18(postcss@8.4.38) daisyui: specifier: ^4.10.3 - version: 4.12.10(postcss@8.4.39) + version: 4.11.1(postcss@8.4.38) dotenv: specifier: ^16.4.5 version: 16.4.5 eslint: specifier: ^8.56.0 - version: 8.57.0 + version: 8.56.0 eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.0) + version: 9.1.0(eslint@8.56.0) eslint-plugin-simple-import-sort: specifier: ^12.0.0 - version: 12.1.0(eslint@8.57.0) + version: 12.0.0(eslint@8.56.0) eslint-plugin-svelte: specifier: ^2.38.0 - version: 2.41.0(eslint@8.57.0)(svelte@4.2.18) + version: 2.38.0(eslint@8.56.0)(svelte@4.2.17)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)) ethereum-address: specifier: ^0.0.4 version: 0.0.4 jsdom: specifier: ^24.0.0 - version: 24.1.0 + version: 24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) lokijs: specifier: ^1.5.12 version: 1.5.12 postcss: specifier: ^8.4.38 - version: 8.4.39 + version: 8.4.38 prettier: specifier: ^3.2.5 - version: 3.3.2 + version: 3.2.5 prettier-plugin-svelte: specifier: ^3.2.3 - version: 3.2.5(prettier@3.3.2)(svelte@4.2.18) + version: 3.2.3(prettier@3.2.5)(svelte@4.2.17) svelte: specifier: ^4.2.15 - version: 4.2.18 + version: 4.2.17 svelte-check: specifier: ^3.7.1 - version: 3.8.4(@babel/core@7.25.2)(postcss@8.4.39)(svelte@4.2.18) + version: 3.7.1(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)))(postcss@8.4.38)(svelte@4.2.17) tailwindcss: specifier: ^3.4.3 - version: 3.4.4 + version: 3.4.3(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)) ts-morph: specifier: ^19.0.0 version: 19.0.0 tslib: specifier: ^2.6.2 - version: 2.6.3 + version: 2.6.2 typescript: specifier: ^5.4.3 - version: 5.5.3 + version: 5.4.3 vite: specifier: ^5.2.10 - version: 5.3.2(@types/node@20.14.9) + version: 5.2.11(@types/node@20.12.7)(terser@5.27.2) vite-tsconfig-paths: specifier: ^4.3.2 - version: 4.3.2(typescript@5.5.3)(vite@5.3.2) + version: 4.3.2(typescript@5.4.3)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) vitest: specifier: ^1.5.3 - version: 1.6.0(jsdom@24.1.0) + version: 1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2) vitest-fetch-mock: specifier: ^0.2.2 - version: 0.2.2(vitest@1.6.0) + version: 0.2.2(encoding@0.1.13)(vitest@1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2)) vitest-mock-extended: specifier: 1.3.1 - version: 1.3.1(typescript@5.5.3)(vitest@1.6.0) + version: 1.3.1(typescript@5.4.3)(vitest@1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2)) packages/docs-site: dependencies: '@astrojs/check': specifier: ^0.8.0 - version: 0.8.3(prettier@3.3.2)(typescript@5.5.3) + version: 0.8.3(prettier@3.2.5)(typescript@5.4.5) '@astrojs/starlight': specifier: ^0.25.0 - version: 0.25.4(astro@4.13.3) + version: 0.25.5(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)) astro: specifier: ^4.11.5 - version: 4.13.3(typescript@5.5.3) + version: 4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5) astro-og-canvas: specifier: ^0.5.0 - version: 0.5.1(astro@4.13.3) + version: 0.5.0(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)) canvaskit-wasm: specifier: ^0.39.1 version: 0.39.1 sharp: specifier: ^0.33.3 - version: 0.33.4 + version: 0.33.3 starlight-links-validator: specifier: ^0.8.0 - version: 0.8.0(@astrojs/starlight@0.25.4)(astro@4.13.3) + version: 0.8.0(@astrojs/starlight@0.25.5(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)))(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)) starlight-openapi: specifier: ^0.6.3 - version: 0.6.4(@astrojs/markdown-remark@5.2.0)(@astrojs/starlight@0.25.4)(astro@4.13.3)(openapi-types@12.1.3) + version: 0.6.3(@astrojs/markdown-remark@5.2.0)(@astrojs/starlight@0.25.5(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)))(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5))(openapi-types@12.1.3) typescript: specifier: ^5.4.5 - version: 5.5.3 + version: 5.4.5 packages/eventindexer: {} @@ -214,104 +214,113 @@ importers: dependencies: '@wagmi/core': specifier: ^2.8.0 - version: 2.11.6(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) + version: 2.8.0(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@6.0.3)(viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@6.0.3)(zod@3.23.8))(zod@3.23.8) axios: specifier: ^1.6.7 - version: 1.7.2(debug@4.3.5) + version: 1.6.7(debug@4.3.4) debug: specifier: ^4.3.4 - version: 4.3.5 + version: 4.3.4 svelte-i18n: specifier: ^4.0.0 - version: 4.0.0(svelte@4.2.18) + version: 4.0.0(svelte@4.2.13) viem: specifier: ^2.9.29 - version: 2.16.5(typescript@5.5.3)(zod@3.23.8) + version: 2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@6.0.3)(zod@3.23.8) devDependencies: '@playwright/test': specifier: ^1.43.1 - version: 1.45.0 + version: 1.43.1 '@sveltejs/adapter-auto': specifier: ^3.2.0 - version: 3.2.2(@sveltejs/kit@2.5.24) + version: 3.2.0(@sveltejs/kit@2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2))) '@sveltejs/kit': specifier: ^2.5.21 - version: 2.5.24(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@4.5.3) + version: 2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)) '@sveltejs/vite-plugin-svelte': specifier: ^3.1.0 - version: 3.1.1(svelte@4.2.18)(vite@4.5.3) + version: 3.1.0(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)) '@tailwindcss/nesting': specifier: 0.0.0-insiders.565cd3e - version: 0.0.0-insiders.565cd3e(postcss@8.4.39) + version: 0.0.0-insiders.565cd3e(postcss@8.4.38) '@typescript-eslint/eslint-plugin': specifier: ^7.4.0 - version: 7.15.0(@typescript-eslint/parser@7.15.0)(eslint@8.57.0)(typescript@5.5.3) + version: 7.4.0(@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0)(typescript@5.4.3) '@typescript-eslint/parser': specifier: ^7.7.0 - version: 7.15.0(eslint@8.57.0)(typescript@5.5.3) + version: 7.7.0(eslint@8.56.0)(typescript@5.4.3) autoprefixer: specifier: ^10.4.18 - version: 10.4.19(postcss@8.4.39) + version: 10.4.18(postcss@8.4.38) daisyui: specifier: ^4.10.1 - version: 4.12.10(postcss@8.4.39) + version: 4.10.1(postcss@8.4.38) eslint: specifier: ^8.56.0 - version: 8.57.0 + version: 8.56.0 eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.0) + version: 9.1.0(eslint@8.56.0) eslint-plugin-svelte: specifier: ^2.38.0 - version: 2.41.0(eslint@8.57.0)(svelte@4.2.18) + version: 2.38.0(eslint@8.56.0)(svelte@4.2.13)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)) postcss: specifier: ^8.4.38 - version: 8.4.39 + version: 8.4.38 postcss-import: specifier: ^16.1.0 - version: 16.1.0(postcss@8.4.39) + version: 16.1.0(postcss@8.4.38) postcss-nesting: specifier: ^12.1.0 - version: 12.1.5(postcss@8.4.39) + version: 12.1.0(postcss@8.4.38) prettier: specifier: ^3.2.5 - version: 3.3.2 + version: 3.2.5 prettier-plugin-svelte: specifier: ^3.2.2 - version: 3.2.5(prettier@3.3.2)(svelte@4.2.18) + version: 3.2.2(prettier@3.2.5)(svelte@4.2.13) svelte: specifier: ^4.2.13 - version: 4.2.18 + version: 4.2.13 svelte-check: specifier: ^3.7.1 - version: 3.8.4(@babel/core@7.25.2)(postcss@8.4.39)(svelte@4.2.18) + version: 3.7.1(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)))(postcss@8.4.38)(svelte@4.2.13) tailwindcss: specifier: ^3.4.3 - version: 3.4.4 + version: 3.4.3(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)) tslib: specifier: ^2.6.2 - version: 2.6.3 + version: 2.6.2 typescript: specifier: ^5.4.3 - version: 5.5.3 + version: 5.4.3 vite: specifier: ^4.5.3 - version: 4.5.3 + version: 4.5.3(@types/node@20.12.7)(terser@5.27.2) vite-tsconfig-paths: specifier: ^4.3.2 - version: 4.3.2(typescript@5.5.3)(vite@4.5.3) + version: 4.3.2(typescript@5.4.3)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)) vitest: specifier: ^1.5.0 - version: 1.6.0(jsdom@24.1.0) + version: 1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(terser@5.27.2) + + packages/monitors: + devDependencies: + '@openzeppelin/defender-as-code': + specifier: ^3.0.1 + version: 3.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)(web3-core-helpers@1.10.4)(web3-core@1.10.4(encoding@0.1.13))(web3-utils@1.10.4)(web3@1.10.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) + serverless: + specifier: 4.4.3 + version: 4.4.3 packages/nfts: dependencies: '@aws-sdk/client-s3': specifier: ^3.574.0 - version: 3.608.0 + version: 3.577.0 '@aws-sdk/lib-storage': specifier: ^3.574.0 - version: 3.608.0(@aws-sdk/client-s3@3.608.0) + version: 3.578.0(@aws-sdk/client-s3@3.577.0) '@openzeppelin/contracts': specifier: 5.0.2 version: 5.0.2 @@ -326,7 +335,7 @@ importers: version: link:../supplementary-contracts convert-csv-to-json: specifier: ^2.46.0 - version: 2.48.0 + version: 2.46.0 dotenv: specifier: ^16.4.5 version: 16.4.5 @@ -335,10 +344,10 @@ importers: version: https://codeload.github.com/dapphub/ds-test/tar.gz/e282159d5170298eb2455a6c05280ab5a73a4ef0 forge-std: specifier: github:foundry-rs/forge-std - version: https://codeload.github.com/foundry-rs/forge-std/tar.gz/8948d45d3d9022c508b83eb5d26fd3a7a93f2f32 + version: https://codeload.github.com/foundry-rs/forge-std/tar.gz/8f24d6b04c92975e0795b5868aa0d783251cdeaa ipfs-http-client: specifier: ^60.0.1 - version: 60.0.1 + version: 60.0.1(encoding@0.1.13) merkletreejs: specifier: ^0.4.0 version: 0.4.0 @@ -350,7 +359,7 @@ importers: version: p256-verifier#v0.1.0@https://codeload.github.com/taikoxyz/p256-verifier/tar.gz/6ef45b117642786b08a37b4c37c6a6ce151166da sharp: specifier: ^0.33.3 - version: 0.33.4 + version: 0.33.3 solady: specifier: github:Vectorized/solady#v0.0.167 version: https://codeload.github.com/Vectorized/solady/tar.gz/de0f336d2033d04e0f77c923d639c7fbffd48b6d @@ -360,49 +369,49 @@ importers: devDependencies: '@types/node': specifier: ^20.11.30 - version: 20.14.9 + version: 20.12.7 '@typescript-eslint/eslint-plugin': specifier: ^7.4.0 - version: 7.15.0(@typescript-eslint/parser@7.15.0)(eslint@8.57.0)(typescript@5.5.3) + version: 7.9.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5) '@typescript-eslint/parser': specifier: ^7.7.0 - version: 7.15.0(eslint@8.57.0)(typescript@5.5.3) + version: 7.9.0(eslint@8.56.0)(typescript@5.4.5) eslint: specifier: ^8.51.0 - version: 8.57.0 + version: 8.56.0 eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.0) + version: 9.1.0(eslint@8.56.0) eslint-config-standard: specifier: ^17.1.0 - version: 17.1.0(eslint-plugin-import@2.29.1)(eslint-plugin-n@16.6.2)(eslint-plugin-promise@6.4.0)(eslint@8.57.0) + version: 17.1.0(eslint-plugin-import@2.29.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0))(eslint-plugin-n@16.6.2(eslint@8.56.0))(eslint-plugin-promise@6.1.1(eslint@8.56.0))(eslint@8.56.0) eslint-plugin-import: specifier: ^2.28.1 - version: 2.29.1(@typescript-eslint/parser@7.15.0)(eslint@8.57.0) + version: 2.29.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0) eslint-plugin-node: specifier: ^11.1.0 - version: 11.1.0(eslint@8.57.0) + version: 11.1.0(eslint@8.56.0) eslint-plugin-prettier: specifier: ^5.1.3 - version: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.3.2) + version: 5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.2.5) eslint-plugin-promise: specifier: ^6.1.1 - version: 6.4.0(eslint@8.57.0) + version: 6.1.1(eslint@8.56.0) ethers: specifier: ^5.7.2 - version: 5.7.2 + version: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) solc: specifier: 0.8.24 version: 0.8.24 solhint: specifier: ^4.5.4 - version: 4.5.4(typescript@5.5.3) + version: 4.5.4(typescript@5.4.5) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.14.9)(typescript@5.5.3) + version: 10.9.2(@types/node@20.12.7)(typescript@5.4.5) typescript: specifier: ^5.2.2 - version: 5.5.3 + version: 5.4.5 packages/protocol: dependencies: @@ -439,49 +448,49 @@ importers: devDependencies: '@types/node': specifier: ^20.11.30 - version: 20.14.9 + version: 20.12.7 '@typescript-eslint/eslint-plugin': specifier: ^7.4.0 - version: 7.15.0(@typescript-eslint/parser@7.15.0)(eslint@8.57.0)(typescript@5.5.3) + version: 7.4.0(@typescript-eslint/parser@7.7.0(eslint@8.55.0)(typescript@5.4.3))(eslint@8.55.0)(typescript@5.4.3) '@typescript-eslint/parser': specifier: ^7.7.0 - version: 7.15.0(eslint@8.57.0)(typescript@5.5.3) + version: 7.7.0(eslint@8.55.0)(typescript@5.4.3) eslint: specifier: ^8.51.0 - version: 8.57.0 + version: 8.55.0 eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.0) + version: 9.1.0(eslint@8.55.0) eslint-config-standard: specifier: ^17.1.0 - version: 17.1.0(eslint-plugin-import@2.29.1)(eslint-plugin-n@16.6.2)(eslint-plugin-promise@6.4.0)(eslint@8.57.0) + version: 17.1.0(eslint-plugin-import@2.29.0(@typescript-eslint/parser@7.7.0(eslint@8.55.0)(typescript@5.4.3))(eslint@8.55.0))(eslint-plugin-n@16.6.2(eslint@8.55.0))(eslint-plugin-promise@6.1.1(eslint@8.55.0))(eslint@8.55.0) eslint-plugin-import: specifier: ^2.28.1 - version: 2.29.1(@typescript-eslint/parser@7.15.0)(eslint@8.57.0) + version: 2.29.0(@typescript-eslint/parser@7.7.0(eslint@8.55.0)(typescript@5.4.3))(eslint@8.55.0) eslint-plugin-node: specifier: ^11.1.0 - version: 11.1.0(eslint@8.57.0) + version: 11.1.0(eslint@8.55.0) eslint-plugin-prettier: specifier: ^5.1.3 - version: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.3.2) + version: 5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.55.0))(eslint@8.55.0)(prettier@3.2.5) eslint-plugin-promise: specifier: ^6.1.1 - version: 6.4.0(eslint@8.57.0) + version: 6.1.1(eslint@8.55.0) ethers: specifier: ^5.7.2 - version: 5.7.2 + version: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) solc: specifier: 0.8.24 version: 0.8.24 solhint: specifier: ^5.0.3 - version: 5.0.3(typescript@5.5.3) + version: 5.0.3(typescript@5.4.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.14.9)(typescript@5.5.3) + version: 10.9.2(@types/node@20.12.7)(typescript@5.4.3) typescript: specifier: ^5.2.2 - version: 5.5.3 + version: 5.4.3 packages/relayer: {} @@ -492,65 +501,65 @@ importers: version: 1.0.6 '@wagmi/cli': specifier: ^2.1.8 - version: 2.1.13(typescript@5.5.3) + version: 2.1.15(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10) '@wagmi/connectors': specifier: ^5.0.6 - version: 5.0.21(@wagmi/core@2.11.6)(react-native@0.74.3)(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) + version: 5.1.10(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(@wagmi/core@2.13.5(@types/react@18.3.5)(react@18.2.0)(typescript@5.4.5)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) '@wagmi/core': specifier: ^2.10.4 - version: 2.11.6(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) + version: 2.13.5(@types/react@18.3.5)(react@18.2.0)(typescript@5.4.5)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)) '@web3modal/common': specifier: ^5.0.11 - version: 5.1.0 + version: 5.1.8 '@web3modal/ui': specifier: ^4.2.2 version: 4.2.3 '@web3modal/wagmi': specifier: ^4.2.2 - version: 4.2.3(@wagmi/connectors@5.0.21)(@wagmi/core@2.11.6)(react@18.3.1)(viem@2.16.5) + version: 4.2.3(hoyagxhmve75vyxjsj4tjya6zm) '@zerodevx/svelte-toast': specifier: ^0.9.5 - version: 0.9.5(svelte@4.2.18) + version: 0.9.5(svelte@4.2.17) autoprefixer: specifier: ^10.4.19 - version: 10.4.19(postcss@8.4.39) + version: 10.4.19(postcss@8.4.38) daisyui: specifier: ^4.10.1 - version: 4.12.10(postcss@8.4.39) + version: 4.11.1(postcss@8.4.38) dayjs: specifier: ^1.11.10 - version: 1.11.11 + version: 1.11.10 debug: specifier: ^4.3.4 - version: 4.3.5 + version: 4.3.4 minidenticons: specifier: ^4.2.1 version: 4.2.1 postcss: specifier: ^8.4.38 - version: 8.4.39 + version: 8.4.38 tailwindcss: specifier: ^3.4.3 - version: 3.4.4 + version: 3.4.3(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) viem: specifier: ^2.13.1 - version: 2.16.5(typescript@5.5.3)(zod@3.23.8) + version: 2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) devDependencies: '@chromatic-com/storybook': specifier: ^1.3.1 - version: 1.6.0(react@18.3.1) + version: 1.9.0(react@18.2.0) '@playwright/test': specifier: ^1.28.1 - version: 1.45.0 + version: 1.43.1 '@sveltejs/adapter-auto': specifier: ^3.0.0 - version: 3.2.2(@sveltejs/kit@2.5.24) + version: 3.2.0(@sveltejs/kit@2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2))) '@sveltejs/kit': specifier: ^2.5.21 - version: 2.5.24(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@5.3.2) + version: 2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) '@sveltejs/vite-plugin-svelte': specifier: ^3.0.0 - version: 3.1.1(svelte@4.2.18)(vite@5.3.2) + version: 3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) '@taiko/ui-lib': specifier: workspace:* version: link:../ui-lib @@ -562,79 +571,79 @@ importers: version: 29.5.12 '@types/node': specifier: ^20.12.7 - version: 20.14.9 + version: 20.12.7 '@typescript-eslint/eslint-plugin': specifier: ^7.0.0 - version: 7.15.0(@typescript-eslint/parser@7.15.0)(eslint@8.57.0)(typescript@5.5.3) + version: 7.9.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5) '@typescript-eslint/parser': specifier: ^7.0.0 - version: 7.15.0(eslint@8.57.0)(typescript@5.5.3) + version: 7.9.0(eslint@8.56.0)(typescript@5.4.5) convert-csv-to-json: specifier: ^2.44.0 - version: 2.48.0 + version: 2.46.0 dotenv: specifier: ^16.4.5 version: 16.4.5 eslint: specifier: ^8.56.0 - version: 8.57.0 + version: 8.56.0 eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.0) + version: 9.1.0(eslint@8.56.0) eslint-plugin-simple-import-sort: specifier: ^12.0.0 - version: 12.1.0(eslint@8.57.0) + version: 12.0.0(eslint@8.56.0) eslint-plugin-storybook: specifier: ^0.8.0 - version: 0.8.0(eslint@8.57.0)(typescript@5.5.3) + version: 0.8.0(eslint@8.56.0)(typescript@5.4.5) eslint-plugin-svelte: specifier: ^2.38.0 - version: 2.41.0(eslint@8.57.0)(svelte@4.2.18) + version: 2.38.0(eslint@8.56.0)(svelte@4.2.17)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) p-map: specifier: ^7.0.2 version: 7.0.2 prettier: specifier: ^3.1.1 - version: 3.3.2 + version: 3.2.5 prettier-plugin-svelte: specifier: ^3.1.2 - version: 3.2.5(prettier@3.3.2)(svelte@4.2.18) + version: 3.2.3(prettier@3.2.5)(svelte@4.2.17) raw-body: specifier: ^2.5.2 version: 2.5.2 svelte: specifier: ^4.2.7 - version: 4.2.18 + version: 4.2.17 svelte-check: specifier: ^3.7.1 - version: 3.8.4(@babel/core@7.25.2)(postcss@8.4.39)(svelte@4.2.18) + version: 3.7.1(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.38)(svelte@4.2.17) svelte-copy: specifier: ^1.4.2 - version: 1.4.2(svelte@4.2.18) + version: 1.4.2(svelte@4.2.17) svelte-i18n: specifier: ^4.0.0 - version: 4.0.0(svelte@4.2.18) + version: 4.0.0(svelte@4.2.17) svelte-scrolling: specifier: ^1.4.0 - version: 1.4.0(svelte@4.2.18) + version: 1.4.0(svelte@4.2.17) tailwindcss-image-rendering: specifier: ^1.0.2 version: 1.0.2 tslib: specifier: ^2.4.1 - version: 2.6.3 + version: 2.6.2 typescript: specifier: ^5.0.0 - version: 5.5.3 + version: 5.4.5 vite: specifier: ^5.0.3 - version: 5.3.2(@types/node@20.14.9) + version: 5.2.11(@types/node@20.12.7)(terser@5.27.2) vite-tsconfig-paths: specifier: ^4.3.2 - version: 4.3.2(typescript@5.5.3)(vite@5.3.2) + version: 4.3.2(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) vitest: specifier: ^1.2.0 - version: 1.6.0(@types/node@20.14.9) + version: 1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2) which: specifier: ^4.0.0 version: 4.0.0 @@ -665,49 +674,49 @@ importers: devDependencies: '@types/node': specifier: ^20.11.30 - version: 20.14.9 + version: 20.12.7 '@typescript-eslint/eslint-plugin': specifier: ^7.4.0 - version: 7.15.0(@typescript-eslint/parser@7.15.0)(eslint@8.57.0)(typescript@5.5.3) + version: 7.4.0(@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0)(typescript@5.4.3) '@typescript-eslint/parser': specifier: ^7.7.0 - version: 7.15.0(eslint@8.57.0)(typescript@5.5.3) + version: 7.7.0(eslint@8.56.0)(typescript@5.4.3) eslint: specifier: ^8.51.0 - version: 8.57.0 + version: 8.56.0 eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.0) + version: 9.1.0(eslint@8.56.0) eslint-config-standard: specifier: ^17.1.0 - version: 17.1.0(eslint-plugin-import@2.29.1)(eslint-plugin-n@16.6.2)(eslint-plugin-promise@6.4.0)(eslint@8.57.0) + version: 17.1.0(eslint-plugin-import@2.29.0(@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0))(eslint-plugin-n@16.6.2(eslint@8.56.0))(eslint-plugin-promise@6.1.1(eslint@8.56.0))(eslint@8.56.0) eslint-plugin-import: specifier: ^2.28.1 - version: 2.29.1(@typescript-eslint/parser@7.15.0)(eslint@8.57.0) + version: 2.29.0(@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0) eslint-plugin-node: specifier: ^11.1.0 - version: 11.1.0(eslint@8.57.0) + version: 11.1.0(eslint@8.56.0) eslint-plugin-prettier: specifier: ^5.1.3 - version: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.3.2) + version: 5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.2.5) eslint-plugin-promise: specifier: ^6.1.1 - version: 6.4.0(eslint@8.57.0) + version: 6.1.1(eslint@8.56.0) ethers: specifier: ^5.7.2 - version: 5.7.2 + version: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) solc: specifier: 0.8.24 version: 0.8.24 solhint: specifier: ^4.5.4 - version: 4.5.4(typescript@5.5.3) + version: 4.5.4(typescript@5.4.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.14.9)(typescript@5.5.3) + version: 10.9.2(@types/node@20.12.7)(typescript@5.4.3) typescript: specifier: ^5.2.2 - version: 5.5.3 + version: 5.4.3 packages/taiko-client: {} @@ -721,65 +730,65 @@ importers: version: link:../ui-lib '@wagmi/cli': specifier: ^2.1.4 - version: 2.1.13(typescript@5.5.3) + version: 2.1.4(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10) '@wagmi/connectors': specifier: ^4.1.18 - version: 4.3.10(@wagmi/core@2.11.6)(react-i18next@13.5.0)(react-native@0.74.3)(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) + version: 4.1.18(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(@wagmi/core@2.8.0(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) '@wagmi/core': specifier: ^2.8.0 - version: 2.11.6(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) + version: 2.8.0(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) '@web3modal/common': specifier: ^5.0.11 - version: 5.1.0 + version: 5.1.8 '@web3modal/ui': specifier: ^4.1.1 - version: 4.2.3 + version: 4.1.11 '@web3modal/wagmi': specifier: ^4.1.1 - version: 4.2.3(@wagmi/connectors@4.3.10)(@wagmi/core@2.11.6)(react@18.3.1)(viem@2.16.5) + version: 4.1.11(xgqwdfny5esqdjztzawvofqbai) '@zerodevx/svelte-toast': specifier: ^0.9.5 - version: 0.9.5(svelte@4.2.18) + version: 0.9.5(svelte@4.2.13) autoprefixer: specifier: ^10.4.19 - version: 10.4.19(postcss@8.4.39) + version: 10.4.19(postcss@8.4.38) daisyui: specifier: ^4.10.1 - version: 4.12.10(postcss@8.4.39) + version: 4.10.1(postcss@8.4.38) dayjs: specifier: ^1.11.10 - version: 1.11.11 + version: 1.11.10 debug: specifier: ^4.3.4 - version: 4.3.5 + version: 4.3.4 minidenticons: specifier: ^4.2.1 version: 4.2.1 postcss: specifier: ^8.4.38 - version: 8.4.39 + version: 8.4.38 tailwindcss: specifier: ^3.4.3 - version: 3.4.4 + version: 3.4.3(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)) viem: specifier: ^2.15.1 - version: 2.16.5(typescript@5.5.3)(zod@3.23.8) + version: 2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8) devDependencies: '@chromatic-com/storybook': specifier: ^1.3.1 - version: 1.6.0(react@18.3.1) + version: 1.3.3(react@18.2.0) '@playwright/test': specifier: ^1.28.1 - version: 1.45.0 + version: 1.43.1 '@sveltejs/adapter-auto': specifier: ^3.0.0 - version: 3.2.2(@sveltejs/kit@2.5.24) + version: 3.2.0(@sveltejs/kit@2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2))) '@sveltejs/kit': specifier: ^2.5.21 - version: 2.5.24(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@5.3.2) + version: 2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)) '@sveltejs/vite-plugin-svelte': specifier: ^3.1.0 - version: 3.1.1(svelte@4.2.18)(vite@5.3.2) + version: 3.1.0(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)) '@types/eslint': specifier: ^8.56.0 version: 8.56.10 @@ -788,79 +797,79 @@ importers: version: 29.5.12 '@types/node': specifier: ^20.12.7 - version: 20.14.9 + version: 20.12.7 '@typescript-eslint/eslint-plugin': specifier: ^7.0.0 - version: 7.15.0(@typescript-eslint/parser@7.15.0)(eslint@8.57.0)(typescript@5.5.3) + version: 7.4.0(@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0)(typescript@5.4.3) '@typescript-eslint/parser': specifier: ^7.0.0 - version: 7.15.0(eslint@8.57.0)(typescript@5.5.3) + version: 7.7.0(eslint@8.56.0)(typescript@5.4.3) convert-csv-to-json: specifier: ^2.44.0 - version: 2.48.0 + version: 2.46.0 dotenv: specifier: ^16.4.5 version: 16.4.5 eslint: specifier: ^8.56.0 - version: 8.57.0 + version: 8.56.0 eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.0) + version: 9.1.0(eslint@8.56.0) eslint-plugin-simple-import-sort: specifier: ^12.0.0 - version: 12.1.0(eslint@8.57.0) + version: 12.0.0(eslint@8.56.0) eslint-plugin-storybook: specifier: ^0.8.0 - version: 0.8.0(eslint@8.57.0)(typescript@5.5.3) + version: 0.8.0(eslint@8.56.0)(typescript@5.4.3) eslint-plugin-svelte: specifier: ^2.38.0 - version: 2.41.0(eslint@8.57.0)(svelte@4.2.18) + version: 2.38.0(eslint@8.56.0)(svelte@4.2.13)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)) p-map: specifier: ^7.0.2 version: 7.0.2 prettier: specifier: ^3.1.1 - version: 3.3.2 + version: 3.2.5 prettier-plugin-svelte: specifier: ^3.1.2 - version: 3.2.5(prettier@3.3.2)(svelte@4.2.18) + version: 3.2.2(prettier@3.2.5)(svelte@4.2.13) raw-body: specifier: ^2.5.2 version: 2.5.2 svelte: specifier: ^4.2.7 - version: 4.2.18 + version: 4.2.13 svelte-check: specifier: ^3.7.1 - version: 3.8.4(@babel/core@7.25.2)(postcss@8.4.39)(svelte@4.2.18) + version: 3.7.1(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)))(postcss@8.4.38)(svelte@4.2.13) svelte-copy: specifier: ^1.4.2 - version: 1.4.2(svelte@4.2.18) + version: 1.4.2(svelte@4.2.13) svelte-i18n: specifier: ^4.0.0 - version: 4.0.0(svelte@4.2.18) + version: 4.0.0(svelte@4.2.13) svelte-scrolling: specifier: ^1.4.0 - version: 1.4.0(svelte@4.2.18) + version: 1.4.0(svelte@4.2.13) tailwindcss-image-rendering: specifier: ^1.0.2 version: 1.0.2 tslib: specifier: ^2.4.1 - version: 2.6.3 + version: 2.6.2 typescript: specifier: ^5.0.0 - version: 5.5.3 + version: 5.4.3 vite: specifier: ^5.0.3 - version: 5.3.2(@types/node@20.14.9) + version: 5.1.3(@types/node@20.12.7)(terser@5.27.2) vite-tsconfig-paths: specifier: ^4.3.2 - version: 4.3.2(typescript@5.5.3)(vite@5.3.2) + version: 4.3.2(typescript@5.4.3)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)) vitest: specifier: ^1.2.0 - version: 1.6.0(@types/node@20.14.9) + version: 1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2) which: specifier: ^4.0.0 version: 4.0.0 @@ -869,125 +878,132 @@ importers: dependencies: daisyui: specifier: ^4.11.1 - version: 4.12.10(postcss@8.4.41) + version: 4.11.1(postcss@8.4.47) tailwindcss-image-rendering: specifier: ^1.0.2 version: 1.0.2 devDependencies: '@chromatic-com/storybook': specifier: ^1.3.4 - version: 1.6.0(react@18.3.1) + version: 1.9.0(react@18.2.0) '@playwright/test': specifier: ^1.28.1 - version: 1.45.0 + version: 1.43.1 '@storybook/addon-essentials': specifier: ^8.0.10 - version: 8.1.11(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1) + version: 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) '@storybook/addon-interactions': specifier: ^8.0.10 - version: 8.1.11(vitest@1.6.0) + version: 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) '@storybook/addon-links': specifier: ^8.0.10 - version: 8.1.11(react@18.3.1) + version: 8.3.0(react@18.2.0)(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) '@storybook/addon-themes': specifier: ^8.1.1 - version: 8.1.11 + version: 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) '@storybook/blocks': specifier: ^8.0.10 - version: 8.1.11(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1) + version: 8.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) '@storybook/svelte': specifier: ^8.0.10 - version: 8.1.11(prettier@3.3.2)(svelte@4.2.18) + version: 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(svelte@4.2.17) '@storybook/sveltekit': specifier: ^8.0.10 - version: 8.1.11(@babel/core@7.24.7)(@sveltejs/vite-plugin-svelte@3.1.1)(postcss@8.4.41)(prettier@3.3.2)(svelte@4.2.18)(typescript@5.5.3)(vite@5.3.2) + version: 8.3.0(@babel/core@7.25.2)(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.47)(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(svelte@4.2.17)(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) '@storybook/test': specifier: ^8.0.10 - version: 8.1.11(vitest@1.6.0) + version: 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) '@sveltejs/adapter-auto': specifier: ^3.0.0 - version: 3.2.2(@sveltejs/kit@2.5.24) + version: 3.2.0(@sveltejs/kit@2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2))) '@sveltejs/kit': specifier: ^2.5.21 - version: 2.5.24(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@5.3.2) + version: 2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) '@sveltejs/package': specifier: ^2.0.0 - version: 2.3.2(svelte@4.2.18)(typescript@5.5.3) + version: 2.3.5(svelte@4.2.17)(typescript@5.4.5) '@sveltejs/vite-plugin-svelte': specifier: ^3.0.0 - version: 3.1.1(svelte@4.2.18)(vite@5.3.2) + version: 3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) '@types/eslint': specifier: ^8.56.0 version: 8.56.10 '@typescript-eslint/eslint-plugin': specifier: ^7.0.0 - version: 7.15.0(@typescript-eslint/parser@7.15.0)(eslint@8.57.0)(typescript@5.5.3) + version: 7.9.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5) '@typescript-eslint/parser': specifier: ^7.0.0 - version: 7.15.0(eslint@8.57.0)(typescript@5.5.3) + version: 7.9.0(eslint@8.56.0)(typescript@5.4.5) autoprefixer: specifier: ^10.4.19 - version: 10.4.19(postcss@8.4.41) + version: 10.4.19(postcss@8.4.47) eslint: specifier: ^8.56.0 - version: 8.57.0 + version: 8.56.0 eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.0) + version: 9.1.0(eslint@8.56.0) eslint-plugin-storybook: specifier: ^0.8.0 - version: 0.8.0(eslint@8.57.0)(typescript@5.5.3) + version: 0.8.0(eslint@8.56.0)(typescript@5.4.5) eslint-plugin-svelte: specifier: ^2.35.1 - version: 2.41.0(eslint@8.57.0)(svelte@4.2.18) + version: 2.38.0(eslint@8.56.0)(svelte@4.2.17)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) prettier: specifier: ^3.1.1 - version: 3.3.2 + version: 3.2.5 prettier-plugin-svelte: specifier: ^3.1.2 - version: 3.2.5(prettier@3.3.2)(svelte@4.2.18) + version: 3.2.3(prettier@3.2.5)(svelte@4.2.17) publint: specifier: ^0.1.9 version: 0.1.16 storybook: specifier: ^8.0.10 - version: 8.1.11(react-dom@18.3.1)(react@18.3.1) + version: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) svelte: specifier: ^4.2.7 - version: 4.2.18 + version: 4.2.17 svelte-check: specifier: ^3.6.0 - version: 3.8.4(@babel/core@7.24.7)(postcss@8.4.41)(svelte@4.2.18) + version: 3.7.1(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.47)(svelte@4.2.17) tailwindcss: specifier: ^3.4.3 - version: 3.4.4 + version: 3.4.3(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) tslib: specifier: ^2.4.1 - version: 2.6.3 + version: 2.6.2 typescript: specifier: ^5.0.0 - version: 5.5.3 + version: 5.4.5 vite: specifier: ^5.0.11 - version: 5.3.2(@types/node@20.14.9) + version: 5.2.11(@types/node@20.12.7)(terser@5.27.2) vitest: specifier: ^1.2.0 - version: 1.6.0(jsdom@24.1.0) + version: 1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(terser@5.27.2) packages: + '@aashutoshrathi/word-wrap@1.2.6': + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + '@adobe/css-tools@4.4.0': resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==} '@adraffy/ens-normalize@1.10.0': resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==} + '@adraffy/ens-normalize@1.10.1': + resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==} + '@alloc/quick-lru@5.2.0': resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} engines: {node: '>=10'} - '@ampproject/remapping@2.3.0': - resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + '@ampproject/remapping@2.2.1': + resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} engines: {node: '>=6.0.0'} '@apidevtools/openapi-schemas@2.1.0': @@ -1003,14 +1019,14 @@ packages: peerDependencies: typescript: ^5.0.0 - '@astrojs/compiler@2.10.2': - resolution: {integrity: sha512-bvH+v8AirwpRWCkYJEyWYdc5Cs/BjG2ZTxIJzttHilXgfKJAdW2496KsUQKzf5j2tOHtaHXKKn9hb9WZiBGpEg==} + '@astrojs/compiler@2.10.3': + resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==} '@astrojs/internal-helpers@0.4.1': resolution: {integrity: sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==} - '@astrojs/language-server@2.13.2': - resolution: {integrity: sha512-l435EZLKjaUO/6iewJ7xqd3eHf3zAosVWG4woILbxluQcianBoNPepnnqAg7uUriZUaC44ae5v0Q+AfB8UI64g==} + '@astrojs/language-server@2.14.2': + resolution: {integrity: sha512-daUJ/+/2pPF3eGG4tVdXKyw0tabUDrJKwLzU8VTuNhEHIn3VZAIES6VT3+mX0lmKcMiKM8/bjZdfY+fPfmnsMA==} hasBin: true peerDependencies: prettier: ^3.0.0 @@ -1024,8 +1040,8 @@ packages: '@astrojs/markdown-remark@5.2.0': resolution: {integrity: sha512-vWGM24KZXz11jR3JO+oqYU3T2qpuOi4uGivJ9SQLCAI01+vEkHC60YJMRvHPc+hwd60F7euNs1PeOEixIIiNQw==} - '@astrojs/mdx@3.1.3': - resolution: {integrity: sha512-hOM4dMM4RfJI254d3p/AnOZuk2VyKszRtuY5FBm+Xc4XdhIpGrR56OXMNEcWchtwz4HQyPe/eJSgvBjSROcQIQ==} + '@astrojs/mdx@3.1.6': + resolution: {integrity: sha512-YCEIvNgoQG3oVhe9codH4TX6zjvkl7KGla19yZO5RCnvjv2d9zyrfWqJ98I6/m18PbEY3k8Wjvha0IIf5eZ2sQ==} engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} peerDependencies: astro: ^4.8.0 @@ -1037,8 +1053,8 @@ packages: '@astrojs/sitemap@3.1.6': resolution: {integrity: sha512-1Qp2NvAzVImqA6y+LubKi1DVhve/hXXgFvB0szxiipzh7BvtuKe4oJJ9dXSqaubaTkt4nMa6dv6RCCAYeB6xaQ==} - '@astrojs/starlight@0.25.4': - resolution: {integrity: sha512-TRPgRsd5opi2tCXvh8rWizpLsJsRRXbYecULG5b/1x4BFyp40ZJVB77cLMjTj3lHwqWs0Sybtq5OBpOy6fuIEQ==} + '@astrojs/starlight@0.25.5': + resolution: {integrity: sha512-JQsfoqRUX/HBpOW8LWPdiIxcfXZ5HOvi4Dz4Ez61U99hDyX3Ix2Q+pmsek1sH5R1MHWx/wlki2VPEqidtKXyiQ==} peerDependencies: astro: ^4.8.6 @@ -1046,172 +1062,176 @@ packages: resolution: {integrity: sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==} engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} - '@aw-web-design/x-default-browser@1.4.126': - resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==} - hasBin: true + '@astrojs/yaml2ts@0.2.1': + resolution: {integrity: sha512-CBaNwDQJz20E5WxzQh4thLVfhB3JEEGz72wRA+oJp6fQR37QLAqXZJU0mHC+yqMOQ6oj0GfRPJrz6hjf+zm6zA==} - '@aws-crypto/crc32@5.2.0': - resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==} - engines: {node: '>=16.0.0'} + '@aws-crypto/crc32@3.0.0': + resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==} - '@aws-crypto/crc32c@5.2.0': - resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==} + '@aws-crypto/crc32c@3.0.0': + resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==} - '@aws-crypto/sha1-browser@5.2.0': - resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==} + '@aws-crypto/ie11-detection@3.0.0': + resolution: {integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==} - '@aws-crypto/sha256-browser@5.2.0': - resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==} + '@aws-crypto/sha1-browser@3.0.0': + resolution: {integrity: sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==} - '@aws-crypto/sha256-js@5.2.0': - resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==} - engines: {node: '>=16.0.0'} + '@aws-crypto/sha256-browser@3.0.0': + resolution: {integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==} + + '@aws-crypto/sha256-js@1.2.2': + resolution: {integrity: sha512-Nr1QJIbW/afYYGzYvrF70LtaHrIRtd4TNAglX8BvlfxJLZ45SAmueIKYl5tWoNBPzp65ymXGFK0Bb1vZUpuc9g==} + + '@aws-crypto/sha256-js@3.0.0': + resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==} + + '@aws-crypto/supports-web-crypto@3.0.0': + resolution: {integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==} - '@aws-crypto/supports-web-crypto@5.2.0': - resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==} + '@aws-crypto/util@1.2.2': + resolution: {integrity: sha512-H8PjG5WJ4wz0UXAFXeJjWCW1vkvIJ3qUUD+rGRwJ2/hj+xT58Qle2MTql/2MGzkU+1JLAFuR6aJpLAjHwhmwwg==} - '@aws-crypto/util@5.2.0': - resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==} + '@aws-crypto/util@3.0.0': + resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==} - '@aws-sdk/client-s3@3.608.0': - resolution: {integrity: sha512-la2R6QfUOmE4JMubxLD3OdnPTduAs5YekIvx68I5CbLudb5pbxkHDqnrWDhgK1lX4Cu19pXjgQXmS8oZMJPeLQ==} + '@aws-sdk/client-s3@3.577.0': + resolution: {integrity: sha512-mQYXwn6E4Rwggn6teF6EIWJtK8jsKcxnPj2QVETkSmD8QaFLm4g/DgLPdamDE97UI8k1k0cmWqXcTOLIaZ7wQg==} engines: {node: '>=16.0.0'} - '@aws-sdk/client-sso-oidc@3.606.0': - resolution: {integrity: sha512-gL1FHPS6hwgMNS/A+Qh5bUyHOeRVOqdb7c6+i+9gR3wtGvt2lvoSm8w5DhS08Xiiacz2AqYRDEapp0xuyCrbBQ==} + '@aws-sdk/client-sso-oidc@3.577.0': + resolution: {integrity: sha512-njmKSPDWueWWYVFpFcZ2P3fI6/pdQVDa0FgCyYZhOnJLgEHZIcBBg1AsnkVWacBuLopp9XVt2m+7hO6ugY1/1g==} engines: {node: '>=16.0.0'} - peerDependencies: - '@aws-sdk/client-sts': ^3.606.0 - '@aws-sdk/client-sso@3.598.0': - resolution: {integrity: sha512-nOI5lqPYa+YZlrrzwAJywJSw3MKVjvu6Ge2fCqQUNYMfxFB0NAaDFnl0EPjXi+sEbtCuz/uWE77poHbqiZ+7Iw==} + '@aws-sdk/client-sso@3.577.0': + resolution: {integrity: sha512-BwujdXrydlk6UEyPmewm5GqG4nkQ6OVyRhS/SyZP/6UKSFv2/sf391Cmz0hN0itUTH1rR4XeLln8XCOtarkrzg==} engines: {node: '>=16.0.0'} - '@aws-sdk/client-sts@3.606.0': - resolution: {integrity: sha512-b11mAhjrkm3MMiAPoMGcmd6vsaz2120lg8rHG/NZCo9vB1K6Kc7WP+a1Q05TRMseer2egTtpWJfn44aVO97VqA==} + '@aws-sdk/client-sts@3.577.0': + resolution: {integrity: sha512-509Kklimva1XVlhGbpTpeX3kOP6ORpm44twJxDHpa9TURbmoaxj7veWlnLCbDorxDTrbsDghvYZshvcLsojVpg==} engines: {node: '>=16.0.0'} - '@aws-sdk/core@3.598.0': - resolution: {integrity: sha512-HaSjt7puO5Cc7cOlrXFCW0rtA0BM9lvzjl56x0A20Pt+0wxXGeTOZZOkXQIepbrFkV2e/HYukuT9e99vXDm59g==} + '@aws-sdk/core@3.576.0': + resolution: {integrity: sha512-KDvDlbeipSTIf+ffKtTg1m419TK7s9mZSWC8bvuZ9qx6/sjQFOXIKOVqyuli6DnfxGbvRcwoRuY99OcCH1N/0w==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-env@3.598.0': - resolution: {integrity: sha512-vi1khgn7yXzLCcgSIzQrrtd2ilUM0dWodxj3PQ6BLfP0O+q1imO3hG1nq7DVyJtq7rFHs6+9N8G4mYvTkxby2w==} + '@aws-sdk/credential-provider-env@3.577.0': + resolution: {integrity: sha512-Jxu255j0gToMGEiqufP8ZtKI8HW90lOLjwJ3LrdlD/NLsAY0tOQf1fWc53u28hWmmNGMxmCrL2p66IOgMDhDUw==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-http@3.598.0': - resolution: {integrity: sha512-N7cIafi4HVlQvEgvZSo1G4T9qb/JMLGMdBsDCT5XkeJrF0aptQWzTFH0jIdZcLrMYvzPcuEyO3yCBe6cy/ba0g==} + '@aws-sdk/credential-provider-http@3.577.0': + resolution: {integrity: sha512-n++yhCp67b9+ZRGEdY1jhamB5E/O+QsIDOPSuRmdaSGMCOd82oUEKPgIVEU1bkqxDsBxgiEWuvtfhK6sNiDS0A==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-ini@3.598.0': - resolution: {integrity: sha512-/ppcIVUbRwDIwJDoYfp90X3+AuJo2mvE52Y1t2VSrvUovYn6N4v95/vXj6LS8CNDhz2jvEJYmu+0cTMHdhI6eA==} + '@aws-sdk/credential-provider-ini@3.577.0': + resolution: {integrity: sha512-q7lHPtv6BjRvChUE3m0tIaEZKxPTaZ1B3lKxGYsFl3VLAu5N8yGCUKwuA1izf4ucT+LyKscVGqK6VDZx1ev3nw==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sts': ^3.598.0 + '@aws-sdk/client-sts': ^3.577.0 - '@aws-sdk/credential-provider-node@3.600.0': - resolution: {integrity: sha512-1pC7MPMYD45J7yFjA90SxpR0yaSvy+yZiq23aXhAPZLYgJBAxHLu0s0mDCk/piWGPh8+UGur5K0bVdx4B1D5hw==} + '@aws-sdk/credential-provider-node@3.577.0': + resolution: {integrity: sha512-epZ1HOMsrXBNczc0HQpv0VMjqAEpc09DUA7Rg3gUJfn8umhML7A7bXnUyqPA+S54q397UYg1leQKdSn23OiwQQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-process@3.598.0': - resolution: {integrity: sha512-rM707XbLW8huMk722AgjVyxu2tMZee++fNA8TJVNgs1Ma02Wx6bBrfIvlyK0rCcIRb0WdQYP6fe3Xhiu4e8IBA==} + '@aws-sdk/credential-provider-process@3.577.0': + resolution: {integrity: sha512-Gin6BWtOiXxIgITrJ3Nwc+Y2P1uVT6huYR4EcbA/DJUPWyO0n9y5UFLewPvVbLkRn15JeEqErBLUrHclkiOKtw==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-sso@3.598.0': - resolution: {integrity: sha512-5InwUmrAuqQdOOgxTccRayMMkSmekdLk6s+az9tmikq0QFAHUCtofI+/fllMXSR9iL6JbGYi1940+EUmS4pHJA==} + '@aws-sdk/credential-provider-sso@3.577.0': + resolution: {integrity: sha512-iVm5SQvS7EgZTJsRaqUOmDQpBQPPPat42SCbWFvFQOLrl8qewq8OP94hFS5w2mP62zngeYzqhJnDel79HXbxew==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-web-identity@3.598.0': - resolution: {integrity: sha512-GV5GdiMbz5Tz9JO4NJtRoFXjW0GPEujA0j+5J/B723rTN+REHthJu48HdBKouHGhdzkDWkkh1bu52V02Wprw8w==} + '@aws-sdk/credential-provider-web-identity@3.577.0': + resolution: {integrity: sha512-ZGHGNRaCtJJmszb9UTnC7izNCtRUttdPlLdMkh41KPS32vfdrBDHs1JrpbZijItRj1xKuOXsiYSXLAaHGcLh8Q==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sts': ^3.598.0 + '@aws-sdk/client-sts': ^3.577.0 - '@aws-sdk/lib-storage@3.608.0': - resolution: {integrity: sha512-A6RXgkXYf+eY2POxi382nhMdo7x7QpVfgeehvOqpK5c7LgXjwsPTfjSPqLV1fIZuPLn3NG6uNd12Gs6x/466tQ==} + '@aws-sdk/lib-storage@3.578.0': + resolution: {integrity: sha512-SluLJrA/fG82UnE83Albh+gv48McmXkz17kmAMhhNswOxqHsklb5Vu5d/G0DUDAQdeC30sS/9Vhu2zAiJokunw==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-s3': ^3.608.0 + '@aws-sdk/client-s3': ^3.577.0 - '@aws-sdk/middleware-bucket-endpoint@3.598.0': - resolution: {integrity: sha512-PM7BcFfGUSkmkT6+LU9TyJiB4S8yI7dfuKQDwK5ZR3P7MKaK4Uj4yyDiv0oe5xvkF6+O2+rShj+eh8YuWkOZ/Q==} + '@aws-sdk/middleware-bucket-endpoint@3.577.0': + resolution: {integrity: sha512-twlkNX2VofM6kHXzDEiJOiYCc9tVABe5cbyxMArRWscIsCWG9mamPhC77ezG4XsN9dFEwVdxEYD5Crpm/5EUiw==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-expect-continue@3.598.0': - resolution: {integrity: sha512-ZuHW18kaeHR8TQyhEOYMr8VwiIh0bMvF7J1OTqXHxDteQIavJWA3CbfZ9sgS4XGtrBZDyHJhjZKeCfLhN2rq3w==} + '@aws-sdk/middleware-expect-continue@3.577.0': + resolution: {integrity: sha512-6dPp8Tv4F0of4un5IAyG6q++GrRrNQQ4P2NAMB1W0VO4JoEu1C8GievbbDLi88TFIFmtKpnHB0ODCzwnoe8JsA==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-flexible-checksums@3.598.0': - resolution: {integrity: sha512-xukAzds0GQXvMEY9G6qt+CzwVzTx8NyKKh04O2Q+nOch6QQ8Rs+2kTRy3Z4wQmXq2pK9hlOWb5nXA7HWpmz6Ng==} + '@aws-sdk/middleware-flexible-checksums@3.577.0': + resolution: {integrity: sha512-IHAUEipIfagjw92LV8SOSBiCF7ZnqfHcw14IkcZW2/mfrCy1Fh/k40MoS/t3Tro2tQ91rgQPwUoSgB/QCi2Org==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-host-header@3.598.0': - resolution: {integrity: sha512-WiaG059YBQwQraNejLIi0gMNkX7dfPZ8hDIhvMr5aVPRbaHH8AYF3iNSsXYCHvA2Cfa1O9haYXsuMF9flXnCmA==} + '@aws-sdk/middleware-host-header@3.577.0': + resolution: {integrity: sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-location-constraint@3.598.0': - resolution: {integrity: sha512-8oybQxN3F1ISOMULk7JKJz5DuAm5hCUcxMW9noWShbxTJuStNvuHf/WLUzXrf8oSITyYzIHPtf8VPlKR7I3orQ==} + '@aws-sdk/middleware-location-constraint@3.577.0': + resolution: {integrity: sha512-DKPTD2D2s+t2QUo/IXYtVa/6Un8GZ+phSTBkyBNx2kfZz4Kwavhl/JJzSqTV3GfCXkVdFu7CrjoX7BZ6qWeTUA==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-logger@3.598.0': - resolution: {integrity: sha512-bxBjf/VYiu3zfu8SYM2S9dQQc3tz5uBAOcPz/Bt8DyyK3GgOpjhschH/2XuUErsoUO1gDJqZSdGOmuHGZQn00Q==} + '@aws-sdk/middleware-logger@3.577.0': + resolution: {integrity: sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-recursion-detection@3.598.0': - resolution: {integrity: sha512-vjT9BeFY9FeN0f8hm2l6F53tI0N5bUq6RcDkQXKNabXBnQxKptJRad6oP2X5y3FoVfBLOuDkQgiC2940GIPxtQ==} + '@aws-sdk/middleware-recursion-detection@3.577.0': + resolution: {integrity: sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-sdk-s3@3.598.0': - resolution: {integrity: sha512-5AGtLAh9wyK6ANPYfaKTqJY1IFJyePIxsEbxa7zS6REheAqyVmgJFaGu3oQ5XlxfGr5Uq59tFTRkyx26G1HkHA==} + '@aws-sdk/middleware-sdk-s3@3.577.0': + resolution: {integrity: sha512-/t8Shvy6lGIRdTEKG6hA8xy+oon/CDF5H8Ksms/cd/uvIy/MYbNjOJ/Arwk8H5W6LB4DP/1O+tOzOpGx1MCufA==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-signing@3.598.0': - resolution: {integrity: sha512-XKb05DYx/aBPqz6iCapsCbIl8aD8EihTuPCs51p75QsVfbQoVr4TlFfIl5AooMSITzojdAQqxt021YtvxjtxIQ==} + '@aws-sdk/middleware-signing@3.577.0': + resolution: {integrity: sha512-QS/dh3+NqZbXtY0j/DZ867ogP413pG5cFGqBy9OeOhDMsolcwLrQbi0S0c621dc1QNq+er9ffaMhZ/aPkyXXIg==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-ssec@3.598.0': - resolution: {integrity: sha512-f0p2xP8IC1uJ5e/tND1l81QxRtRFywEdnbtKCE0H6RSn4UIt2W3Dohe1qQDbnh27okF0PkNW6BJGdSAz3p7qbA==} + '@aws-sdk/middleware-ssec@3.577.0': + resolution: {integrity: sha512-i2BPJR+rp8xmRVIGc0h1kDRFcM2J9GnClqqpc+NLSjmYadlcg4mPklisz9HzwFVcRPJ5XcGf3U4BYs5G8+iTyg==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-user-agent@3.598.0': - resolution: {integrity: sha512-4tjESlHG5B5MdjUaLK7tQs/miUtHbb6deauQx8ryqSBYOhfHVgb1ZnzvQR0bTrhpqUg0WlybSkDaZAICf9xctg==} + '@aws-sdk/middleware-user-agent@3.577.0': + resolution: {integrity: sha512-P55HAXgwmiHHpFx5JEPvOnAbfhN7v6sWv9PBQs+z2tC7QiBcPS0cdJR6PfV7J1n4VPK52/OnrK3l9VxdQ7Ms0g==} engines: {node: '>=16.0.0'} - '@aws-sdk/region-config-resolver@3.598.0': - resolution: {integrity: sha512-oYXhmTokSav4ytmWleCr3rs/1nyvZW/S0tdi6X7u+dLNL5Jee+uMxWGzgOrWK6wrQOzucLVjS4E/wA11Kv2GTw==} + '@aws-sdk/region-config-resolver@3.577.0': + resolution: {integrity: sha512-4ChCFACNwzqx/xjg3zgFcW8Ali6R9C95cFECKWT/7CUM1D0MGvkclSH2cLarmHCmJgU6onKkJroFtWp0kHhgyg==} engines: {node: '>=16.0.0'} - '@aws-sdk/signature-v4-multi-region@3.598.0': - resolution: {integrity: sha512-1r/EyTrO1gSa1FirnR8V7mabr7gk+l+HkyTI0fcTSr8ucB7gmYyW6WjkY8JCz13VYHFK62usCEDS7yoJoJOzTA==} + '@aws-sdk/signature-v4-multi-region@3.577.0': + resolution: {integrity: sha512-mMykGRFBYmlDcMhdbhNM0z1JFUaYYZ8r9WV7Dd0T2PWELv2brSAjDAOBHdJLHObDMYRnM6H0/Y974qTl3icEcQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/token-providers@3.598.0': - resolution: {integrity: sha512-TKY1EVdHVBnZqpyxyTHdpZpa1tUpb6nxVeRNn1zWG8QB5MvH4ALLd/jR+gtmWDNQbIG4cVuBOZFVL8hIYicKTA==} + '@aws-sdk/token-providers@3.577.0': + resolution: {integrity: sha512-0CkIZpcC3DNQJQ1hDjm2bdSy/Xjs7Ny5YvSsacasGOkNfk+FdkiQy6N67bZX3Zbc9KIx+Nz4bu3iDeNSNplnnQ==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sso-oidc': ^3.598.0 + '@aws-sdk/client-sso-oidc': ^3.577.0 - '@aws-sdk/types@3.598.0': - resolution: {integrity: sha512-742uRl6z7u0LFmZwDrFP6r1wlZcgVPw+/TilluDJmCAR8BgRw3IR+743kUXKBGd8QZDRW2n6v/PYsi/AWCDDMQ==} + '@aws-sdk/types@3.577.0': + resolution: {integrity: sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA==} engines: {node: '>=16.0.0'} '@aws-sdk/util-arn-parser@3.568.0': resolution: {integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==} engines: {node: '>=16.0.0'} - '@aws-sdk/util-endpoints@3.598.0': - resolution: {integrity: sha512-Qo9UoiVVZxcOEdiOMZg3xb1mzkTxrhd4qSlg5QQrfWPJVx/QOg+Iy0NtGxPtHtVZNHZxohYwDwV/tfsnDSE2gQ==} + '@aws-sdk/util-endpoints@3.577.0': + resolution: {integrity: sha512-FjuUz1Kdy4Zly2q/c58tpdqHd6z7iOdU/caYzoc8jwgAHBDBbIJNQLCU9hXJnPV2M8pWxQDyIZsoVwtmvErPzw==} engines: {node: '>=16.0.0'} '@aws-sdk/util-locate-window@3.568.0': resolution: {integrity: sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==} engines: {node: '>=16.0.0'} - '@aws-sdk/util-user-agent-browser@3.598.0': - resolution: {integrity: sha512-36Sxo6F+ykElaL1mWzWjlg+1epMpSe8obwhCN1yGE7Js9ywy5U6k6l+A3q3YM9YRbm740sNxncbwLklMvuhTKw==} + '@aws-sdk/util-user-agent-browser@3.577.0': + resolution: {integrity: sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA==} - '@aws-sdk/util-user-agent-node@3.598.0': - resolution: {integrity: sha512-oyWGcOlfTdzkC6SVplyr0AGh54IMrDxbhg5RxJ5P+V4BKfcDoDcZV9xenUk9NsOi9MuUjxMumb9UJGkDhM1m0A==} + '@aws-sdk/util-user-agent-node@3.577.0': + resolution: {integrity: sha512-XqvtFjbSMtycZTWVwDe8DRWovuoMbA54nhUoZwVU6rW9OSD6NZWGR512BUGHFaWzW0Wg8++Dj10FrKTG2XtqfA==} engines: {node: '>=16.0.0'} peerDependencies: aws-crt: '>=1.0.0' @@ -1219,96 +1239,89 @@ packages: aws-crt: optional: true - '@aws-sdk/xml-builder@3.598.0': - resolution: {integrity: sha512-ZIa2RK7CHFTZ4gwK77WRtsZ6vF7xwRXxJ8KQIxK2duhoTVcn0xYxpFLdW9WZZZvdP9GIF3Loqvf8DRdeU5Jc7Q==} + '@aws-sdk/util-utf8-browser@3.259.0': + resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==} + + '@aws-sdk/xml-builder@3.575.0': + resolution: {integrity: sha512-cWgAwmbFYNCFzPwxL705+lWps0F3ZvOckufd2KKoEZUmtpVw9/txUXNrPySUXSmRTSRhoatIMABNfStWR043bQ==} engines: {node: '>=16.0.0'} - '@babel/code-frame@7.24.7': - resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} + '@babel/code-frame@7.23.5': + resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.24.7': - resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==} + '@babel/code-frame@7.24.2': + resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.25.2': - resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==} + '@babel/code-frame@7.24.7': + resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} engines: {node: '>=6.9.0'} - '@babel/core@7.24.7': - resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==} + '@babel/compat-data@7.25.4': + resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==} engines: {node: '>=6.9.0'} '@babel/core@7.25.2': resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==} engines: {node: '>=6.9.0'} - '@babel/generator@7.24.7': - resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==} - engines: {node: '>=6.9.0'} - - '@babel/generator@7.25.0': - resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==} + '@babel/generator@7.25.6': + resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==} engines: {node: '>=6.9.0'} '@babel/helper-annotate-as-pure@7.24.7': resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} engines: {node: '>=6.9.0'} - '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': - resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-compilation-targets@7.24.7': - resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==} + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': + resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} '@babel/helper-compilation-targets@7.25.2': resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==} engines: {node: '>=6.9.0'} - '@babel/helper-create-class-features-plugin@7.24.7': - resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==} + '@babel/helper-create-class-features-plugin@7.23.10': + resolution: {integrity: sha512-2XpP2XhkXzgxecPNEEK8Vz8Asj9aRxt08oKOqtiZoqV2UGZ5T+EkyP9sXQ9nwMxBIG34a7jmasVqoMop7VdPUw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-create-regexp-features-plugin@7.24.7': - resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==} + '@babel/helper-create-regexp-features-plugin@7.22.15': + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-define-polyfill-provider@0.6.2': - resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} + '@babel/helper-define-polyfill-provider@0.5.0': + resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - '@babel/helper-environment-visitor@7.24.7': - resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} + '@babel/helper-environment-visitor@7.22.20': + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} - '@babel/helper-function-name@7.24.7': - resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==} + '@babel/helper-function-name@7.23.0': + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} engines: {node: '>=6.9.0'} - '@babel/helper-hoist-variables@7.24.7': - resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==} + '@babel/helper-hoist-variables@7.22.5': + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} - '@babel/helper-member-expression-to-functions@7.24.7': - resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==} + '@babel/helper-member-expression-to-functions@7.23.0': + resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} engines: {node: '>=6.9.0'} - '@babel/helper-module-imports@7.24.7': - resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} + '@babel/helper-module-imports@7.22.15': + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} - '@babel/helper-module-transforms@7.24.7': - resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==} + '@babel/helper-module-imports@7.24.7': + resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 '@babel/helper-module-transforms@7.25.2': resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==} @@ -1316,26 +1329,22 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-optimise-call-expression@7.24.7': - resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} - engines: {node: '>=6.9.0'} - - '@babel/helper-plugin-utils@7.24.7': - resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==} + '@babel/helper-optimise-call-expression@7.22.5': + resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} '@babel/helper-plugin-utils@7.24.8': resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==} engines: {node: '>=6.9.0'} - '@babel/helper-remap-async-to-generator@7.24.7': - resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==} + '@babel/helper-remap-async-to-generator@7.22.20': + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-replace-supers@7.24.7': - resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==} + '@babel/helper-replace-supers@7.22.20': + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -1344,80 +1353,87 @@ packages: resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} engines: {node: '>=6.9.0'} - '@babel/helper-skip-transparent-expression-wrappers@7.24.7': - resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': + resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} - '@babel/helper-split-export-declaration@7.24.7': - resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} + '@babel/helper-split-export-declaration@7.24.5': + resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==} engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.24.7': - resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==} + '@babel/helper-string-parser@7.23.4': + resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} engines: {node: '>=6.9.0'} '@babel/helper-string-parser@7.24.8': resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.24.7': - resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} + '@babel/helper-validator-identifier@7.22.20': + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-option@7.24.7': - resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==} + '@babel/helper-validator-identifier@7.24.5': + resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.24.7': + resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} engines: {node: '>=6.9.0'} '@babel/helper-validator-option@7.24.8': resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==} engines: {node: '>=6.9.0'} - '@babel/helper-wrap-function@7.24.7': - resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==} + '@babel/helper-wrap-function@7.22.20': + resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.24.7': - resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==} + '@babel/helpers@7.25.6': + resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.25.0': - resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==} + '@babel/highlight@7.23.4': + resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} + engines: {node: '>=6.9.0'} + + '@babel/highlight@7.24.5': + resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==} engines: {node: '>=6.9.0'} '@babel/highlight@7.24.7': resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} engines: {node: '>=6.9.0'} - '@babel/parser@7.24.7': - resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==} + '@babel/parser@7.23.9': + resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==} engines: {node: '>=6.0.0'} hasBin: true - '@babel/parser@7.25.3': - resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==} + '@babel/parser@7.24.5': + resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==} engines: {node: '>=6.0.0'} hasBin: true - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7': - resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/parser@7.25.6': + resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==} + engines: {node: '>=6.0.0'} + hasBin: true - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7': - resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==} + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3': + resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7': - resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==} + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3': + resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7': - resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==} + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7': + resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -1436,16 +1452,9 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-proposal-export-default-from@7.24.7': - resolution: {integrity: sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-logical-assignment-operators@7.20.7': - resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + '@babel/plugin-proposal-export-default-from@7.23.3': + resolution: {integrity: sha512-Q23MpLZfSGZL1kU7fWqV262q65svLSCIP5kZ/JCW/rKTCm/FrLjpvEd2kfUYMVeHh4QhV/xzyoRAHWrAZJrE3Q==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: '@babel/core': ^7.0.0-0 @@ -1511,8 +1520,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-export-default-from@7.24.7': - resolution: {integrity: sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==} + '@babel/plugin-syntax-export-default-from@7.23.3': + resolution: {integrity: sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1522,20 +1531,20 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-flow@7.24.7': - resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==} + '@babel/plugin-syntax-flow@7.23.3': + resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-assertions@7.24.7': - resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==} + '@babel/plugin-syntax-import-assertions@7.23.3': + resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-attributes@7.24.7': - resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==} + '@babel/plugin-syntax-import-attributes@7.23.3': + resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1598,8 +1607,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-typescript@7.24.7': - resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==} + '@babel/plugin-syntax-typescript@7.23.3': + resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1610,248 +1619,248 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-transform-arrow-functions@7.24.7': - resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==} + '@babel/plugin-transform-arrow-functions@7.23.3': + resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-generator-functions@7.24.7': - resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==} + '@babel/plugin-transform-async-generator-functions@7.23.9': + resolution: {integrity: sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-to-generator@7.24.7': - resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==} + '@babel/plugin-transform-async-to-generator@7.23.3': + resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoped-functions@7.24.7': - resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==} + '@babel/plugin-transform-block-scoped-functions@7.23.3': + resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoping@7.24.7': - resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==} + '@babel/plugin-transform-block-scoping@7.23.4': + resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-class-properties@7.24.7': - resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==} + '@babel/plugin-transform-class-properties@7.23.3': + resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-class-static-block@7.24.7': - resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==} + '@babel/plugin-transform-class-static-block@7.23.4': + resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 - '@babel/plugin-transform-classes@7.24.7': - resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==} + '@babel/plugin-transform-classes@7.23.8': + resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-computed-properties@7.24.7': - resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==} + '@babel/plugin-transform-computed-properties@7.23.3': + resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-destructuring@7.24.7': - resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==} + '@babel/plugin-transform-destructuring@7.23.3': + resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-dotall-regex@7.24.7': - resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==} + '@babel/plugin-transform-dotall-regex@7.23.3': + resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-duplicate-keys@7.24.7': - resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==} + '@babel/plugin-transform-duplicate-keys@7.23.3': + resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-dynamic-import@7.24.7': - resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==} + '@babel/plugin-transform-dynamic-import@7.23.4': + resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-exponentiation-operator@7.24.7': - resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==} + '@babel/plugin-transform-exponentiation-operator@7.23.3': + resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-export-namespace-from@7.24.7': - resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==} + '@babel/plugin-transform-export-namespace-from@7.23.4': + resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-flow-strip-types@7.24.7': - resolution: {integrity: sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==} + '@babel/plugin-transform-flow-strip-types@7.23.3': + resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-for-of@7.24.7': - resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==} + '@babel/plugin-transform-for-of@7.23.6': + resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-function-name@7.24.7': - resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==} + '@babel/plugin-transform-function-name@7.23.3': + resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-json-strings@7.24.7': - resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==} + '@babel/plugin-transform-json-strings@7.23.4': + resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-literals@7.24.7': - resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==} + '@babel/plugin-transform-literals@7.23.3': + resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-logical-assignment-operators@7.24.7': - resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==} + '@babel/plugin-transform-logical-assignment-operators@7.23.4': + resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-member-expression-literals@7.24.7': - resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==} + '@babel/plugin-transform-member-expression-literals@7.23.3': + resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-amd@7.24.7': - resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==} + '@babel/plugin-transform-modules-amd@7.23.3': + resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-commonjs@7.24.7': - resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==} + '@babel/plugin-transform-modules-commonjs@7.23.3': + resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-systemjs@7.24.7': - resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==} + '@babel/plugin-transform-modules-systemjs@7.23.9': + resolution: {integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-umd@7.24.7': - resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==} + '@babel/plugin-transform-modules-umd@7.23.3': + resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-named-capturing-groups-regex@7.24.7': - resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==} + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5': + resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-transform-new-target@7.24.7': - resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==} + '@babel/plugin-transform-new-target@7.23.3': + resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-nullish-coalescing-operator@7.24.7': - resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==} + '@babel/plugin-transform-nullish-coalescing-operator@7.23.4': + resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-numeric-separator@7.24.7': - resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==} + '@babel/plugin-transform-numeric-separator@7.23.4': + resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-rest-spread@7.24.7': - resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==} + '@babel/plugin-transform-object-rest-spread@7.23.4': + resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-super@7.24.7': - resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} + '@babel/plugin-transform-object-super@7.23.3': + resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-optional-catch-binding@7.24.7': - resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==} + '@babel/plugin-transform-optional-catch-binding@7.23.4': + resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-optional-chaining@7.24.7': - resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==} + '@babel/plugin-transform-optional-chaining@7.23.4': + resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-parameters@7.24.7': - resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} + '@babel/plugin-transform-parameters@7.23.3': + resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-private-methods@7.24.7': - resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==} + '@babel/plugin-transform-private-methods@7.23.3': + resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-private-property-in-object@7.24.7': - resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==} + '@babel/plugin-transform-private-property-in-object@7.23.4': + resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-property-literals@7.24.7': - resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} + '@babel/plugin-transform-property-literals@7.23.3': + resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-display-name@7.24.7': - resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} + '@babel/plugin-transform-react-display-name@7.23.3': + resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx-self@7.24.7': - resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==} + '@babel/plugin-transform-react-jsx-self@7.23.3': + resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx-source@7.24.7': - resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==} + '@babel/plugin-transform-react-jsx-source@7.23.3': + resolution: {integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1862,92 +1871,92 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-regenerator@7.24.7': - resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==} + '@babel/plugin-transform-regenerator@7.23.3': + resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-reserved-words@7.24.7': - resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==} + '@babel/plugin-transform-reserved-words@7.23.3': + resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-runtime@7.24.7': - resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==} + '@babel/plugin-transform-runtime@7.23.9': + resolution: {integrity: sha512-A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-shorthand-properties@7.24.7': - resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} + '@babel/plugin-transform-shorthand-properties@7.23.3': + resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-spread@7.24.7': - resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} + '@babel/plugin-transform-spread@7.23.3': + resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-sticky-regex@7.24.7': - resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==} + '@babel/plugin-transform-sticky-regex@7.23.3': + resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-template-literals@7.24.7': - resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} + '@babel/plugin-transform-template-literals@7.23.3': + resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typeof-symbol@7.24.7': - resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==} + '@babel/plugin-transform-typeof-symbol@7.23.3': + resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@7.24.7': - resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==} + '@babel/plugin-transform-typescript@7.23.6': + resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-escapes@7.24.7': - resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==} + '@babel/plugin-transform-unicode-escapes@7.23.3': + resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-property-regex@7.24.7': - resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==} + '@babel/plugin-transform-unicode-property-regex@7.23.3': + resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-regex@7.24.7': - resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==} + '@babel/plugin-transform-unicode-regex@7.23.3': + resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-sets-regex@7.24.7': - resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==} + '@babel/plugin-transform-unicode-sets-regex@7.23.3': + resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/preset-env@7.24.7': - resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==} + '@babel/preset-env@7.23.9': + resolution: {integrity: sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/preset-flow@7.24.7': - resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==} + '@babel/preset-flow@7.23.3': + resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1957,14 +1966,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - '@babel/preset-typescript@7.24.7': - resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==} + '@babel/preset-typescript@7.23.3': + resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/register@7.24.6': - resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==} + '@babel/register@7.23.7': + resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1972,32 +1981,24 @@ packages: '@babel/regjsgen@0.8.0': resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - '@babel/runtime@7.24.7': - resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} - engines: {node: '>=6.9.0'} - - '@babel/template@7.24.7': - resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} + '@babel/runtime@7.23.9': + resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==} engines: {node: '>=6.9.0'} '@babel/template@7.25.0': resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.24.7': - resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} - engines: {node: '>=6.9.0'} - - '@babel/traverse@7.25.3': - resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==} + '@babel/traverse@7.25.6': + resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==} engines: {node: '>=6.9.0'} - '@babel/types@7.24.7': - resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} + '@babel/types@7.23.9': + resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==} engines: {node: '>=6.9.0'} - '@babel/types@7.25.2': - resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==} + '@babel/types@7.25.6': + resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==} engines: {node: '>=6.9.0'} '@bcoe/v8-coverage@0.2.3': @@ -2009,51 +2010,51 @@ packages: '@chainsafe/netmask@2.0.0': resolution: {integrity: sha512-I3Z+6SWUoaljh3TBzCnCxjlUyN8tA+NAk5L6m9IxvCf1BENQTePzPMis97CoN/iMW1St3WN+AWCCRp+TTBRiDg==} - '@changesets/apply-release-plan@7.0.4': - resolution: {integrity: sha512-HLFwhKWayKinWAul0Vj+76jVx1Pc2v55MGPVjZ924Y/ROeSsBMFutv9heHmCUj48lJyRfOTJG5+ar+29FUky/A==} + '@changesets/apply-release-plan@7.0.5': + resolution: {integrity: sha512-1cWCk+ZshEkSVEZrm2fSj1Gz8sYvxgUL4Q78+1ZZqeqfuevPTPk033/yUZ3df8BKMohkqqHfzj0HOOrG0KtXTw==} - '@changesets/assemble-release-plan@6.0.3': - resolution: {integrity: sha512-bLNh9/Lgl1VwkjWZTq8JmRqH+hj7/Yzfz0jsQ/zJJ+FTmVqmqPj3szeKOri8O/hEM8JmHW019vh2gTO9iq5Cuw==} + '@changesets/assemble-release-plan@6.0.4': + resolution: {integrity: sha512-nqICnvmrwWj4w2x0fOhVj2QEGdlUuwVAwESrUo5HLzWMI1rE5SWfsr9ln+rDqWB6RQ2ZyaMZHUcU7/IRaUJS+Q==} '@changesets/changelog-git@0.2.0': resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} - '@changesets/cli@2.27.7': - resolution: {integrity: sha512-6lr8JltiiXPIjDeYg4iM2MeePP6VN/JkmqBsVA5XRiy01hGS3y629LtSDvKcycj/w/5Eur1rEwby/MjcYS+e2A==} + '@changesets/cli@2.27.8': + resolution: {integrity: sha512-gZNyh+LdSsI82wBSHLQ3QN5J30P4uHKJ4fXgoGwQxfXwYFTJzDdvIJasZn8rYQtmKhyQuiBj4SSnLuKlxKWq4w==} hasBin: true - '@changesets/config@3.0.2': - resolution: {integrity: sha512-cdEhS4t8woKCX2M8AotcV2BOWnBp09sqICxKapgLHf9m5KdENpWjyrFNMjkLqGJtUys9U+w93OxWT0czorVDfw==} + '@changesets/config@3.0.3': + resolution: {integrity: sha512-vqgQZMyIcuIpw9nqFIpTSNyc/wgm/Lu1zKN5vECy74u95Qx/Wa9g27HdgO4NkVAaq+BGA8wUc/qvbvVNs93n6A==} '@changesets/errors@0.2.0': resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} - '@changesets/get-dependents-graph@2.1.1': - resolution: {integrity: sha512-LRFjjvigBSzfnPU2n/AhFsuWR5DK++1x47aq6qZ8dzYsPtS/I5mNhIGAS68IAxh1xjO9BTtz55FwefhANZ+FCA==} + '@changesets/get-dependents-graph@2.1.2': + resolution: {integrity: sha512-sgcHRkiBY9i4zWYBwlVyAjEM9sAzs4wYVwJUdnbDLnVG3QwAaia1Mk5P8M7kraTOZN+vBET7n8KyB0YXCbFRLQ==} - '@changesets/get-release-plan@4.0.3': - resolution: {integrity: sha512-6PLgvOIwTSdJPTtpdcr3sLtGatT+Jr22+cQwEBJBy6wP0rjB4yJ9lv583J9fVpn1bfQlBkDa8JxbS2g/n9lIyA==} + '@changesets/get-release-plan@4.0.4': + resolution: {integrity: sha512-SicG/S67JmPTrdcc9Vpu0wSQt7IiuN0dc8iR5VScnnTVPfIaLvKmEGRvIaF0kcn8u5ZqLbormZNTO77bCEvyWw==} '@changesets/get-version-range-type@0.4.0': resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - '@changesets/git@3.0.0': - resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} + '@changesets/git@3.0.1': + resolution: {integrity: sha512-pdgHcYBLCPcLd82aRcuO0kxCDbw/yISlOtkmwmE8Odo1L6hSiZrBOsRl84eYG7DRCab/iHnOkWqExqc4wxk2LQ==} - '@changesets/logger@0.1.0': - resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} + '@changesets/logger@0.1.1': + resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==} '@changesets/parse@0.4.0': resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} - '@changesets/pre@2.0.0': - resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} + '@changesets/pre@2.0.1': + resolution: {integrity: sha512-vvBJ/If4jKM4tPz9JdY2kGOgWmCowUYOi5Ycv8dyLnEE8FgpYYUo1mgJZxcdtGGP3aG8rAQulGLyyXGSLkIMTQ==} - '@changesets/read@0.6.0': - resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} + '@changesets/read@0.6.1': + resolution: {integrity: sha512-jYMbyXQk3nwP25nRzQQGa1nKLY0KfoOV7VLgwucI0bUO8t8ZLCr6LZmgjXsiKuRDc+5A6doKPr9w2d+FEJ55zQ==} - '@changesets/should-skip-package@0.1.0': - resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} + '@changesets/should-skip-package@0.1.1': + resolution: {integrity: sha512-H9LjLbF6mMHLtJIc/eHR9Na+MifJ3VxtgP/Y+XLn4BF7tDTEN1HNYtH6QMcjP1uxp9sjaFYmW8xqloaCi/ckTg==} '@changesets/types@4.1.0': resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} @@ -2061,11 +2062,15 @@ packages: '@changesets/types@6.0.0': resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} - '@changesets/write@0.3.1': - resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} + '@changesets/write@0.3.2': + resolution: {integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==} + + '@chromatic-com/storybook@1.3.3': + resolution: {integrity: sha512-1y9r691T5vVGDZ0HY3YrCXUnvtrT2YrhDuvDZSvYSNUVpM/Imz6i1dnNMKb3eoI1qRsH55mI4zCt+Iq94NLedQ==} + engines: {node: '>=16.0.0', yarn: '>=1.22.18'} - '@chromatic-com/storybook@1.6.0': - resolution: {integrity: sha512-6sHj0l194KMBIZ0D5SeJ+Ys+zslehKHcC2d6Hd/YEn4cCl7p9mLuxrZjvf8xharGKy8vf9Q1tKrU2YdldzUBoQ==} + '@chromatic-com/storybook@1.9.0': + resolution: {integrity: sha512-vYQ+TcfktEE3GHnLZXHCzXF/sN9dw+KivH8a5cmPyd9YtQs7fZtHrEgsIjWpYycXiweKMo1Lm1RZsjxk8DH3rA==} engines: {node: '>=16.0.0', yarn: '>=1.22.18'} '@coinbase/wallet-sdk@3.9.1': @@ -2091,8 +2096,8 @@ packages: peerDependencies: postcss-selector-parser: ^6.0.13 - '@csstools/selector-specificity@3.1.1': - resolution: {integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==} + '@csstools/selector-specificity@3.0.2': + resolution: {integrity: sha512-RpHaZ1h9LE7aALeQXmXrJkRG84ZxIsctEN2biEUmFyKpzFM3zZ35eUMcIzZFsw/2olQE6v69+esEqU2f1MKycg==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss-selector-parser: ^6.0.13 @@ -2101,10 +2106,6 @@ packages: resolution: {integrity: sha512-WyOx8cJQ+FQus4Mm4uPIZA64gbk3Wxh0so5Lcii0aJifqwoVOlfFtorjLE0Hen4OYyHZMXDWqMmaQemBhgxFRQ==} engines: {node: '>=14'} - '@discoveryjs/json-ext@0.5.7': - resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} - engines: {node: '>=10.0.0'} - '@emmetio/abbreviation@2.3.3': resolution: {integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==} @@ -2126,14 +2127,63 @@ packages: '@emmetio/stream-reader@2.2.0': resolution: {integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==} - '@emnapi/runtime@1.2.0': - resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==} + '@emnapi/runtime@1.1.1': + resolution: {integrity: sha512-3bfqkzuR1KLx57nZfjr2NLnFOobvyS0aTszaEGCGqmYMVDRaGvgIZbjGSV/MHSSmLgQ/b9JFHQ5xm5WRZYd+XQ==} + + '@emotion/babel-plugin@11.11.0': + resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} + + '@emotion/cache@11.11.0': + resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} + + '@emotion/hash@0.9.1': + resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} + + '@emotion/is-prop-valid@1.2.1': + resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==} + + '@emotion/memoize@0.8.1': + resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} + + '@emotion/react@11.11.3': + resolution: {integrity: sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==} + peerDependencies: + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true + + '@emotion/serialize@1.1.3': + resolution: {integrity: sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==} + + '@emotion/sheet@1.2.2': + resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} + + '@emotion/styled@11.11.0': + resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==} + peerDependencies: + '@emotion/react': ^11.0.0-rc.0 + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true + + '@emotion/unitless@0.8.1': + resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} '@emotion/use-insertion-effect-with-fallbacks@1.0.1': resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} peerDependencies: react: '>=16.8.0' + '@emotion/utils@1.2.1': + resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} + + '@emotion/weak-memoize@0.3.1': + resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} + '@esbuild/aix-ppc64@0.19.12': resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} engines: {node: '>=12'} @@ -2146,6 +2196,12 @@ packages: cpu: [ppc64] os: [aix] + '@esbuild/aix-ppc64@0.21.3': + resolution: {integrity: sha512-yTgnwQpFVYfvvo4SvRFB0SwrW8YjOxEoT7wfMT7Ol5v7v5LDNvSGo67aExmxOb87nQNeWPVvaGBNfQ7BXcrZ9w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + '@esbuild/aix-ppc64@0.21.5': resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} engines: {node: '>=12'} @@ -2170,6 +2226,12 @@ packages: cpu: [arm64] os: [android] + '@esbuild/android-arm64@0.21.3': + resolution: {integrity: sha512-c+ty9necz3zB1Y+d/N+mC6KVVkGUUOcm4ZmT5i/Fk5arOaY3i6CA3P5wo/7+XzV8cb4GrI/Zjp8NuOQ9Lfsosw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + '@esbuild/android-arm64@0.21.5': resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} engines: {node: '>=12'} @@ -2194,6 +2256,12 @@ packages: cpu: [arm] os: [android] + '@esbuild/android-arm@0.21.3': + resolution: {integrity: sha512-bviJOLMgurLJtF1/mAoJLxDZDL6oU5/ztMHnJQRejbJrSc9FFu0QoUoFhvi6qSKJEw9y5oGyvr9fuDtzJ30rNQ==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + '@esbuild/android-arm@0.21.5': resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} engines: {node: '>=12'} @@ -2218,6 +2286,12 @@ packages: cpu: [x64] os: [android] + '@esbuild/android-x64@0.21.3': + resolution: {integrity: sha512-JReHfYCRK3FVX4Ra+y5EBH1b9e16TV2OxrPAvzMsGeES0X2Ndm9ImQRI4Ket757vhc5XBOuGperw63upesclRw==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + '@esbuild/android-x64@0.21.5': resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} engines: {node: '>=12'} @@ -2242,6 +2316,12 @@ packages: cpu: [arm64] os: [darwin] + '@esbuild/darwin-arm64@0.21.3': + resolution: {integrity: sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + '@esbuild/darwin-arm64@0.21.5': resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} engines: {node: '>=12'} @@ -2266,6 +2346,12 @@ packages: cpu: [x64] os: [darwin] + '@esbuild/darwin-x64@0.21.3': + resolution: {integrity: sha512-3m1CEB7F07s19wmaMNI2KANLcnaqryJxO1fXHUV5j1rWn+wMxdUYoPyO2TnAbfRZdi7ADRwJClmOwgT13qlP3Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + '@esbuild/darwin-x64@0.21.5': resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} engines: {node: '>=12'} @@ -2290,6 +2376,12 @@ packages: cpu: [arm64] os: [freebsd] + '@esbuild/freebsd-arm64@0.21.3': + resolution: {integrity: sha512-fsNAAl5pU6wmKHq91cHWQT0Fz0vtyE1JauMzKotrwqIKAswwP5cpHUCxZNSTuA/JlqtScq20/5KZ+TxQdovU/g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + '@esbuild/freebsd-arm64@0.21.5': resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} engines: {node: '>=12'} @@ -2314,6 +2406,12 @@ packages: cpu: [x64] os: [freebsd] + '@esbuild/freebsd-x64@0.21.3': + resolution: {integrity: sha512-tci+UJ4zP5EGF4rp8XlZIdq1q1a/1h9XuronfxTMCNBslpCtmk97Q/5qqy1Mu4zIc0yswN/yP/BLX+NTUC1bXA==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + '@esbuild/freebsd-x64@0.21.5': resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} engines: {node: '>=12'} @@ -2338,6 +2436,12 @@ packages: cpu: [arm64] os: [linux] + '@esbuild/linux-arm64@0.21.3': + resolution: {integrity: sha512-vvG6R5g5ieB4eCJBQevyDMb31LMHthLpXTc2IGkFnPWS/GzIFDnaYFp558O+XybTmYrVjxnryru7QRleJvmZ6Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + '@esbuild/linux-arm64@0.21.5': resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} engines: {node: '>=12'} @@ -2362,6 +2466,12 @@ packages: cpu: [arm] os: [linux] + '@esbuild/linux-arm@0.21.3': + resolution: {integrity: sha512-f6kz2QpSuyHHg01cDawj0vkyMwuIvN62UAguQfnNVzbge2uWLhA7TCXOn83DT0ZvyJmBI943MItgTovUob36SQ==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + '@esbuild/linux-arm@0.21.5': resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} engines: {node: '>=12'} @@ -2386,6 +2496,12 @@ packages: cpu: [ia32] os: [linux] + '@esbuild/linux-ia32@0.21.3': + resolution: {integrity: sha512-HjCWhH7K96Na+66TacDLJmOI9R8iDWDDiqe17C7znGvvE4sW1ECt9ly0AJ3dJH62jHyVqW9xpxZEU1jKdt+29A==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + '@esbuild/linux-ia32@0.21.5': resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} engines: {node: '>=12'} @@ -2410,6 +2526,12 @@ packages: cpu: [loong64] os: [linux] + '@esbuild/linux-loong64@0.21.3': + resolution: {integrity: sha512-BGpimEccmHBZRcAhdlRIxMp7x9PyJxUtj7apL2IuoG9VxvU/l/v1z015nFs7Si7tXUwEsvjc1rOJdZCn4QTU+Q==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + '@esbuild/linux-loong64@0.21.5': resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} engines: {node: '>=12'} @@ -2434,6 +2556,12 @@ packages: cpu: [mips64el] os: [linux] + '@esbuild/linux-mips64el@0.21.3': + resolution: {integrity: sha512-5rMOWkp7FQGtAH3QJddP4w3s47iT20hwftqdm7b+loe95o8JU8ro3qZbhgMRy0VuFU0DizymF1pBKkn3YHWtsw==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + '@esbuild/linux-mips64el@0.21.5': resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} engines: {node: '>=12'} @@ -2458,6 +2586,12 @@ packages: cpu: [ppc64] os: [linux] + '@esbuild/linux-ppc64@0.21.3': + resolution: {integrity: sha512-h0zj1ldel89V5sjPLo5H1SyMzp4VrgN1tPkN29TmjvO1/r0MuMRwJxL8QY05SmfsZRs6TF0c/IDH3u7XYYmbAg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + '@esbuild/linux-ppc64@0.21.5': resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} engines: {node: '>=12'} @@ -2482,6 +2616,12 @@ packages: cpu: [riscv64] os: [linux] + '@esbuild/linux-riscv64@0.21.3': + resolution: {integrity: sha512-dkAKcTsTJ+CRX6bnO17qDJbLoW37npd5gSNtSzjYQr0svghLJYGYB0NF1SNcU1vDcjXLYS5pO4qOW4YbFama4A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + '@esbuild/linux-riscv64@0.21.5': resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} engines: {node: '>=12'} @@ -2506,6 +2646,12 @@ packages: cpu: [s390x] os: [linux] + '@esbuild/linux-s390x@0.21.3': + resolution: {integrity: sha512-vnD1YUkovEdnZWEuMmy2X2JmzsHQqPpZElXx6dxENcIwTu+Cu5ERax6+Ke1QsE814Zf3c6rxCfwQdCTQ7tPuXA==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + '@esbuild/linux-s390x@0.21.5': resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} engines: {node: '>=12'} @@ -2530,6 +2676,12 @@ packages: cpu: [x64] os: [linux] + '@esbuild/linux-x64@0.21.3': + resolution: {integrity: sha512-IOXOIm9WaK7plL2gMhsWJd+l2bfrhfilv0uPTptoRoSb2p09RghhQQp9YY6ZJhk/kqmeRt6siRdMSLLwzuT0KQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + '@esbuild/linux-x64@0.21.5': resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} engines: {node: '>=12'} @@ -2554,6 +2706,12 @@ packages: cpu: [x64] os: [netbsd] + '@esbuild/netbsd-x64@0.21.3': + resolution: {integrity: sha512-uTgCwsvQ5+vCQnqM//EfDSuomo2LhdWhFPS8VL8xKf+PKTCrcT/2kPPoWMTs22aB63MLdGMJiE3f1PHvCDmUOw==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + '@esbuild/netbsd-x64@0.21.5': resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} engines: {node: '>=12'} @@ -2578,6 +2736,12 @@ packages: cpu: [x64] os: [openbsd] + '@esbuild/openbsd-x64@0.21.3': + resolution: {integrity: sha512-vNAkR17Ub2MgEud2Wag/OE4HTSI6zlb291UYzHez/psiKarp0J8PKGDnAhMBcHFoOHMXHfExzmjMojJNbAStrQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + '@esbuild/openbsd-x64@0.21.5': resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} engines: {node: '>=12'} @@ -2602,6 +2766,12 @@ packages: cpu: [x64] os: [sunos] + '@esbuild/sunos-x64@0.21.3': + resolution: {integrity: sha512-W8H9jlGiSBomkgmouaRoTXo49j4w4Kfbl6I1bIdO/vT0+0u4f20ko3ELzV3hPI6XV6JNBVX+8BC+ajHkvffIJA==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + '@esbuild/sunos-x64@0.21.5': resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} engines: {node: '>=12'} @@ -2626,6 +2796,12 @@ packages: cpu: [arm64] os: [win32] + '@esbuild/win32-arm64@0.21.3': + resolution: {integrity: sha512-EjEomwyLSCg8Ag3LDILIqYCZAq/y3diJ04PnqGRgq8/4O3VNlXyMd54j/saShaN4h5o5mivOjAzmU6C3X4v0xw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + '@esbuild/win32-arm64@0.21.5': resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} engines: {node: '>=12'} @@ -2650,6 +2826,12 @@ packages: cpu: [ia32] os: [win32] + '@esbuild/win32-ia32@0.21.3': + resolution: {integrity: sha512-WGiE/GgbsEwR33++5rzjiYsKyHywE8QSZPF7Rfx9EBfK3Qn3xyR6IjyCr5Uk38Kg8fG4/2phN7sXp4NPWd3fcw==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + '@esbuild/win32-ia32@0.21.5': resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} engines: {node: '>=12'} @@ -2674,6 +2856,12 @@ packages: cpu: [x64] os: [win32] + '@esbuild/win32-x64@0.21.3': + resolution: {integrity: sha512-xRxC0jaJWDLYvcUvjQmHCJSfMrgmUuvsoXgDeU/wTorQ1ngDdUBuFtgY3W1Pc5sprGAvZBtWdJX7RPg/iZZUqA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + '@esbuild/win32-x64@0.21.5': resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} engines: {node: '>=12'} @@ -2686,8 +2874,8 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.11.0': - resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} + '@eslint-community/regexpp@4.10.0': + resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} '@eslint/eslintrc@1.4.1': @@ -2698,10 +2886,17 @@ packages: resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@eslint/js@8.57.0': - resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} + '@eslint/js@8.55.0': + resolution: {integrity: sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@eslint/js@8.56.0': + resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@ethereumjs/common@2.6.5': + resolution: {integrity: sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==} + '@ethereumjs/common@3.2.0': resolution: {integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==} @@ -2710,6 +2905,9 @@ packages: engines: {node: '>=14'} hasBin: true + '@ethereumjs/tx@3.5.2': + resolution: {integrity: sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==} + '@ethereumjs/tx@4.2.0': resolution: {integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==} engines: {node: '>=14'} @@ -2820,24 +3018,21 @@ packages: '@expressive-code/plugin-text-markers@0.35.6': resolution: {integrity: sha512-/k9eWVZSCs+uEKHR++22Uu6eIbHWEciVHbIuD8frT8DlqTtHYaaiwHPncO6KFWnGDz5i/gL7oyl6XmOi/E6GVg==} - '@fal-works/esbuild-plugin-global-externals@2.1.2': - resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} - - '@fastify/busboy@2.1.1': - resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} + '@fastify/busboy@2.1.0': + resolution: {integrity: sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==} engines: {node: '>=14'} - '@formatjs/ecma402-abstract@2.0.0': - resolution: {integrity: sha512-rRqXOqdFmk7RYvj4khklyqzcfQl9vEL/usogncBHRZfZBDOwMGuSRNFl02fu5KGHXdbinju+YXyuR+Nk8xlr/g==} + '@formatjs/ecma402-abstract@1.18.2': + resolution: {integrity: sha512-+QoPW4csYALsQIl8GbN14igZzDbuwzcpWrku9nyMXlaqAlwRBgl5V+p0vWMGFqHOw37czNXaP/lEk4wbLgcmtA==} '@formatjs/fast-memoize@2.2.0': resolution: {integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==} - '@formatjs/icu-messageformat-parser@2.7.8': - resolution: {integrity: sha512-nBZJYmhpcSX0WeJ5SDYUkZ42AgR3xiyhNCsQweFx3cz/ULJjym8bHAzWKvG5e2+1XO98dBYC0fWeeAECAVSwLA==} + '@formatjs/icu-messageformat-parser@2.7.6': + resolution: {integrity: sha512-etVau26po9+eewJKYoiBKP6743I1br0/Ie00Pb/S/PtmYfmjTcOn2YCh2yNkSZI12h6Rg+BOgQYborXk46BvkA==} - '@formatjs/icu-skeleton-parser@1.8.2': - resolution: {integrity: sha512-k4ERKgw7aKGWJZgTarIcNEmvyTVD9FYh0mTrrBMHZ1b8hUu6iOJ4SzsZlo3UNAvHYa+PnvntIwRPt1/vy4nA9Q==} + '@formatjs/icu-skeleton-parser@1.8.0': + resolution: {integrity: sha512-QWLAYvM0n8hv7Nq5BEs4LKIjevpVpbGLAJgOaYzg9wABEoX1j0JO1q2/jVkO6CVlq0dbsxZCngS5aXbysYueqA==} '@formatjs/intl-localematcher@0.5.4': resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==} @@ -2848,6 +3043,11 @@ packages: '@hapi/topo@5.1.0': resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + '@humanwhocodes/config-array@0.11.13': + resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} + engines: {node: '>=10.10.0'} + deprecated: Use @eslint/config-array instead + '@humanwhocodes/config-array@0.11.14': resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} engines: {node: '>=10.10.0'} @@ -2870,18 +3070,22 @@ packages: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} deprecated: Use @eslint/object-schema instead - '@humanwhocodes/object-schema@2.0.3': - resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} + '@humanwhocodes/object-schema@2.0.1': + resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} + deprecated: Use @eslint/object-schema instead + + '@humanwhocodes/object-schema@2.0.2': + resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} deprecated: Use @eslint/object-schema instead - '@img/sharp-darwin-arm64@0.33.4': - resolution: {integrity: sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==} + '@img/sharp-darwin-arm64@0.33.3': + resolution: {integrity: sha512-FaNiGX1MrOuJ3hxuNzWgsT/mg5OHG/Izh59WW2mk1UwYHUwtfbhk5QNKYZgxf0pLOhx9ctGiGa2OykD71vOnSw==} engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} cpu: [arm64] os: [darwin] - '@img/sharp-darwin-x64@0.33.4': - resolution: {integrity: sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==} + '@img/sharp-darwin-x64@0.33.3': + resolution: {integrity: sha512-2QeSl7QDK9ru//YBT4sQkoq7L0EAJZA3rtV+v9p8xTKl4U1bUqTIaCnoC7Ctx2kCjQgwFXDasOtPTCT8eCTXvw==} engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} cpu: [x64] os: [darwin] @@ -2934,69 +3138,72 @@ packages: cpu: [x64] os: [linux] - '@img/sharp-linux-arm64@0.33.4': - resolution: {integrity: sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==} + '@img/sharp-linux-arm64@0.33.3': + resolution: {integrity: sha512-Zf+sF1jHZJKA6Gor9hoYG2ljr4wo9cY4twaxgFDvlG0Xz9V7sinsPp8pFd1XtlhTzYo0IhDbl3rK7P6MzHpnYA==} engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} cpu: [arm64] os: [linux] - '@img/sharp-linux-arm@0.33.4': - resolution: {integrity: sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==} + '@img/sharp-linux-arm@0.33.3': + resolution: {integrity: sha512-Q7Ee3fFSC9P7vUSqVEF0zccJsZ8GiiCJYGWDdhEjdlOeS9/jdkyJ6sUSPj+bL8VuOYFSbofrW0t/86ceVhx32w==} engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} cpu: [arm] os: [linux] - '@img/sharp-linux-s390x@0.33.4': - resolution: {integrity: sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==} - engines: {glibc: '>=2.31', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + '@img/sharp-linux-s390x@0.33.3': + resolution: {integrity: sha512-vFk441DKRFepjhTEH20oBlFrHcLjPfI8B0pMIxGm3+yilKyYeHEVvrZhYFdqIseSclIqbQ3SnZMwEMWonY5XFA==} + engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} cpu: [s390x] os: [linux] - '@img/sharp-linux-x64@0.33.4': - resolution: {integrity: sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==} + '@img/sharp-linux-x64@0.33.3': + resolution: {integrity: sha512-Q4I++herIJxJi+qmbySd072oDPRkCg/SClLEIDh5IL9h1zjhqjv82H0Seupd+q2m0yOfD+/fJnjSoDFtKiHu2g==} engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} cpu: [x64] os: [linux] - '@img/sharp-linuxmusl-arm64@0.33.4': - resolution: {integrity: sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==} + '@img/sharp-linuxmusl-arm64@0.33.3': + resolution: {integrity: sha512-qnDccehRDXadhM9PM5hLvcPRYqyFCBN31kq+ErBSZtZlsAc1U4Z85xf/RXv1qolkdu+ibw64fUDaRdktxTNP9A==} engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} cpu: [arm64] os: [linux] - '@img/sharp-linuxmusl-x64@0.33.4': - resolution: {integrity: sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==} + '@img/sharp-linuxmusl-x64@0.33.3': + resolution: {integrity: sha512-Jhchim8kHWIU/GZ+9poHMWRcefeaxFIs9EBqf9KtcC14Ojk6qua7ghKiPs0sbeLbLj/2IGBtDcxHyjCdYWkk2w==} engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} cpu: [x64] os: [linux] - '@img/sharp-wasm32@0.33.4': - resolution: {integrity: sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==} + '@img/sharp-wasm32@0.33.3': + resolution: {integrity: sha512-68zivsdJ0koE96stdUfM+gmyaK/NcoSZK5dV5CAjES0FUXS9lchYt8LAB5rTbM7nlWtxaU/2GON0HVN6/ZYJAQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} cpu: [wasm32] - '@img/sharp-win32-ia32@0.33.4': - resolution: {integrity: sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==} + '@img/sharp-win32-ia32@0.33.3': + resolution: {integrity: sha512-CyimAduT2whQD8ER4Ux7exKrtfoaUiVr7HG0zZvO0XTFn2idUWljjxv58GxNTkFb8/J9Ub9AqITGkJD6ZginxQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} cpu: [ia32] os: [win32] - '@img/sharp-win32-x64@0.33.4': - resolution: {integrity: sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==} + '@img/sharp-win32-x64@0.33.3': + resolution: {integrity: sha512-viT4fUIDKnli3IfOephGnolMzhz5VaTvDRkYqtZxOMIoMQ4MrAziO7pT1nVnOt2FAm7qW5aa+CCc13aEY6Le0g==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} cpu: [x64] os: [win32] - '@ipld/dag-cbor@9.2.1': - resolution: {integrity: sha512-nyY48yE7r3dnJVlxrdaimrbloh4RokQaNRdI//btfTkcTEZbpmSrbYcBQ4VKTf8ZxXAOUJy4VsRpkJo+y9RTnA==} + '@ioredis/commands@1.2.0': + resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} + + '@ipld/dag-cbor@9.2.0': + resolution: {integrity: sha512-N14oMy0q4gM6OuZkIpisKe0JBSjf1Jb39VI+7jMLiWX9124u1Z3Fdj/Tag1NA0cVxxqWDh0CqsjcVfOKtelPDA==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} - '@ipld/dag-json@10.2.2': - resolution: {integrity: sha512-NnU8HdHKwAoGyrW3S09NMa8aZw0tImLRyR64hoafpLpDpAbA9g1+fb24JsdlugbL4sXUQVwDVA+qK4Ud8V83lA==} + '@ipld/dag-json@10.2.0': + resolution: {integrity: sha512-O9YLUrl3d3WbVz7v1WkajFkyfOLEe2Fep+wor4fgVe0ywxzrivrj437NiPcVyB+2EDdFn/Q7tCHFf8YVhDf8ZA==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} - '@ipld/dag-pb@4.1.2': - resolution: {integrity: sha512-BSztO4l3C+ya9HjCaQot26Y4AVsqIKtnn6+23ubc1usucnf6yoTBme18oCCdM6gKBMxuPqju5ye3lh9WEJsdeQ==} + '@ipld/dag-pb@4.1.0': + resolution: {integrity: sha512-LJU451Drqs5zjFm7jI4Hs3kHlilOqkjcSfPiQgVsZnWaYb2C7YdfhnclrVn/X+ucKejlU9BL3+gXFCZUXkMuCg==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} '@isaacs/cliui@8.0.2': @@ -3039,6 +3246,10 @@ packages: resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jridgewell/gen-mapping@0.3.3': + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + engines: {node: '>=6.0.0'} + '@jridgewell/gen-mapping@0.3.5': resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} engines: {node: '>=6.0.0'} @@ -3047,12 +3258,16 @@ packages: resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} + '@jridgewell/set-array@1.1.2': + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + '@jridgewell/set-array@1.2.1': resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} engines: {node: '>=6.0.0'} - '@jridgewell/source-map@0.3.6': - resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + '@jridgewell/source-map@0.3.5': + resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} '@jridgewell/sourcemap-codec@1.4.15': resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} @@ -3092,8 +3307,8 @@ packages: resolution: {integrity: sha512-+c74EVUBTfw2sx1GE/z/IjsYO6dhur+ukF0knAppeZsRQ1Kgg6K5R3eECtT28fC6dBWLjFpAvW/7QGfiDAL4RA==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} - '@libp2p/interface@1.5.0': - resolution: {integrity: sha512-SivVvZ+7r7Vgnv+Y88nGZTpG449PYZAPgfLhVqTXn6T4NAFt47InzC7UMFnVqSQuT21YmI9DoeaVXH73CsHNrg==} + '@libp2p/interface@1.3.0': + resolution: {integrity: sha512-K72Km0Co1Z+pXpggWuoAvUUbvwZYvjCcywrHj2Ym3jt2anTE3hzL4rlZrrkzA0YhNTRFRiZ04dnu6WMXT5/4+A==} '@libp2p/interfaces@3.3.2': resolution: {integrity: sha512-p/M7plbrxLzuQchvNwww1Was7ZeGE2NaOFulMaZBYIihU8z3fhaV+a033OqnC/0NTX/yhfdNOG7znhYq3XoR/g==} @@ -3135,14 +3350,26 @@ packages: resolution: {integrity: sha512-whiUMPlAOrVGmX8aKYVPvlKyG4CpQXiNNyt74vE1xb5sPvmx5oA7B/kOi/JdBvhGQq97U1/AVdXEdk2zkP8qyA==} engines: {node: '>=14.0.0'} - '@metamask/json-rpc-engine@7.3.3': - resolution: {integrity: sha512-dwZPq8wx9yV3IX2caLi9q9xZBw2XeIoYqdyihDDDpuHVCEiqadJLwqM3zy+uwf6F1QYQ65A8aOMQg1Uw7LMLNg==} + '@metamask/json-rpc-engine@7.3.2': + resolution: {integrity: sha512-dVjBPlni4CoiBpESVqrxh6k4OR14w6GRXKSSXHFuITjuhALE42gNCkXTpL4cjNeOBUgTba3eGe5EI8cyc2QLRg==} + engines: {node: '>=16.0.0'} + + '@metamask/json-rpc-engine@8.0.2': + resolution: {integrity: sha512-IoQPmql8q7ABLruW7i4EYVHWUbF74yrp63bRuXV5Zf9BQwcn5H9Ww1eLtROYvI1bUXwOiHZ6qT5CWTrDc/t/AA==} engines: {node: '>=16.0.0'} '@metamask/json-rpc-middleware-stream@6.0.2': resolution: {integrity: sha512-jtyx3PRfc1kqoLpYveIVQNwsxYKefc64/LCl9h9Da1m3nUKEvypbYuXSIwi237qvOjKmNHQKsDOZg6f4uBf62Q==} engines: {node: '>=16.0.0'} + '@metamask/json-rpc-middleware-stream@7.0.2': + resolution: {integrity: sha512-yUdzsJK04Ev98Ck4D7lmRNQ8FPioXYhEUZOMS01LXW8qTvPGiRVXmVltj2p4wrLkh0vW7u6nv0mNl5xzC5Qmfg==} + engines: {node: '>=16.0.0'} + + '@metamask/object-multiplex@1.3.0': + resolution: {integrity: sha512-czcQeVYdSNtabd+NcYQnrM69MciiJyd1qvKH8WM2Id3C0ZiUUX5Xa/MK+/VUk633DBhVOwdNzAKIQ33lGyA+eQ==} + engines: {node: '>=12.0.0'} + '@metamask/object-multiplex@2.0.0': resolution: {integrity: sha512-+ItrieVZie3j2LfYE0QkdW3dsEMfMEp419IGx1zyeLqjRZ14iQUPRO0H6CGgfAAoC0x6k2PfCAGRwJUA9BMrqA==} engines: {node: ^16.20 || ^18.16 || >=20} @@ -3150,21 +3377,44 @@ packages: '@metamask/onboarding@1.0.1': resolution: {integrity: sha512-FqHhAsCI+Vacx2qa5mAFcWNSrTcVGMNjzxVgaX8ECSny/BJ9/vgXP9V7WF/8vb9DltPeQkxr+Fnfmm6GHfmdTQ==} + '@metamask/post-message-stream@6.2.0': + resolution: {integrity: sha512-WunZ0bruClF862mvbKQGETn5SM0XKGmocPMQR1Ew6sYix9/FDzeoZnoI8RkXk01E+70FCdxhTE/r8kk5SFOuTw==} + engines: {node: '>=14.0.0'} + + '@metamask/providers@10.2.1': + resolution: {integrity: sha512-p2TXw2a1Nb8czntDGfeIYQnk4LLVbd5vlcb3GY//lylYlKdSqp+uUTegCvxiFblRDOT68jsY8Ib1VEEzVUOolA==} + engines: {node: '>=14.0.0'} + '@metamask/providers@15.0.0': resolution: {integrity: sha512-FXvL1NQNl6I7fMOJTfQYcBlBZ33vSlm6w80cMpmn8sJh0Lb7wcBpe02UwBsNlARnI+Qsr26XeDs6WHUHQh8CuA==} engines: {node: ^18.18 || >=20} - '@metamask/rpc-errors@6.3.0': - resolution: {integrity: sha512-B1UIG/0xWkaDs/d6xrxsRf7kmFLdk8YE0HUToaFumjwQM36AjBsqEzVyemPTQv0SIrAPFnSmkLt053JOWcu5iw==} + '@metamask/providers@16.1.0': + resolution: {integrity: sha512-znVCvux30+3SaUwcUGaSf+pUckzT5ukPRpcBmy+muBLC0yaWnBcvDqGfcsw6CBIenUdFrVoAFa8B6jsuCY/a+g==} + engines: {node: ^18.18 || >=20} + + '@metamask/rpc-errors@6.1.0': + resolution: {integrity: sha512-JQElKxai26FpDyRKO/yH732wI+BV90i1u6pOuDOpdADSbppB2g1pPh3AGST1zkZqEE9eIKIUw8UdBQ4rp3VTSg==} + engines: {node: '>=16.0.0'} + + '@metamask/rpc-errors@6.2.1': + resolution: {integrity: sha512-VTgWkjWLzb0nupkFl1duQi9Mk8TGT9rsdnQg6DeRrYEFxtFOh0IF8nAwxM/4GWqDl6uIB06lqUBgUrAVWl62Bw==} engines: {node: '>=16.0.0'} '@metamask/safe-event-emitter@2.0.0': resolution: {integrity: sha512-/kSXhY692qiV1MXu6EeOZvg5nECLclxNXcKCxJ3cXQgYuRymRHpdx/t7JXfsK+JLjwA1e1c1/SBrlQYpusC29Q==} + '@metamask/safe-event-emitter@3.0.0': + resolution: {integrity: sha512-j6Z47VOmVyGMlnKXZmL0fyvWfEYtKWCA9yGZkU3FCsGZUT5lHGmvaV9JA5F2Y+010y7+ROtR3WMXIkvl/nVzqQ==} + engines: {node: '>=12.0.0'} + '@metamask/safe-event-emitter@3.1.1': resolution: {integrity: sha512-ihb3B0T/wJm1eUuArYP4lCTSEoZsClHhuWyfo/kMX3m/odpqNcPfsz5O2A3NT7dXCAgWPGDQGPqygCpgeniKMw==} engines: {node: '>=12.0.0'} + '@metamask/sdk-communication-layer@0.14.3': + resolution: {integrity: sha512-yjSbj8y7fFbQXv2HBzUX6D9C8BimkCYP6BDV7hdw53W8b/GlYCtXVxUFajQ9tuO1xPTRjR/xt/dkdr2aCi6WGw==} + '@metamask/sdk-communication-layer@0.20.2': resolution: {integrity: sha512-TN+whYbCClFSkx52Ild1RcjoRyz8YZgwNvZeooIcZIvCfBM6U9W5273KGiY7WLc/oO4KKmFk17d7vMO4gNvhhw==} peerDependencies: @@ -3174,8 +3424,8 @@ packages: readable-stream: ^3.6.2 socket.io-client: ^4.5.1 - '@metamask/sdk-communication-layer@0.26.4': - resolution: {integrity: sha512-+X4GEc5mV1gWK4moSswVlKsUh+RsA48qPlkxBLTUxQODSnyBe0TRMxE6mH+bSrfponnTzvBkGUXyEjvDwDjDHw==} + '@metamask/sdk-communication-layer@0.28.2': + resolution: {integrity: sha512-kGx6qgP482DecPILnIS38bgxIjNransR3/Jh5Lfg9BXJLaXpq/MEGrjHGnJHAqCyfRymnd5cgexHtXJvQtRWQA==} peerDependencies: cross-fetch: ^4.0.0 eciesjs: ^0.3.16 @@ -3183,6 +3433,9 @@ packages: readable-stream: ^3.6.2 socket.io-client: ^4.5.1 + '@metamask/sdk-install-modal-web@0.14.1': + resolution: {integrity: sha512-emT8HKbnfVwGhPxyUfMja6DWzvtJvDEBQxqCVx93H0HsyrrOzOC43iGCAosslw6o5h7gOfRKLqWmK8V7jQAS2Q==} + '@metamask/sdk-install-modal-web@0.20.2': resolution: {integrity: sha512-0QiaZhV15AGdN1zU2jfTI32eC3YkwEpzDfR9+oiZ9bd2G72c6lYBhTsmDGUd01aP6A+bqJR5PjI8Wh2AWtoLeA==} peerDependencies: @@ -3199,10 +3452,10 @@ packages: react-native: optional: true - '@metamask/sdk-install-modal-web@0.26.4': - resolution: {integrity: sha512-7Cx7ZsaExbMwghlRrUWWI0Ksg0m7K60LtMjfuDpjvjWqoZa9MoPxitGDEXNbLaqvKn39ebPvNcPzQ6czA4ilTw==} + '@metamask/sdk-install-modal-web@0.28.1': + resolution: {integrity: sha512-mHkIjWTpYQMPDMtLEEtTVXhae4pEjy7jDBfV7497L0U3VCPQrBl/giZBwA6AgKEX1emYcM2d1WRHWR9N4YhyJA==} peerDependencies: - i18next: 23.2.3 + i18next: 23.11.5 react: ^18.2.0 react-dom: ^18.2.0 react-native: '*' @@ -3214,6 +3467,17 @@ packages: react-native: optional: true + '@metamask/sdk@0.14.3': + resolution: {integrity: sha512-BYLs//nY2wioVSih78gOQI6sLIYY3vWkwVqXGYUgkBV+bi49bv+9S0m+hZ2cwiRaxfMYtKs0KvhAQ8weiYwDrg==} + peerDependencies: + react: ^18.2.0 + react-native: '*' + peerDependenciesMeta: + react: + optional: true + react-native: + optional: true + '@metamask/sdk@0.20.3': resolution: {integrity: sha512-HZ9NwA+LxiXzuy0YWbWsuD4xejQtp85bhcCAf8UgpA/0dOyF3RS4dKDdBBXSyRgk3RWPjeJgHxioaH4CmBmiRA==} peerDependencies: @@ -3225,8 +3489,8 @@ packages: react-dom: optional: true - '@metamask/sdk@0.26.4': - resolution: {integrity: sha512-9Yh41KJkD9RhW0lRijnQzPV0ptblLorLdTsf5GnAl3yE72QIfaPBtsDxzLtX+0QLppiFfj7o8vRBYvBApG9k+Q==} + '@metamask/sdk@0.28.2': + resolution: {integrity: sha512-pylk1uJAZYyO3HcNW/TNfII3+T+Yx6qrFYaC/HmuSIuRJeXsdZuExSbNQ236iQocIy3L7JjI+GQKbv3TbN+HQQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -3236,77 +3500,73 @@ packages: react-dom: optional: true - '@metamask/superstruct@3.1.0': - resolution: {integrity: sha512-N08M56HdOgBfRKkrgCMZvQppkZGcArEop3kixNEtVbJKm6P9Cfg0YkI6X0s1g78sNrj2fWUwvJADdZuzJgFttA==} - engines: {node: '>=16.0.0'} - '@metamask/utils@5.0.2': resolution: {integrity: sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==} engines: {node: '>=14.0.0'} - '@metamask/utils@8.5.0': - resolution: {integrity: sha512-I6bkduevXb72TIM9q2LRO63JSsF9EXduh3sBr9oybNX2hNNpr/j1tEjXrsG0Uabm4MJ1xkGAQEMwifvKZIkyxQ==} + '@metamask/utils@8.3.0': + resolution: {integrity: sha512-WFVcMPEkKKRCJ8DDkZUTVbLlpwgRn98F4VM/WzN89HM8PmHMnCyk/oG0AmK/seOxtik7uC7Bbi2YBC5Z5XB2zw==} engines: {node: '>=16.0.0'} - '@moralisweb3/api-utils@2.26.7': - resolution: {integrity: sha512-+CGUNNYgynrjRwkL1/+HeGawhz0JCRh1Zeugx4UfDx4ULI7gLFxrAQqzN7UaMTM5Ftw7jBG4k3bc7mvpJfuv3g==} + '@moralisweb3/api-utils@2.26.2': + resolution: {integrity: sha512-2HQdwRzil5AyIZID+YFk3XX6QMkdOVClMgrDtsEvZgKLUa5OXSYasSUymfSf6q8FsKJGkHK9kuqoS2dZM4aBvA==} - '@moralisweb3/aptos-api@2.26.7': - resolution: {integrity: sha512-YNy/qLAHXz9KGOAiQVMzKJqAyGCxdnyvdR84/nwtU2PXHTydMxoxnL7EVL+HnpK3bjq5nXLMxofXYHoAXbdz3Q==} + '@moralisweb3/aptos-api@2.26.2': + resolution: {integrity: sha512-3VXT4Q9SGE58UnX6UTrU6BExeBxkvDKfVjVd8AR6KlMcK5C6EaON3dlSfdyAqKAHv5rySXnXxZyG7EHURIzW2g==} - '@moralisweb3/auth@2.26.7': - resolution: {integrity: sha512-PdJzc2j4zxzwR5fzlHRNqmuhzJvD1E6ZKJPMOqiOPF4zGbVM3NbONdx4bR7W6kRQciXZzeO5oyW9/N9PF76jgw==} + '@moralisweb3/auth@2.26.2': + resolution: {integrity: sha512-29qr2jA+jsFup42vghZilmozuwV9/PCW88Or4v9k/XczFX80563ESpjJMXjgSZL3J7XspMt6YzpdqztDpvmyjA==} - '@moralisweb3/common-aptos-utils@2.26.7': - resolution: {integrity: sha512-hCGawLqv2J1X83RVNqHifh0E0NdezdOGs93KQa2vlkvj1OHPgKeHlBX8gNZ+Fx6cGyWyK2dU3AbFCJ4hkkmNYA==} + '@moralisweb3/common-aptos-utils@2.26.2': + resolution: {integrity: sha512-+8m/953/0zmio1cHREQAvVouoirPMFWr//gy34jYMKJevwkYcDG0IhzHQ7cXEHCMNRPUYtV3OD7JodL6zMRLeQ==} - '@moralisweb3/common-auth-utils@2.26.7': - resolution: {integrity: sha512-rANpdno9SbmW0GQ4uOAFJj4TbEyOIiWmzzgY9Jcd4ocjYH4Z3WrBl85vblce8EXoPpxPvRk3Xv6rQFCt17Dw8w==} + '@moralisweb3/common-auth-utils@2.26.2': + resolution: {integrity: sha512-Cz526qRzMBBb5ZH/2o+J6p+bXVEL4gh5VaqDVRXODdCu81VhT+xdm2f2lNGZ4lhaFXoxYXAmUD446KM7hP+ZUw==} - '@moralisweb3/common-core@2.26.7': - resolution: {integrity: sha512-6jRoS8hUAwcRx8xA7R5YlCrkHOIfX01iqdDn2I04lV/VH4bfKBtiOgBSMrc+Ucgtn44seaOVOb4iCSE5EP7SvQ==} + '@moralisweb3/common-core@2.26.2': + resolution: {integrity: sha512-gvisSn6kpvZGjzC5HwYeYlnlQk9wM3PMRUamtH5H1iCouQz6M8WhbZ3a9O8ldcjX8SLnxdz8w0Z479xTFIVoqQ==} - '@moralisweb3/common-evm-utils@2.26.7': - resolution: {integrity: sha512-hnoq1pil07dnxpgvBrKDPqsDYZY+2MRBwFINx7KgRMK6WmsOfaaTl6FzT2ruFSbX02fFZMrT0TG5qnx6U3FM5g==} + '@moralisweb3/common-evm-utils@2.26.2': + resolution: {integrity: sha512-ZqzCPPTvurXtNi+DuyP6JsAzbxp4KkrsaMQzAvBPGEkIjIGxswDt47NVn6vzKLWqYk/C+IK5t/hBVBla9BfAnw==} - '@moralisweb3/common-sol-utils@2.26.7': - resolution: {integrity: sha512-egTzMx8ByIGEXjpC43iN9+q4BMv/G1EO7mLn5drAn32P1voC39TAA26MnrlFY4y2XREU/Imc737OIhPATrGD4A==} + '@moralisweb3/common-sol-utils@2.26.2': + resolution: {integrity: sha512-r8oxkTQfduIUNZ+/scjed6cphv8c4IPtdgarUrzz/cS2y/VcaXjDweLQsyFfMIOk4Fa0DTXaabzd8to5XNz2FQ==} - '@moralisweb3/common-streams-utils@2.26.7': - resolution: {integrity: sha512-FrwgSC8Y2Rp2RAq7nj4/LjIAk+RVrna5Yin4843plrvvi0WXZCxAHZBfZuHz56qJkQVsmdYgBevvCxipct1nTA==} + '@moralisweb3/common-streams-utils@2.26.2': + resolution: {integrity: sha512-bhNgr0G3daG3n0qaB4lQ0/qA63kG2Ich3Zju3dLH8p9KdLeMvFAQIZzlx1aT0Ij7laaoqfnv2Pb0GQ1DTkvimQ==} - '@moralisweb3/evm-api@2.26.7': - resolution: {integrity: sha512-eFcSnyeyBjrgX/1hjcDZ3BDaC3B7N6w+wRRQi5FSbp4tadh0LAd+zlUVwNhr0UsKUoT6rZRY+pDhHXM4HDHeEg==} + '@moralisweb3/evm-api@2.26.2': + resolution: {integrity: sha512-ageSyclGqHh/X6Wr1X1OHiCTBJcvhF1af4DvTe8xF1xnLqYtPk/TY3o2DmW//0bR6lQdebySbc+UEufld5uUpg==} - '@moralisweb3/sol-api@2.26.7': - resolution: {integrity: sha512-7MMi52WeCyRKhT6KKRZa/k62fPuf6fx2waA+Jc5jo8+nDvn5wbqpl7KWx338rqT3C7M9xzhT1HfsCJ/TOD6jUw==} + '@moralisweb3/sol-api@2.26.2': + resolution: {integrity: sha512-3fLnMGeuD/4EV6g7Qw6xtkyRh7RXxcIz1eTNZsph1NHQtXMTi9oQgSitTwmWcAHNzKQBXn4zoz5fx2yrIBWPIw==} '@moralisweb3/streams-typings@1.0.7': resolution: {integrity: sha512-ShbVqil0KLOTyTjO6z9JewPcVVE3S6kzkQFnW2flGBRsGdKucpkUdOx1HijOLoaikz/9gH92n+lzTvRFIj0AoA==} - '@moralisweb3/streams@2.26.7': - resolution: {integrity: sha512-xrLEuXL02GuK6Lio96wpDyPQUhFgBS8CHRq5BDhCXzXr93yyiXAt6P28mq/mUGR/uABSjutilfTaV2MyhwFkng==} + '@moralisweb3/streams@2.26.2': + resolution: {integrity: sha512-PZ8aVE7S/n5MeOTLTxYff28UfNd3qv2AmE31saRPdGMnUTj7UgSiwqGQNt3ZYS0Gh1RjzvshELn9dRll8VrzYg==} - '@motionone/animation@10.18.0': - resolution: {integrity: sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==} + '@motionone/animation@10.16.3': + resolution: {integrity: sha512-QUGWpLbMFLhyqKlngjZhjtxM8IqiJQjLK0DF+XOF6od9nhSvlaeEpOY/UMCRVcZn/9Tr2rZO22EkuCIjYdI74g==} - '@motionone/dom@10.18.0': - resolution: {integrity: sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==} + '@motionone/dom@10.16.4': + resolution: {integrity: sha512-HPHlVo/030qpRj9R8fgY50KTN4Ko30moWRTA3L3imrsRBmob93cTYmodln49HYFbQm01lFF7X523OkKY0DX6UA==} - '@motionone/easing@10.18.0': - resolution: {integrity: sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==} + '@motionone/easing@10.16.3': + resolution: {integrity: sha512-HWTMZbTmZojzwEuKT/xCdvoMPXjYSyQvuVM6jmM0yoGU6BWzsmYMeB4bn38UFf618fJCNtP9XeC/zxtKWfbr0w==} - '@motionone/generators@10.18.0': - resolution: {integrity: sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==} + '@motionone/generators@10.16.4': + resolution: {integrity: sha512-geFZ3w0Rm0ZXXpctWsSf3REGywmLLujEjxPYpBR0j+ymYwof0xbV6S5kGqqsDKgyWKVWpUInqQYvQfL6fRbXeg==} '@motionone/svelte@10.16.4': resolution: {integrity: sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==} - '@motionone/types@10.17.1': - resolution: {integrity: sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==} + '@motionone/types@10.16.3': + resolution: {integrity: sha512-W4jkEGFifDq73DlaZs3HUfamV2t1wM35zN/zX7Q79LfZ2sc6C0R1baUHZmqc/K5F3vSw3PavgQ6HyHLd/MXcWg==} - '@motionone/utils@10.18.0': - resolution: {integrity: sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==} + '@motionone/utils@10.16.3': + resolution: {integrity: sha512-WNWDksJIxQkaI9p9Z9z0+K27xdqISGNFy1SsWVGaiedTHq0iaT6iZujby8fT/ZnZxj1EOaxJtSfUPCFNU5CRoA==} '@motionone/vue@10.16.4': resolution: {integrity: sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==} @@ -3322,21 +3582,18 @@ packages: resolution: {integrity: sha512-doST0+aB7/3dGK9+U5y3mtF3jq85KGbke1QiH0KE1F5mGQ9y56mFebTeu2D9FNOm+OT6UHb8Ss8vbSnpGjeLNw==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} - '@multiformats/multiaddr@12.3.0': - resolution: {integrity: sha512-JQ8Gc/jgucqqvEaDTFN/AvxlYDHEE7lgEWLMYW7hKZkWggER+GvG/tVxUgUxIP8M0vFpvEHKKHE0lKzyMsgi8Q==} - - '@ndelangen/get-tarball@3.0.9': - resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} + '@multiformats/multiaddr@12.2.1': + resolution: {integrity: sha512-UwjoArBbv64FlaetV4DDwh+PUMfzXUBltxQwdh+uTYnGFzVa8ZfJsn1vt1RJlJ6+Xtrm3RMekF/B+K338i2L5Q==} '@noble/curves@1.2.0': resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==} + '@noble/curves@1.3.0': + resolution: {integrity: sha512-t01iSXPuN+Eqzb4eBX0S5oubSqXbK/xXa1Ne18Hj8f9pStxztHCE2gfboSp/dZRLSqfuLpRK2nDXDK+W9puocA==} + '@noble/curves@1.4.0': resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==} - '@noble/curves@1.4.2': - resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} - '@noble/hashes@1.2.0': resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==} @@ -3344,10 +3601,18 @@ packages: resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==} engines: {node: '>= 16'} + '@noble/hashes@1.3.3': + resolution: {integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==} + engines: {node: '>= 16'} + '@noble/hashes@1.4.0': resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} engines: {node: '>= 16'} + '@noble/hashes@1.5.0': + resolution: {integrity: sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==} + engines: {node: ^14.21.3 || >=16} + '@noble/secp256k1@1.7.1': resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} @@ -3377,9 +3642,57 @@ packages: '@openzeppelin/contracts@5.0.2': resolution: {integrity: sha512-ytPc6eLGcHHnapAZ9S+5qsdomhjo6QBHTDRRBFfTxXIpsicMhVPouPgmUPebZZZGX7vt9USA+Z+0M0dSVtSUEA==} + '@openzeppelin/defender-as-code@3.0.1': + resolution: {integrity: sha512-AeGMBk81Bak6B4u3pXjO1aOrIbJqrE6gZJqTJiBRGzKRGWxqQycriojZ3/lns/DcrNElA2BBHD0ONESrpMbZAg==} + + '@openzeppelin/defender-sdk-account-client@1.14.4': + resolution: {integrity: sha512-SxV4oTofO/xf1IcNJ5Dcc6XdXrxmu2jNPIeOx6GhdwVmO2LDVgi/9pAwXNlW1ihZ4wkJf/BSz3JsRJCgrwkadQ==} + + '@openzeppelin/defender-sdk-action-client@1.14.4': + resolution: {integrity: sha512-YoRW3ZST1YCGkBIPtzJNPR0ajK9H0cxhT+evbRX9hgiUNJTgTDJeKGX+qOKOMjKOPXikiYUc2TpmKwP1I2tP5A==} + hasBin: true + + '@openzeppelin/defender-sdk-base-client@1.14.4': + resolution: {integrity: sha512-tOePVQLKpqfGQ1GMzHvSBNd2psPYd86LDNpvdl5gjD0Y2kW/zNh5qBXy29RraGtk/qc8zs9hzS5pAOh0vhGkGQ==} + + '@openzeppelin/defender-sdk-deploy-client@1.14.4': + resolution: {integrity: sha512-+diSoz1zid37LMsY2RDxI+uAsYx9Eryg8Vz+yfvuyd56fXrzjQEln7BBtYQw+2zp9yvyAByOL5XSQdrQga9OBQ==} + + '@openzeppelin/defender-sdk-key-value-store-client@1.14.4': + resolution: {integrity: sha512-8InEiGeUpahKuWTgFWUyS5DS9HkXeHWMW+yxolGwxCy+OIGEPfxg/oMBXC2UzGn3BfIvWic/CLspFzuWIlarEQ==} + + '@openzeppelin/defender-sdk-monitor-client@1.14.4': + resolution: {integrity: sha512-PSesKNicY37LiHD2EVsyZXQrHRZsPYaVhUuMdqfNoJZexPZfnhv7c2A481tt+hTwAccJguQF69NLqylpdgtpFQ==} + + '@openzeppelin/defender-sdk-network-client@1.14.4': + resolution: {integrity: sha512-OS0H5b0vgYacJcwkvUFJUaRuyUaXhIRl916W5xLvGia5H6i/qn3dP8MZ7oLcPwKc8jB+ucRytO4H/AHsea0aVA==} + + '@openzeppelin/defender-sdk-notification-channel-client@1.14.4': + resolution: {integrity: sha512-xCMUe4pseRA+tQMrd6PDoZ4aToDi0LPrVAlBXFDFxCZ6/TzcsVA/PgfM4Hy6R+9vF+S5gMFGuJkCpDtlcYfo5A==} + + '@openzeppelin/defender-sdk-proposal-client@1.14.4': + resolution: {integrity: sha512-xVI5A6wJb/XfqVAEkSsINrgGkNznw0eZL7CnzX1OUnZ4irrlaD4HpG/CkFgVWLx8tRIMFlUtb3as3KMc/sO8eg==} + + '@openzeppelin/defender-sdk-relay-client@1.14.4': + resolution: {integrity: sha512-L+vPUeeg36muOy1Oh8wqNEJ8qXXQrFytYZerPS9N/Vf7TQBZoKUkuVq69dw7+XYq/ouqbppvAvUtV9SnyDkYpQ==} + + '@openzeppelin/defender-sdk-relay-signer-client@1.14.4': + resolution: {integrity: sha512-zjVhor/LEHYG6Gf+GEFTrwsuGZjVbzqTqQew4X622FY38P13PpcEIdXDgbokqdlX8zpECcggD2kmTTDgVWRqjA==} + peerDependencies: + web3: ^1.10.0 + web3-core: ^1.10.4 + web3-core-helpers: ^1.10.0 + web3-utils: ^1.10.0 + + '@openzeppelin/defender-sdk@1.14.4': + resolution: {integrity: sha512-QFXvqeLzfFxyRq5bw+7h2pq65pztNKBUy0vtizdSeQMA6MZ5wqDyTu/8bziYdQH+BmKzMqYBgErJAmic2XCzZQ==} + '@openzeppelin/merkle-tree@1.0.6': resolution: {integrity: sha512-cGWOb2WBWbJhqvupzxjnKAwGLxxAEYPg51sk76yZ5nVe5D03mw7Vx5yo8llaIEqYhP5O39M8QlrNWclgLfKVrA==} + '@oslojs/encoding@0.4.1': + resolution: {integrity: sha512-hkjo6MuIK/kQR5CrGNdAPZhS01ZCXuWDRJ187zh6qqF2+yMHZpD9fAYpX8q2bOO6Ryhl3XpCT6kUX76N8hhm4Q==} + '@pagefind/darwin-arm64@1.1.0': resolution: {integrity: sha512-SLsXNLtSilGZjvqis8sX42fBWsWAVkcDh1oerxwqbac84HbiwxpxOC2jm8hRwcR0Z55HPZPWO77XeRix/8GwTg==} cpu: [arm64] @@ -3408,99 +3721,99 @@ packages: cpu: [x64] os: [win32] - '@parcel/watcher-android-arm64@2.4.1': - resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==} + '@parcel/watcher-android-arm64@2.4.0': + resolution: {integrity: sha512-+fPtO/GsbYX1LJnCYCaDVT3EOBjvSFdQN9Mrzh9zWAOOfvidPWyScTrHIZHHfJBvlHzNA0Gy0U3NXFA/M7PHUA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [android] - '@parcel/watcher-darwin-arm64@2.4.1': - resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==} + '@parcel/watcher-darwin-arm64@2.4.0': + resolution: {integrity: sha512-T/At5pansFuQ8VJLRx0C6C87cgfqIYhW2N/kBfLCUvDhCah0EnLLwaD/6MW3ux+rpgkpQAnMELOCTKlbwncwiA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [darwin] - '@parcel/watcher-darwin-x64@2.4.1': - resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==} + '@parcel/watcher-darwin-x64@2.4.0': + resolution: {integrity: sha512-vZMv9jl+szz5YLsSqEGCMSllBl1gU1snfbRL5ysJU03MEa6gkVy9OMcvXV1j4g0++jHEcvzhs3Z3LpeEbVmY6Q==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [darwin] - '@parcel/watcher-freebsd-x64@2.4.1': - resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==} + '@parcel/watcher-freebsd-x64@2.4.0': + resolution: {integrity: sha512-dHTRMIplPDT1M0+BkXjtMN+qLtqq24sLDUhmU+UxxLP2TEY2k8GIoqIJiVrGWGomdWsy5IO27aDV1vWyQ6gfHA==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [freebsd] - '@parcel/watcher-linux-arm-glibc@2.4.1': - resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==} + '@parcel/watcher-linux-arm-glibc@2.4.0': + resolution: {integrity: sha512-9NQXD+qk46RwATNC3/UB7HWurscY18CnAPMTFcI9Y8CTbtm63/eex1SNt+BHFinEQuLBjaZwR2Lp+n7pmEJPpQ==} engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] - '@parcel/watcher-linux-arm64-glibc@2.4.1': - resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} + '@parcel/watcher-linux-arm64-glibc@2.4.0': + resolution: {integrity: sha512-QuJTAQdsd7PFW9jNGaV9Pw+ZMWV9wKThEzzlY3Lhnnwy7iW23qtQFPql8iEaSFMCVI5StNNmONUopk+MFKpiKg==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] - '@parcel/watcher-linux-arm64-musl@2.4.1': - resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} + '@parcel/watcher-linux-arm64-musl@2.4.0': + resolution: {integrity: sha512-oyN+uA9xcTDo/45bwsd6TFHa7Lc7hKujyMlvwrCLvSckvWogndCEoVYFNfZ6JJ2KNL/6fFiGPcbjp8jJmEh5Ng==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] - '@parcel/watcher-linux-x64-glibc@2.4.1': - resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} + '@parcel/watcher-linux-x64-glibc@2.4.0': + resolution: {integrity: sha512-KphV8awJmxU3q52JQvJot0QMu07CIyEjV+2Tb2ZtbucEgqyRcxOBDMsqp1JNq5nuDXtcCC0uHQICeiEz38dPBQ==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] - '@parcel/watcher-linux-x64-musl@2.4.1': - resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} + '@parcel/watcher-linux-x64-musl@2.4.0': + resolution: {integrity: sha512-7jzcOonpXNWcSijPpKD5IbC6xC7yTibjJw9jviVzZostYLGxbz8LDJLUnLzLzhASPlPGgpeKLtFUMjAAzM+gSA==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] - '@parcel/watcher-wasm@2.4.1': - resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==} + '@parcel/watcher-wasm@2.4.0': + resolution: {integrity: sha512-MNgQ4WCbBybqQ97KwR/hqJGYTg3+s8qHpgIyFWB2qJOBvoJWbXuJGmm4ZkPLq2bMaANqCZqrXwmKYagZTkMKZA==} engines: {node: '>= 10.0.0'} bundledDependencies: - napi-wasm - '@parcel/watcher-win32-arm64@2.4.1': - resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==} + '@parcel/watcher-win32-arm64@2.4.0': + resolution: {integrity: sha512-NOej2lqlq8bQNYhUMnOD0nwvNql8ToQF+1Zhi9ULZoG+XTtJ9hNnCFfyICxoZLXor4bBPTOnzs/aVVoefYnjIg==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [win32] - '@parcel/watcher-win32-ia32@2.4.1': - resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==} + '@parcel/watcher-win32-ia32@2.4.0': + resolution: {integrity: sha512-IO/nM+K2YD/iwjWAfHFMBPz4Zqn6qBDqZxY4j2n9s+4+OuTSRM/y/irksnuqcspom5DjkSeF9d0YbO+qpys+JA==} engines: {node: '>= 10.0.0'} cpu: [ia32] os: [win32] - '@parcel/watcher-win32-x64@2.4.1': - resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==} + '@parcel/watcher-win32-x64@2.4.0': + resolution: {integrity: sha512-pAUyUVjfFjWaf/pShmJpJmNxZhbMvJASUpdes9jL6bTEJ+gDxPRSpXTIemNyNsb9AtbiGXs9XduP1reThmd+dA==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [win32] - '@parcel/watcher@2.4.1': - resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==} + '@parcel/watcher@2.4.0': + resolution: {integrity: sha512-XJLGVL0DEclX5pcWa2N9SX1jCGTDd8l972biNooLFtjneuGqodupPQh6XseXIBBeVIMaaJ7bTcs3qGvXwsp4vg==} engines: {node: '>= 10.0.0'} '@pkgjs/parseargs@0.11.0': resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} - '@pkgr/core@0.1.1': - resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} + '@pkgr/utils@2.4.2': + resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - '@playwright/test@1.45.0': - resolution: {integrity: sha512-TVYsfMlGAaxeUllNkywbwek67Ncf8FRGn8ZlRdO291OL3NjG9oMbfVhyP82HQF0CZLMrYsvesqoUekxdWuF9Qw==} - engines: {node: '>=18'} + '@playwright/test@1.43.1': + resolution: {integrity: sha512-HgtQzFgNEEo4TE22K/X7sYTYNqEMMTZmFS8kTq6m8hXj+m1D8TgwgIbumHddJa9h4yl4GkKb8/bgAl2+g7eDgA==} + engines: {node: '>=16'} hasBin: true '@pnpm/config.env-replace@1.1.0': @@ -3515,8 +3828,8 @@ packages: resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==} engines: {node: '>=12'} - '@polka/url@1.0.0-next.25': - resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} + '@polka/url@1.0.0-next.24': + resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==} '@protobufjs/aspromise@1.1.2': resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} @@ -3548,265 +3861,103 @@ packages: '@protobufjs/utf8@1.1.0': resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} - '@radix-ui/primitive@1.1.0': - resolution: {integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==} - - '@radix-ui/react-compose-refs@1.1.0': - resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==} + '@react-native-async-storage/async-storage@1.22.0': + resolution: {integrity: sha512-b5KD010iiZnot86RbAaHpLuHwmPW2qA3SSN/OSZhd1kBoINEQEVBuv+uFtcaTxAhX27bT0wd13GOb2IOSDUXSA==} peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + react-native: ^0.0.0-0 || >=0.60 <1.0 - '@radix-ui/react-context@1.1.0': - resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true + '@react-native-community/cli-clean@12.3.2': + resolution: {integrity: sha512-90k2hCX0ddSFPT7EN7h5SZj0XZPXP0+y/++v262hssoey3nhurwF57NGWN0XAR0o9BSW7+mBfeInfabzDraO6A==} - '@radix-ui/react-dialog@1.1.1': - resolution: {integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-dismissable-layer@1.1.0': - resolution: {integrity: sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-focus-guards@1.1.0': - resolution: {integrity: sha512-w6XZNUPVv6xCpZUqb/yN9DL6auvpGX3C/ee6Hdi16v2UUy25HV2Q5bcflsiDyT/g5RwbPQ/GIT1vLkeRb+ITBw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-focus-scope@1.1.0': - resolution: {integrity: sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-id@1.1.0': - resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-portal@1.1.1': - resolution: {integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-presence@1.1.0': - resolution: {integrity: sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-primitive@2.0.0': - resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - - '@radix-ui/react-slot@1.1.0': - resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-use-callback-ref@1.1.0': - resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-use-controllable-state@1.1.0': - resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-use-escape-keydown@1.1.0': - resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - - '@radix-ui/react-use-layout-effect@1.1.0': - resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==} - peerDependencies: - '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - - '@react-native-community/cli-clean@13.6.9': - resolution: {integrity: sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA==} - - '@react-native-community/cli-config@13.6.9': - resolution: {integrity: sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg==} + '@react-native-community/cli-config@12.3.2': + resolution: {integrity: sha512-UUCzDjQgvAVL/57rL7eOuFUhd+d+6qfM7V8uOegQFeFEmSmvUUDLYoXpBa5vAK9JgQtSqMBJ1Shmwao+/oElxQ==} - '@react-native-community/cli-debugger-ui@13.6.9': - resolution: {integrity: sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw==} + '@react-native-community/cli-debugger-ui@12.3.2': + resolution: {integrity: sha512-nSWQUL+51J682DlfcC1bjkUbQbGvHCC25jpqTwHIjmmVjYCX1uHuhPSqQKgPNdvtfOkrkACxczd7kVMmetxY2Q==} - '@react-native-community/cli-doctor@13.6.9': - resolution: {integrity: sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A==} + '@react-native-community/cli-doctor@12.3.2': + resolution: {integrity: sha512-GrAabdY4qtBX49knHFvEAdLtCjkmndjTeqhYO6BhsbAeKOtspcLT/0WRgdLIaKODRa61ADNB3K5Zm4dU0QrZOg==} - '@react-native-community/cli-hermes@13.6.9': - resolution: {integrity: sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA==} + '@react-native-community/cli-hermes@12.3.2': + resolution: {integrity: sha512-SL6F9O8ghp4ESBFH2YAPLtIN39jdnvGBKnK4FGKpDCjtB3DnUmDsGFlH46S+GGt5M6VzfG2eeKEOKf3pZ6jUzA==} - '@react-native-community/cli-platform-android@13.6.9': - resolution: {integrity: sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw==} + '@react-native-community/cli-platform-android@12.3.2': + resolution: {integrity: sha512-MZ5nO8yi/N+Fj2i9BJcJ9C/ez+9/Ir7lQt49DWRo9YDmzye66mYLr/P2l/qxsixllbbDi7BXrlLpxaEhMrDopg==} - '@react-native-community/cli-platform-apple@13.6.9': - resolution: {integrity: sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA==} + '@react-native-community/cli-platform-ios@12.3.2': + resolution: {integrity: sha512-OcWEAbkev1IL6SUiQnM6DQdsvfsKZhRZtoBNSj9MfdmwotVZSOEZJ+IjZ1FR9ChvMWayO9ns/o8LgoQxr1ZXeg==} - '@react-native-community/cli-platform-ios@13.6.9': - resolution: {integrity: sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw==} + '@react-native-community/cli-plugin-metro@12.3.2': + resolution: {integrity: sha512-FpFBwu+d2E7KRhYPTkKvQsWb2/JKsJv+t1tcqgQkn+oByhp+qGyXBobFB8/R3yYvRRDCSDhS+atWTJzk9TjM8g==} - '@react-native-community/cli-server-api@13.6.9': - resolution: {integrity: sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug==} + '@react-native-community/cli-server-api@12.3.2': + resolution: {integrity: sha512-iwa7EO9XFA/OjI5pPLLpI/6mFVqv8L73kNck3CNOJIUCCveGXBKK0VMyOkXaf/BYnihgQrXh+x5cxbDbggr7+Q==} - '@react-native-community/cli-tools@13.6.9': - resolution: {integrity: sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ==} + '@react-native-community/cli-tools@12.3.2': + resolution: {integrity: sha512-nDH7vuEicHI2TI0jac/DjT3fr977iWXRdgVAqPZFFczlbs7A8GQvEdGnZ1G8dqRUmg+kptw0e4hwczAOG89JzQ==} - '@react-native-community/cli-types@13.6.9': - resolution: {integrity: sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w==} + '@react-native-community/cli-types@12.3.2': + resolution: {integrity: sha512-9D0UEFqLW8JmS16mjHJxUJWX8E+zJddrHILSH8AJHZ0NNHv4u2DXKdb0wFLMobFxGNxPT+VSOjc60fGvXzWHog==} - '@react-native-community/cli@13.6.9': - resolution: {integrity: sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ==} + '@react-native-community/cli@12.3.2': + resolution: {integrity: sha512-WgoUWwLDcf/G1Su2COUUVs3RzAwnV/vUTdISSpAUGgSc57mPabaAoUctKTnfYEhCnE3j02k3VtaVPwCAFRO3TQ==} engines: {node: '>=18'} hasBin: true - '@react-native/assets-registry@0.74.85': - resolution: {integrity: sha512-59YmIQxfGDw4aP9S/nAM+sjSFdW8fUP6fsqczCcXgL2YVEjyER9XCaUT0J1K+PdHep8pi05KUgIKUds8P3jbmA==} + '@react-native/assets-registry@0.73.1': + resolution: {integrity: sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==} engines: {node: '>=18'} - '@react-native/babel-plugin-codegen@0.74.85': - resolution: {integrity: sha512-48TSDclRB5OMXiImiJkLxyCfRyLsqkCgI8buugCZzvXcYslfV7gCvcyFyQldtcOmerV+CK4RAj7QS4hmB5Mr8Q==} + '@react-native/babel-plugin-codegen@0.73.4': + resolution: {integrity: sha512-XzRd8MJGo4Zc5KsphDHBYJzS1ryOHg8I2gOZDAUCGcwLFhdyGu1zBNDJYH2GFyDrInn9TzAbRIf3d4O+eltXQQ==} engines: {node: '>=18'} - '@react-native/babel-preset@0.74.85': - resolution: {integrity: sha512-yMHUlN8INbK5BBwiBuQMftdWkpm1IgCsoJTKcGD2OpSgZhwwm8RUSvGhdRMzB2w7bsqqBmaEMleGtW6aCR7B9w==} + '@react-native/babel-preset@0.73.21': + resolution: {integrity: sha512-WlFttNnySKQMeujN09fRmrdWqh46QyJluM5jdtDNrkl/2Hx6N4XeDUGhABvConeK95OidVO7sFFf7sNebVXogA==} engines: {node: '>=18'} peerDependencies: '@babel/core': '*' - '@react-native/codegen@0.74.85': - resolution: {integrity: sha512-N7QwoS4Hq/uQmoH83Ewedy6D0M7xbQsOU3OMcQf0eY3ltQ7S2hd9/R4UTalQWRn1OUJfXR6OG12QJ4FStKgV6Q==} + '@react-native/codegen@0.73.3': + resolution: {integrity: sha512-sxslCAAb8kM06vGy9Jyh4TtvjhcP36k/rvj2QE2Jdhdm61KvfafCATSIsOfc0QvnduWFcpXUPvAVyYwuv7PYDg==} engines: {node: '>=18'} peerDependencies: '@babel/preset-env': ^7.1.6 - '@react-native/community-cli-plugin@0.74.85': - resolution: {integrity: sha512-ODzND33eA2owAY3g9jgCdqB+BjAh8qJ7dvmSotXgrgDYr3MJMpd8gvHTIPe2fg4Kab+wk8uipRhrE0i0RYMwtQ==} + '@react-native/community-cli-plugin@0.73.16': + resolution: {integrity: sha512-eNH3v3qJJF6f0n/Dck90qfC9gVOR4coAXMTdYECO33GfgjTi+73vf/SBqlXw9HICH/RNZYGPM3wca4FRF7TYeQ==} engines: {node: '>=18'} - '@react-native/debugger-frontend@0.74.85': - resolution: {integrity: sha512-gUIhhpsYLUTYWlWw4vGztyHaX/kNlgVspSvKe2XaPA7o3jYKUoNLc3Ov7u70u/MBWfKdcEffWq44eSe3j3s5JQ==} + '@react-native/debugger-frontend@0.73.3': + resolution: {integrity: sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==} engines: {node: '>=18'} - '@react-native/dev-middleware@0.74.85': - resolution: {integrity: sha512-BRmgCK5vnMmHaKRO+h8PKJmHHH3E6JFuerrcfE3wG2eZ1bcSr+QTu8DAlpxsDWvJvHpCi8tRJGauxd+Ssj/c7w==} + '@react-native/dev-middleware@0.73.7': + resolution: {integrity: sha512-BZXpn+qKp/dNdr4+TkZxXDttfx8YobDh8MFHsMk9usouLm22pKgFIPkGBV0X8Do4LBkFNPGtrnsKkWk/yuUXKg==} engines: {node: '>=18'} - '@react-native/gradle-plugin@0.74.85': - resolution: {integrity: sha512-1VQSLukJzaVMn1MYcs8Weo1nUW8xCas2XU1KuoV7OJPk6xPnEBFJmapmEGP5mWeEy7kcTXJmddEgy1wwW0tcig==} + '@react-native/gradle-plugin@0.73.4': + resolution: {integrity: sha512-PMDnbsZa+tD55Ug+W8CfqXiGoGneSSyrBZCMb5JfiB3AFST3Uj5e6lw8SgI/B6SKZF7lG0BhZ6YHZsRZ5MlXmg==} engines: {node: '>=18'} - '@react-native/js-polyfills@0.74.85': - resolution: {integrity: sha512-gp4Rg9le3lVZeW7Cie6qLfekvRKZuhJ3LKgi1SFB4N154z1wIclypAJXVXgWBsy8JKJfTwRI+sffC4qZDlvzrg==} + '@react-native/js-polyfills@0.73.1': + resolution: {integrity: sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==} engines: {node: '>=18'} - '@react-native/metro-babel-transformer@0.74.85': - resolution: {integrity: sha512-JIrXqEwhTvWPtGArgMptIPGstMdXQIkwSjKVYt+7VC4a9Pw1GurIWanIJheEW6ZuCVvTc0VZkwglFz9JVjzDjA==} + '@react-native/metro-babel-transformer@0.73.15': + resolution: {integrity: sha512-LlkSGaXCz+xdxc9819plmpsl4P4gZndoFtpjN3GMBIu6f7TBV0GVbyJAU4GE8fuAWPVSVL5ArOcdkWKSbI1klw==} engines: {node: '>=18'} peerDependencies: '@babel/core': '*' - '@react-native/normalize-colors@0.74.85': - resolution: {integrity: sha512-pcE4i0X7y3hsAE0SpIl7t6dUc0B0NZLd1yv7ssm4FrLhWG+CGyIq4eFDXpmPU1XHmL5PPySxTAjEMiwv6tAmOw==} + '@react-native/normalize-colors@0.73.2': + resolution: {integrity: sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==} - '@react-native/virtualized-lists@0.74.85': - resolution: {integrity: sha512-jx2Zw0qlZteoQ+0KxRc7s4drsljLBEP534FaNZ950e9+CN9nVkLsV6rigcTjDR8wjKMSBWhKf0C0C3egYz7Ehg==} + '@react-native/virtualized-lists@0.73.4': + resolution: {integrity: sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==} engines: {node: '>=18'} peerDependencies: - '@types/react': ^18.2.6 - react: '*' react-native: '*' - peerDependenciesMeta: - '@types/react': - optional: true '@readme/better-ajv-errors@1.6.0': resolution: {integrity: sha512-9gO9rld84Jgu13kcbKRU+WHseNhaVt76wYMeRDGsUGYxwJtI3RmEJ9LY9dZCYQGI8eUZLuxb5qDja0nqklpFjQ==} @@ -3823,102 +3974,261 @@ packages: peerDependencies: openapi-types: '>=7' - '@rnx-kit/chromium-edge-launcher@1.0.0': - resolution: {integrity: sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==} - engines: {node: '>=14.15'} + '@rollup/pluginutils@5.1.0': + resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.12.0': + resolution: {integrity: sha512-+ac02NL/2TCKRrJu2wffk1kZ+RyqxVUlbjSagNgPm94frxtr+XDL12E5Ll1enWskLrtrZ2r8L3wED1orIibV/w==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm-eabi@4.17.2': + resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==} + cpu: [arm] + os: [android] - '@rollup/rollup-android-arm-eabi@4.18.0': - resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==} + '@rollup/rollup-android-arm-eabi@4.21.3': + resolution: {integrity: sha512-MmKSfaB9GX+zXl6E8z4koOr/xU63AMVleLEa64v7R0QF/ZloMs5vcD1sHgM64GXXS1csaJutG+ddtzcueI/BLg==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.18.0': - resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==} + '@rollup/rollup-android-arm64@4.12.0': + resolution: {integrity: sha512-OBqcX2BMe6nvjQ0Nyp7cC90cnumt8PXmO7Dp3gfAju/6YwG0Tj74z1vKrfRz7qAv23nBcYM8BCbhrsWqO7PzQQ==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-android-arm64@4.17.2': + resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-android-arm64@4.21.3': + resolution: {integrity: sha512-zrt8ecH07PE3sB4jPOggweBjJMzI1JG5xI2DIsUbkA+7K+Gkjys6eV7i9pOenNSDJH3eOr/jLb/PzqtmdwDq5g==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.18.0': - resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==} + '@rollup/rollup-darwin-arm64@4.12.0': + resolution: {integrity: sha512-X64tZd8dRE/QTrBIEs63kaOBG0b5GVEd3ccoLtyf6IdXtHdh8h+I56C2yC3PtC9Ucnv0CpNFJLqKFVgCYe0lOQ==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-arm64@4.17.2': + resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.18.0': - resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==} + '@rollup/rollup-darwin-arm64@4.21.3': + resolution: {integrity: sha512-P0UxIOrKNBFTQaXTxOH4RxuEBVCgEA5UTNV6Yz7z9QHnUJ7eLX9reOd/NYMO3+XZO2cco19mXTxDMXxit4R/eQ==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.12.0': + resolution: {integrity: sha512-cc71KUZoVbUJmGP2cOuiZ9HSOP14AzBAThn3OU+9LcA1+IUqswJyR1cAJj3Mg55HbjZP6OLAIscbQsQLrpgTOg==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.17.2': + resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.21.3': + resolution: {integrity: sha512-L1M0vKGO5ASKntqtsFEjTq/fD91vAqnzeaF6sfNAy55aD+Hi2pBI5DKwCO+UNDQHWsDViJLqshxOahXyLSh3EA==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.18.0': - resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==} + '@rollup/rollup-linux-arm-gnueabihf@4.12.0': + resolution: {integrity: sha512-a6w/Y3hyyO6GlpKL2xJ4IOh/7d+APaqLYdMf86xnczU3nurFTaVN9s9jOXQg97BE4nYm/7Ga51rjec5nfRdrvA==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-gnueabihf@4.17.2': + resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-gnueabihf@4.21.3': + resolution: {integrity: sha512-btVgIsCjuYFKUjopPoWiDqmoUXQDiW2A4C3Mtmp5vACm7/GnyuprqIDPNczeyR5W8rTXEbkmrJux7cJmD99D2g==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.17.2': + resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.18.0': - resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==} + '@rollup/rollup-linux-arm-musleabihf@4.21.3': + resolution: {integrity: sha512-zmjbSphplZlau6ZTkxd3+NMtE4UKVy7U4aVFMmHcgO5CUbw17ZP6QCgyxhzGaU/wFFdTfiojjbLG3/0p9HhAqA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.18.0': - resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==} + '@rollup/rollup-linux-arm64-gnu@4.12.0': + resolution: {integrity: sha512-0fZBq27b+D7Ar5CQMofVN8sggOVhEtzFUwOwPppQt0k+VR+7UHMZZY4y+64WJ06XOhBTKXtQB/Sv0NwQMXyNAA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.17.2': + resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.21.3': + resolution: {integrity: sha512-nSZfcZtAnQPRZmUkUQwZq2OjQciR6tEoJaZVFvLHsj0MF6QhNMg0fQ6mUOsiCUpTqxTx0/O6gX0V/nYc7LrgPw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.18.0': - resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==} + '@rollup/rollup-linux-arm64-musl@4.12.0': + resolution: {integrity: sha512-eTvzUS3hhhlgeAv6bfigekzWZjaEX9xP9HhxB0Dvrdbkk5w/b+1Sxct2ZuDxNJKzsRStSq1EaEkVSEe7A7ipgQ==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.18.0': - resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==} + '@rollup/rollup-linux-arm64-musl@4.17.2': + resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.21.3': + resolution: {integrity: sha512-MnvSPGO8KJXIMGlQDYfvYS3IosFN2rKsvxRpPO2l2cum+Z3exiExLwVU+GExL96pn8IP+GdH8Tz70EpBhO0sIQ==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': + resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.21.3': + resolution: {integrity: sha512-+W+p/9QNDr2vE2AXU0qIy0qQE75E8RTwTwgqS2G5CRQ11vzq0tbnfBd6brWhS9bCRjAjepJe2fvvkvS3dno+iw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.18.0': - resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==} + '@rollup/rollup-linux-riscv64-gnu@4.12.0': + resolution: {integrity: sha512-ix+qAB9qmrCRiaO71VFfY8rkiAZJL8zQRXveS27HS+pKdjwUfEhqo2+YF2oI+H/22Xsiski+qqwIBxVewLK7sw==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.17.2': + resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.18.0': - resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==} + '@rollup/rollup-linux-riscv64-gnu@4.21.3': + resolution: {integrity: sha512-yXH6K6KfqGXaxHrtr+Uoy+JpNlUlI46BKVyonGiaD74ravdnF9BUNC+vV+SIuB96hUMGShhKV693rF9QDfO6nQ==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.17.2': + resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.21.3': + resolution: {integrity: sha512-R8cwY9wcnApN/KDYWTH4gV/ypvy9yZUHlbJvfaiXSB48JO3KpwSpjOGqO4jnGkLDSk1hgjYkTbTt6Q7uvPf8eg==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.18.0': - resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==} + '@rollup/rollup-linux-x64-gnu@4.12.0': + resolution: {integrity: sha512-TenQhZVOtw/3qKOPa7d+QgkeM6xY0LtwzR8OplmyL5LrgTWIXpTQg2Q2ycBf8jm+SFW2Wt/DTn1gf7nFp3ssVA==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.17.2': + resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.21.3': + resolution: {integrity: sha512-kZPbX/NOPh0vhS5sI+dR8L1bU2cSO9FgxwM8r7wHzGydzfSjLRCFAT87GR5U9scj2rhzN3JPYVC7NoBbl4FZ0g==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.18.0': - resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==} + '@rollup/rollup-linux-x64-musl@4.12.0': + resolution: {integrity: sha512-LfFdRhNnW0zdMvdCb5FNuWlls2WbbSridJvxOvYWgSBOYZtgBfW9UGNJG//rwMqTX1xQE9BAodvMH9tAusKDUw==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.18.0': - resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==} + '@rollup/rollup-linux-x64-musl@4.17.2': + resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.21.3': + resolution: {integrity: sha512-S0Yq+xA1VEH66uiMNhijsWAafffydd2X5b77eLHfRmfLsRSpbiAWiRHV6DEpz6aOToPsgid7TI9rGd6zB1rhbg==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.12.0': + resolution: {integrity: sha512-JPDxovheWNp6d7AHCgsUlkuCKvtu3RB55iNEkaQcf0ttsDU/JZF+iQnYcQJSk/7PtT4mjjVG8N1kpwnI9SLYaw==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-arm64-msvc@4.17.2': + resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-arm64-msvc@4.21.3': + resolution: {integrity: sha512-9isNzeL34yquCPyerog+IMCNxKR8XYmGd0tHSV+OVx0TmE0aJOo9uw4fZfUuk2qxobP5sug6vNdZR6u7Mw7Q+Q==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.18.0': - resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==} + '@rollup/rollup-win32-ia32-msvc@4.12.0': + resolution: {integrity: sha512-fjtuvMWRGJn1oZacG8IPnzIV6GF2/XG+h71FKn76OYFqySXInJtseAqdprVTDTyqPxQOG9Exak5/E9Z3+EJ8ZA==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.17.2': + resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.21.3': + resolution: {integrity: sha512-nMIdKnfZfzn1Vsk+RuOvl43ONTZXoAPUUxgcU0tXooqg4YrAqzfKzVenqqk2g5efWh46/D28cKFrOzDSW28gTA==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.18.0': - resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==} + '@rollup/rollup-win32-x64-msvc@4.12.0': + resolution: {integrity: sha512-ZYmr5mS2wd4Dew/JjT0Fqi2NPB/ZhZ2VvPp7SmvPZb4Y1CG/LRcS6tcRo2cYU7zLK5A7cdbhWnnWmUjoI4qapg==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.17.2': + resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.21.3': + resolution: {integrity: sha512-fOvu7PCQjAj4eWDEuD8Xz5gpzFqXzGlxHZozHP4b9Jxv9APtdxL6STqztDzMLuRXEc4UpXGGhx029Xgm91QBeA==} cpu: [x64] os: [win32] '@safe-global/safe-apps-provider@0.18.1': resolution: {integrity: sha512-V4a05A3EgJcriqtDoJklDz1BOinWhC6P0hjUSxshA4KOZM7rGPCTto/usXs09zr1vvL28evl/NldSTv97j2bmg==} + '@safe-global/safe-apps-provider@0.18.3': + resolution: {integrity: sha512-f/0cNv3S4v7p8rowAjj0hDCg8Q8P/wBjp5twkNWeBdvd0RDr7BuRBPPk74LCqmjQ82P+1ltLlkmVFSmxTIT7XQ==} + '@safe-global/safe-apps-sdk@8.1.0': resolution: {integrity: sha512-XJbEPuaVc7b9n23MqlF6c+ToYIS3f7P2Sel8f3cSBQ9WORE4xrSuvhMpK9fDSFqJ7by/brc+rmJR/5HViRr0/w==} - '@safe-global/safe-gateway-typescript-sdk@3.21.8': - resolution: {integrity: sha512-n/fYgiqbuzAQuK0bgny6GBYvb585ETxKURa5Kb9hBV3fa47SvJo/dpGq275fJUn0e3Hh1YqETiLGj4HVJjHiTA==} + '@safe-global/safe-apps-sdk@9.1.0': + resolution: {integrity: sha512-N5p/ulfnnA2Pi2M3YeWjULeWbjo7ei22JwU/IXnhoHzKq3pYCN6ynL9mJBOlvDVv892EgLPCWCOwQk/uBT2v0Q==} + + '@safe-global/safe-gateway-typescript-sdk@3.15.0': + resolution: {integrity: sha512-zAzhPgUwzdp89ZrZwCAOImUyAQMQE0LQKcK4vLO5eMbfAcNOxz5g4eVdBRBRa+kVXxjyW5wii58ZlGaYUVBa7g==} engines: {node: '>=16'} - '@scure/base@1.1.7': - resolution: {integrity: sha512-PPNYBslrLNNUQ/Yad37MHYsNQtK67EhWb6WtSvNLLPo7SdVZgkUjD6Dg+5On7zNwmskf8OX7I7Nx5oN+MIWE0g==} + '@scure/base@1.1.5': + resolution: {integrity: sha512-Brj9FiG2W1MRQSTB212YVPRrcbjkv48FoZi/u4l/zds/ieRrqsh7aUf6CLwkAq61oKXr/ZlTzlY66gLIj3TFTQ==} + + '@scure/base@1.1.8': + resolution: {integrity: sha512-6CyAclxj3Nb0XT7GHK6K4zK6k2xJm6E4Ft0Ohjt4WgegiFUHEtFb2CGzmPmGBwoIhrLsqNLYfLr04Y1GePrzZg==} '@scure/bip32@1.1.5': resolution: {integrity: sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==} @@ -3926,6 +4236,9 @@ packages: '@scure/bip32@1.3.2': resolution: {integrity: sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==} + '@scure/bip32@1.3.3': + resolution: {integrity: sha512-LJaN3HwRbfQK0X1xFSi0Q9amqOgzQnnDngIt+ZlsBC3Bm7/nE7K0kwshZHyaru79yIVRv/e1mQAjZyuZG6jOFQ==} + '@scure/bip32@1.4.0': resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==} @@ -3935,14 +4248,29 @@ packages: '@scure/bip39@1.2.1': resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==} - '@scure/bip39@1.3.0': - resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} + '@scure/bip39@1.2.2': + resolution: {integrity: sha512-HYf9TUXG80beW+hGAt3TRM8wU6pQoYur9iNypTROm42dorCGmLnFe3eWjz3gOq6G62H2WRh0FCzAR1PI+29zIA==} + + '@scure/bip39@1.4.0': + resolution: {integrity: sha512-BEEm6p8IueV/ZTfQLp/0vhw4NPnT9oWf5+28nvmeUICjP99f4vr2d+qc7AVGDDtwRep6ifR43Yed9ERVmiITzw==} + + '@shikijs/core@1.17.6': + resolution: {integrity: sha512-9ztslig6/YmCg/XwESAXbKjAjOhaq6HVced9NY6qcbDz1X5g/S90Wco2vMjBNX/6V71ASkzri76JewSGPa7kiQ==} + + '@shikijs/core@1.5.2': + resolution: {integrity: sha512-wSAOgaz48GmhILFElMCeQypSZmj6Ru6DttOOtl3KNkdJ17ApQuGNCfzpk4cClasVrnIu45++2DBwG4LNMQAfaA==} + + '@shikijs/engine-javascript@1.17.6': + resolution: {integrity: sha512-5EEZj8tVcierNxm4V0UMS2PVoflb0UJPalWWV8l9rRg+oOfnr5VivqBJbkyq5grltVPvByIXvVbY8GSM/356jQ==} - '@shikijs/core@1.10.0': - resolution: {integrity: sha512-BZcr6FCmPfP6TXaekvujZcnkFmJHZ/Yglu97r/9VjzVndQA56/F4WjUKtJRQUnK59Wi7p/UTAOekMfCJv7jnYg==} + '@shikijs/engine-oniguruma@1.17.6': + resolution: {integrity: sha512-NLfWDMXFYe0nDHFbEoyZdz89aIIey3bTfF3zLYSUNTXks5s4uinZVmuPOFf1HfTeGqIn8uErJSBc3VnpJO7Alw==} - '@shikijs/core@1.12.1': - resolution: {integrity: sha512-biCz/mnkMktImI6hMfMX3H9kOeqsInxWEyCHbSlL8C/2TR1FqfmGxTLRNwYCKsyCyxWLbB8rEqXRVZuyxuLFmA==} + '@shikijs/types@1.17.6': + resolution: {integrity: sha512-ndTFa2TJi2w51ddKQDn3Jy8f6K4E5Q2x3dA3Hmsd3+YmxDQ10UWHjcw7VbVbKzv3VcUvYPLy+z9neqytSzUMUg==} + + '@shikijs/vscode-textmate@9.2.2': + resolution: {integrity: sha512-TMp15K+GGYrWlZM8+Lnj9EaHEFmOen0WJBrfa17hF7taDOYthuPPV0GWzfd/9iMij0akS/8Yw2ikquH7uVi/fg==} '@sideway/address@4.1.5': resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} @@ -3956,22 +4284,22 @@ packages: '@sinclair/typebox@0.27.8': resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + '@sindresorhus/is@4.6.0': + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + '@sindresorhus/is@5.6.0': resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} engines: {node: '>=14.16'} - '@sindresorhus/merge-streams@2.3.0': - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} - engines: {node: '>=18'} - '@sinonjs/commons@3.0.1': resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} '@sinonjs/fake-timers@10.3.0': resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} - '@smithy/abort-controller@3.1.1': - resolution: {integrity: sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ==} + '@smithy/abort-controller@3.0.0': + resolution: {integrity: sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA==} engines: {node: '>=16.0.0'} '@smithy/chunked-blob-reader-native@3.0.0': @@ -3980,131 +4308,127 @@ packages: '@smithy/chunked-blob-reader@3.0.0': resolution: {integrity: sha512-sbnURCwjF0gSToGlsBiAmd1lRCmSn72nu9axfJu5lIx6RUEgHu6GwTMbqCdhQSi0Pumcm5vFxsi9XWXb2mTaoA==} - '@smithy/config-resolver@3.0.4': - resolution: {integrity: sha512-VwiOk7TwXoE7NlNguV/aPq1hFH72tqkHCw8eWXbr2xHspRyyv9DLpLXhq+Ieje+NwoqXrY0xyQjPXdOE6cGcHA==} + '@smithy/config-resolver@3.0.0': + resolution: {integrity: sha512-2GzOfADwYLQugYkKQhIyZyQlM05K+tMKvRnc6eFfZcpJGRfKoMUMYdPlBKmqHwQFXQKBrGV6cxL9oymWgDzvFw==} engines: {node: '>=16.0.0'} - '@smithy/core@2.2.4': - resolution: {integrity: sha512-qdY3LpMOUyLM/gfjjMQZui+UTNS7kBRDWlvyIhVOql5dn2J3isk9qUTBtQ1CbDH8MTugHis1zu3h4rH+Qmmh4g==} + '@smithy/core@2.0.1': + resolution: {integrity: sha512-rcMkjvwxH/bER+oZUPR0yTA0ELD6m3A+d92+CFkdF6HJFCBB1bXo7P5pm21L66XwTN01B6bUhSCQ7cymWRD8zg==} engines: {node: '>=16.0.0'} - '@smithy/credential-provider-imds@3.1.3': - resolution: {integrity: sha512-U1Yrv6hx/mRK6k8AncuI6jLUx9rn0VVSd9NPEX6pyYFBfkSkChOc/n4zUb8alHUVg83TbI4OdZVo1X0Zfj3ijA==} + '@smithy/credential-provider-imds@3.0.0': + resolution: {integrity: sha512-lfmBiFQcA3FsDAPxNfY0L7CawcWtbyWsBOHo34nF095728JLkBX4Y9q/VPPE2r7fqMVK+drmDigqE2/SSQeVRA==} engines: {node: '>=16.0.0'} - '@smithy/eventstream-codec@3.1.2': - resolution: {integrity: sha512-0mBcu49JWt4MXhrhRAlxASNy0IjDRFU+aWNDRal9OtUJvJNiwDuyKMUONSOjLjSCeGwZaE0wOErdqULer8r7yw==} + '@smithy/eventstream-codec@3.0.0': + resolution: {integrity: sha512-PUtyEA0Oik50SaEFCZ0WPVtF9tz/teze2fDptW6WRXl+RrEenH8UbEjudOz8iakiMl3lE3lCVqYf2Y+znL8QFQ==} - '@smithy/eventstream-serde-browser@3.0.4': - resolution: {integrity: sha512-Eo4anLZX6ltGJTZ5yJMc80gZPYYwBn44g0h7oFq6et+TYr5dUsTpIcDbz2evsOKIZhZ7zBoFWHtBXQ4QQeb5xA==} + '@smithy/eventstream-serde-browser@3.0.0': + resolution: {integrity: sha512-NB7AFiPN4NxP/YCAnrvYR18z2/ZsiHiF7VtG30gshO9GbFrIb1rC8ep4NGpJSWrz6P64uhPXeo4M0UsCLnZKqw==} engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-config-resolver@3.0.3': - resolution: {integrity: sha512-NVTYjOuYpGfrN/VbRQgn31x73KDLfCXCsFdad8DiIc3IcdxL+dYA9zEQPyOP7Fy2QL8CPy2WE4WCUD+ZsLNfaQ==} + '@smithy/eventstream-serde-config-resolver@3.0.0': + resolution: {integrity: sha512-RUQG3vQ3LX7peqqHAbmayhgrF5aTilPnazinaSGF1P0+tgM3vvIRWPHmlLIz2qFqB9LqFIxditxc8O2Z6psrRw==} engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-node@3.0.4': - resolution: {integrity: sha512-mjlG0OzGAYuUpdUpflfb9zyLrBGgmQmrobNT8b42ZTsGv/J03+t24uhhtVEKG/b2jFtPIHF74Bq+VUtbzEKOKg==} + '@smithy/eventstream-serde-node@3.0.0': + resolution: {integrity: sha512-baRPdMBDMBExZXIUAoPGm/hntixjt/VFpU6+VmCyiYJYzRHRxoaI1MN+5XE+hIS8AJ2GCHLMFEIOLzq9xx1EgQ==} engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-universal@3.0.4': - resolution: {integrity: sha512-Od9dv8zh3PgOD7Vj4T3HSuox16n0VG8jJIM2gvKASL6aCtcS8CfHZDWe1Ik3ZXW6xBouU+45Q5wgoliWDZiJ0A==} + '@smithy/eventstream-serde-universal@3.0.0': + resolution: {integrity: sha512-HNFfShmotWGeAoW4ujP8meV9BZavcpmerDbPIjkJbxKbN8RsUcpRQ/2OyIxWNxXNH2GWCAxuSB7ynmIGJlQ3Dw==} engines: {node: '>=16.0.0'} - '@smithy/fetch-http-handler@3.2.0': - resolution: {integrity: sha512-vFvDxMrc6sO5Atec8PaISckMcAwsCrRhYxwUylg97bRT2KZoumOF7qk5+6EVUtuM1IG9AJV5aqXnHln9ZdXHpg==} + '@smithy/fetch-http-handler@3.0.1': + resolution: {integrity: sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg==} - '@smithy/hash-blob-browser@3.1.2': - resolution: {integrity: sha512-hAbfqN2UbISltakCC2TP0kx4LqXBttEv2MqSPE98gVuDFMf05lU+TpC41QtqGP3Ff5A3GwZMPfKnEy0VmEUpmg==} + '@smithy/hash-blob-browser@3.0.0': + resolution: {integrity: sha512-/Wbpdg+bwJvW7lxR/zpWAc1/x/YkcqguuF2bAzkJrvXriZu1vm8r+PUdE4syiVwQg7PPR2dXpi3CLBb9qRDaVQ==} - '@smithy/hash-node@3.0.3': - resolution: {integrity: sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw==} + '@smithy/hash-node@3.0.0': + resolution: {integrity: sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw==} engines: {node: '>=16.0.0'} - '@smithy/hash-stream-node@3.1.2': - resolution: {integrity: sha512-PBgDMeEdDzi6JxKwbfBtwQG9eT9cVwsf0dZzLXoJF4sHKHs5HEo/3lJWpn6jibfJwT34I1EBXpBnZE8AxAft6g==} + '@smithy/hash-stream-node@3.0.0': + resolution: {integrity: sha512-J0i7de+EgXDEGITD4fxzmMX8CyCNETTIRXlxjMiNUvvu76Xn3GJ31wQR85ynlPk2wI1lqoknAFJaD1fiNDlbIA==} engines: {node: '>=16.0.0'} - '@smithy/invalid-dependency@3.0.3': - resolution: {integrity: sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw==} - - '@smithy/is-array-buffer@2.2.0': - resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==} - engines: {node: '>=14.0.0'} + '@smithy/invalid-dependency@3.0.0': + resolution: {integrity: sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g==} '@smithy/is-array-buffer@3.0.0': resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==} engines: {node: '>=16.0.0'} - '@smithy/md5-js@3.0.3': - resolution: {integrity: sha512-O/SAkGVwpWmelpj/8yDtsaVe6sINHLB1q8YE/+ZQbDxIw3SRLbTZuRaI10K12sVoENdnHqzPp5i3/H+BcZ3m3Q==} + '@smithy/md5-js@3.0.0': + resolution: {integrity: sha512-Tm0vrrVzjlD+6RCQTx7D3Ls58S3FUH1ZCtU1MIh/qQmaOo1H9lMN2as6CikcEwgattnA9SURSdoJJ27xMcEfMA==} - '@smithy/middleware-content-length@3.0.3': - resolution: {integrity: sha512-Dbz2bzexReYIQDWMr+gZhpwBetNXzbhnEMhYKA6urqmojO14CsXjnsoPYO8UL/xxcawn8ZsuVU61ElkLSltIUQ==} + '@smithy/middleware-content-length@3.0.0': + resolution: {integrity: sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg==} engines: {node: '>=16.0.0'} - '@smithy/middleware-endpoint@3.0.4': - resolution: {integrity: sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==} + '@smithy/middleware-endpoint@3.0.0': + resolution: {integrity: sha512-aXOAWztw/5qAfp0NcA2OWpv6ZI/E+Dh9mByif7i91D/0iyYNUcKvskmXiowKESFkuZ7PIMd3VOR4fTibZDs2OQ==} engines: {node: '>=16.0.0'} - '@smithy/middleware-retry@3.0.7': - resolution: {integrity: sha512-f5q7Y09G+2h5ivkSx5CHvlAT4qRR3jBFEsfXyQ9nFNiWQlr8c48blnu5cmbTQ+p1xmIO14UXzKoF8d7Tm0Gsjw==} + '@smithy/middleware-retry@3.0.1': + resolution: {integrity: sha512-hBhSEuL841FhJBK/19WpaGk5YWSzFk/P2UaVjANGKRv3eYNO8Y1lANWgqnuPWjOyCEWMPr58vELFDWpxvRKANw==} engines: {node: '>=16.0.0'} - '@smithy/middleware-serde@3.0.3': - resolution: {integrity: sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA==} + '@smithy/middleware-serde@3.0.0': + resolution: {integrity: sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w==} engines: {node: '>=16.0.0'} - '@smithy/middleware-stack@3.0.3': - resolution: {integrity: sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA==} + '@smithy/middleware-stack@3.0.0': + resolution: {integrity: sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q==} engines: {node: '>=16.0.0'} - '@smithy/node-config-provider@3.1.3': - resolution: {integrity: sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==} + '@smithy/node-config-provider@3.0.0': + resolution: {integrity: sha512-buqfaSdDh0zo62EPLf8rGDvcpKwGpO5ho4bXS2cdFhlOta7tBkWJt+O5uiaAeICfIOfPclNOndshDNSanX2X9g==} engines: {node: '>=16.0.0'} - '@smithy/node-http-handler@3.1.1': - resolution: {integrity: sha512-L71NLyPeP450r2J/mfu1jMc//Z1YnqJt2eSNw7uhiItaONnBLDA68J5jgxq8+MBDsYnFwNAIc7dBG1ImiWBiwg==} + '@smithy/node-http-handler@3.0.0': + resolution: {integrity: sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ==} engines: {node: '>=16.0.0'} - '@smithy/property-provider@3.1.3': - resolution: {integrity: sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g==} + '@smithy/property-provider@3.0.0': + resolution: {integrity: sha512-LmbPgHBswdXCrkWWuUwBm9w72S2iLWyC/5jet9/Y9cGHtzqxi+GVjfCfahkvNV4KXEwgnH8EMpcrD9RUYe0eLQ==} engines: {node: '>=16.0.0'} - '@smithy/protocol-http@4.0.3': - resolution: {integrity: sha512-x5jmrCWwQlx+Zv4jAtc33ijJ+vqqYN+c/ZkrnpvEe/uDas7AT7A/4Rc2CdfxgWv4WFGmEqODIrrUToPN6DDkGw==} + '@smithy/protocol-http@4.0.0': + resolution: {integrity: sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ==} engines: {node: '>=16.0.0'} - '@smithy/querystring-builder@3.0.3': - resolution: {integrity: sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw==} + '@smithy/querystring-builder@3.0.0': + resolution: {integrity: sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg==} engines: {node: '>=16.0.0'} - '@smithy/querystring-parser@3.0.3': - resolution: {integrity: sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ==} + '@smithy/querystring-parser@3.0.0': + resolution: {integrity: sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ==} engines: {node: '>=16.0.0'} - '@smithy/service-error-classification@3.0.3': - resolution: {integrity: sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ==} + '@smithy/service-error-classification@3.0.0': + resolution: {integrity: sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA==} engines: {node: '>=16.0.0'} - '@smithy/shared-ini-file-loader@3.1.3': - resolution: {integrity: sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==} + '@smithy/shared-ini-file-loader@3.0.0': + resolution: {integrity: sha512-REVw6XauXk8xE4zo5aGL7Rz4ywA8qNMUn8RtWeTRQsgAlmlvbJ7CEPBcaXU2NDC3AYBgYAXrGyWD8XrN8UGDog==} engines: {node: '>=16.0.0'} - '@smithy/signature-v4@3.1.2': - resolution: {integrity: sha512-3BcPylEsYtD0esM4Hoyml/+s7WP2LFhcM3J2AGdcL2vx9O60TtfpDOL72gjb4lU8NeRPeKAwR77YNyyGvMbuEA==} + '@smithy/signature-v4@3.0.0': + resolution: {integrity: sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA==} engines: {node: '>=16.0.0'} - '@smithy/smithy-client@3.1.5': - resolution: {integrity: sha512-x9bL9Mx2CT2P1OiUlHM+ZNpbVU6TgT32f9CmTRzqIHA7M4vYrROCWEoC3o4xHNJASoGd4Opos3cXYPgh+/m4Ww==} + '@smithy/smithy-client@3.0.1': + resolution: {integrity: sha512-KAiFY4Y4jdHxR+4zerH/VBhaFKM8pbaVmJZ/CWJRwtM/CmwzTfXfvYwf6GoUwiHepdv+lwiOXCuOl6UBDUEINw==} engines: {node: '>=16.0.0'} - '@smithy/types@3.3.0': - resolution: {integrity: sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA==} + '@smithy/types@3.0.0': + resolution: {integrity: sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw==} engines: {node: '>=16.0.0'} - '@smithy/url-parser@3.0.3': - resolution: {integrity: sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A==} + '@smithy/url-parser@3.0.0': + resolution: {integrity: sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw==} '@smithy/util-base64@3.0.0': resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==} @@ -4117,10 +4441,6 @@ packages: resolution: {integrity: sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==} engines: {node: '>=16.0.0'} - '@smithy/util-buffer-from@2.2.0': - resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==} - engines: {node: '>=14.0.0'} - '@smithy/util-buffer-from@3.0.0': resolution: {integrity: sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==} engines: {node: '>=16.0.0'} @@ -4129,52 +4449,48 @@ packages: resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==} engines: {node: '>=16.0.0'} - '@smithy/util-defaults-mode-browser@3.0.7': - resolution: {integrity: sha512-Q2txLyvQyGfmjsaDbVV7Sg8psefpFcrnlGapDzXGFRPFKRBeEg6OvFK8FljqjeHSaCZ6/UuzQExUPqBR/2qlDA==} + '@smithy/util-defaults-mode-browser@3.0.1': + resolution: {integrity: sha512-nW5kEzdJn1Bn5TF+gOPHh2rcPli8JU9vSSXLbfg7uPnfR1TMRQqs9zlYRhIb87NeSxIbpdXOI94tvXSy+fvDYg==} engines: {node: '>= 10.0.0'} - '@smithy/util-defaults-mode-node@3.0.7': - resolution: {integrity: sha512-F4Qcj1fG6MGi2BSWCslfsMSwllws/WzYONBGtLybyY+halAcXdWhcew+mej8M5SKd5hqPYp4f7b+ABQEaeytgg==} + '@smithy/util-defaults-mode-node@3.0.1': + resolution: {integrity: sha512-TFk+Qb+elLc/MOhtSp+50fstyfZ6avQbgH2d96xUBpeScu+Al9elxv+UFAjaTHe0HQe5n+wem8ZLpXvU8lwV6Q==} engines: {node: '>= 10.0.0'} - '@smithy/util-endpoints@2.0.4': - resolution: {integrity: sha512-ZAtNf+vXAsgzgRutDDiklU09ZzZiiV/nATyqde4Um4priTmasDH+eLpp3tspL0hS2dEootyFMhu1Y6Y+tzpWBQ==} + '@smithy/util-endpoints@2.0.0': + resolution: {integrity: sha512-+exaXzEY3DNt2qtA2OtRNSDlVrE4p32j1JSsQkzA5AdP0YtJNjkYbYhJxkFmPYcjI1abuwopOZCwUmv682QkiQ==} engines: {node: '>=16.0.0'} '@smithy/util-hex-encoding@3.0.0': resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==} engines: {node: '>=16.0.0'} - '@smithy/util-middleware@3.0.3': - resolution: {integrity: sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw==} + '@smithy/util-middleware@3.0.0': + resolution: {integrity: sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ==} engines: {node: '>=16.0.0'} - '@smithy/util-retry@3.0.3': - resolution: {integrity: sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w==} + '@smithy/util-retry@3.0.0': + resolution: {integrity: sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g==} engines: {node: '>=16.0.0'} - '@smithy/util-stream@3.0.5': - resolution: {integrity: sha512-xC3L5PKMAT/Bh8fmHNXP9sdQ4+4aKVUU3EEJ2CF/lLk7R+wtMJM+v/1B4en7jO++Wa5spGzFDBCl0QxgbUc5Ug==} + '@smithy/util-stream@3.0.1': + resolution: {integrity: sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA==} engines: {node: '>=16.0.0'} '@smithy/util-uri-escape@3.0.0': resolution: {integrity: sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==} engines: {node: '>=16.0.0'} - '@smithy/util-utf8@2.3.0': - resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==} - engines: {node: '>=14.0.0'} - '@smithy/util-utf8@3.0.0': resolution: {integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==} engines: {node: '>=16.0.0'} - '@smithy/util-waiter@3.1.2': - resolution: {integrity: sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw==} + '@smithy/util-waiter@3.0.0': + resolution: {integrity: sha512-+fEXJxGDLCoqRKVSmo0auGxaqbiCo+8oph+4auefYjaNxjOLKSY2MxVQfRzo65PaZv4fr+5lWg+au7vSuJJ/zw==} engines: {node: '>=16.0.0'} - '@socket.io/component-emitter@3.1.2': - resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} + '@socket.io/component-emitter@3.1.0': + resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==} '@solidity-parser/parser@0.18.0': resolution: {integrity: sha512-yfORGUIPgLck41qyN7nbwJRAx17/jAIXCTanHOJZhB6PJ1iAk/84b/xlsVKFSyNyLXIj0dhppoE0+CRws7wlzA==} @@ -4233,68 +4549,92 @@ packages: '@stablelib/x25519@1.0.3': resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==} - '@storybook/addon-actions@8.1.11': - resolution: {integrity: sha512-jqYXgBgOVInStOCk//AA+dGkrfN8R7rDXA4lyu82zM59kvICtG9iqgmkSRDn0Z3zUkM+lIHZGoz0aLVQ8pxsgw==} + '@storybook/addon-actions@8.3.0': + resolution: {integrity: sha512-HvAc3fW979JVw8CSKXZMouvgrJ2BNLNWaUB8jNokQb3Us00P6igVKLwg/pBV8GBgDr5Ng4pHYqi/ZH+xzEYFFw==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/addon-backgrounds@8.1.11': - resolution: {integrity: sha512-naGf1ovmsU2pSWb270yRO1IidnO+0YCZ5Tcb8I4rPhZ0vsdXNURYKS1LPSk1OZkvaUXdeB4Im9HhHfUBJOW9oQ==} + '@storybook/addon-backgrounds@8.3.0': + resolution: {integrity: sha512-qaV/QsXoviAmBYFszI/KN1CaI/LcACGX9RCBB54fMau3JuouIBU/zTl2jY2+BioCBk6oY8KqcnAS1coOZzlNXQ==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/addon-controls@8.1.11': - resolution: {integrity: sha512-q/Vt4meNVlFlBWIMCJhx6r+bqiiYocCta2RoUK5nyIZUiLzHncKHX6JnCU36EmJzRyah9zkwjfCb2G1r9cjnoQ==} + '@storybook/addon-controls@8.3.0': + resolution: {integrity: sha512-Id4j6Neimkdq0OyfQ3qkHpKLisbN08M8pXHDI/A0VeF91xEGBdc1bJgS/EU+ifa24tr5SRYwlAlcBDAWJbZMfA==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/addon-docs@8.1.11': - resolution: {integrity: sha512-69dv+CE4R5wFU7xnJmhuyEbLN2PEVDV3N/BbgJqeucIYPmm6zDV83Q66teCHKYtRln3BFUqPH5mxsjiHobxfJQ==} + '@storybook/addon-docs@8.3.0': + resolution: {integrity: sha512-LrvWBDX5Vi//82Q78QRbTsG+9rJU9JJFAVPk1NnLp2Yn0F4FueVzIw8AabAkZFy0LHPMGV+EHpkPtYz4Czkhgw==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/addon-essentials@8.1.11': - resolution: {integrity: sha512-uRTpcIZQnflML8H+2onicUNIIssKfuviW8Lyrs/KFwSZ1rMcYzhwzCNbGlIbAv04tgHe5NqEyNhb+DVQcZQBzg==} + '@storybook/addon-essentials@8.3.0': + resolution: {integrity: sha512-y+hlMnIoD+h/diY7BvIeySPCz/ZtJPPZfS/COQuPRXfPWCr37p9XLEz3E+m2spniAbgGv9KpvdqQd0kWcwwfiA==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/addon-highlight@8.1.11': - resolution: {integrity: sha512-Iu8FCAd4ETsB6QF4xDE/OLLZY3HOFopuLM5KE0f58jnccF5zAVGr1Rj/54p6TeK0PEou0tLRPFuZs+LPlEzrSw==} + '@storybook/addon-highlight@8.3.0': + resolution: {integrity: sha512-bS1rqzbwGgeTKVLYEyY+6DzpafLtDLnoSF+KzRIiV7/1H30evhwVSzkgX1L2F6+ssS1n9WrRJeglniv9j+5mGQ==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/addon-interactions@8.1.11': - resolution: {integrity: sha512-nkc01z61mYM1kxf0ncBQLlFnnwW4RAVPfRSxK9BdbFN3AAvFiHCwVZdn71mi+C3L8oTqYR6o32e0RlXk+AjhHA==} + '@storybook/addon-interactions@8.3.0': + resolution: {integrity: sha512-nAVUFpt2kTaPMY7RxfZwiYipngxf76dfx1E/QP9n/333+/pe88UwXbUkmLKpyC8EWqZXDI0oSV5XDDzoI5x3dA==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/addon-links@8.1.11': - resolution: {integrity: sha512-HlV2RQSrZyi+55W1B1a9eWNuJdNpWx0g3j7s2arNlNmbd6/kfWAp84axBstI1tL0nW4svut7bWlCsMSOIden+A==} + '@storybook/addon-links@8.3.0': + resolution: {integrity: sha512-nUnoMPPuxM8yJ7LCrppsUrn3gwqt4E0si9fqIIb5IkB56vz48RxCO9MtO1qjwhWosfMdN6boHaOl1Qc6IxV3Lg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + storybook: ^8.3.0 peerDependenciesMeta: react: optional: true - '@storybook/addon-measure@8.1.11': - resolution: {integrity: sha512-LkQD3SiLWaWt53aLB3EnmhD9Im8EOO+HKSUE+XGnIJRUcHHRqHfvDkN9KX7T1DCWbfRE5WzMHF5o23b3UiAANw==} + '@storybook/addon-measure@8.3.0': + resolution: {integrity: sha512-0TZ2ihzX0mRr1rNrFDieDsIKASZ2qUg3eHDkskLKOhxwoUHqsLzXlvS/scKZ+zb8pgjrvsBAsjyPstlrK+z0Zg==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/addon-outline@8.1.11': - resolution: {integrity: sha512-vco3RLVjkcS25dNtj1lxmjq4fC0Nq08KNLMS5cbNPVJWNTuSUi/2EthSTQQCdpfMV/p6u+D5uF20A9Pl0xJFXw==} + '@storybook/addon-outline@8.3.0': + resolution: {integrity: sha512-xTvBGgX6RIkKjQiAi9LvPGbGuBa6tsJS2jCmjwiei3SX3I56E6Bf3KASsFH2x8j9khMVsgQcfA3QDIhjwatdgw==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/addon-themes@8.1.11': - resolution: {integrity: sha512-tEOzNiLSAz0/kQKkqV85V7olkJpinCaKpxRpUQpFYut/yQVl+fUchgkfCKrQZuQuvSrebhMmQQ8fbqZq8nf2pw==} + '@storybook/addon-themes@8.3.0': + resolution: {integrity: sha512-kAvpsQBrIMe7u8zU5+WoYKPhSo/MzgYXHARjYKhJYpsFatCv/npg/hLOiBlKWV5FzEqjQx9dAZiehXDF3JsCZw==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/addon-toolbars@8.1.11': - resolution: {integrity: sha512-reIKB0+JTiP+GNzynlDcRf4xmv9+j/DQ94qiXl2ZG5+ufKilH8DiRZpVA/i0x+4+TxdGdOJr1/pOf8tAmhNEoQ==} + '@storybook/addon-toolbars@8.3.0': + resolution: {integrity: sha512-/3/jnd70tnvh3x1EL8axE4TR9EHwC+bBch1uIc3vH/lmyZBqSBVA50clz23FvjhykjcaKQogcugCuU1w5TJlBA==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/addon-viewport@8.1.11': - resolution: {integrity: sha512-qk4IcGnAgiAUQxt8l5PIQ293Za+w6wxlJQIpxr7+QM8OVkADPzXY0MmQfYWU9EQplrxAC2MSx3/C1gZeq+MDOQ==} + '@storybook/addon-viewport@8.3.0': + resolution: {integrity: sha512-6h/0mKipUG6w2o5IOzyhvC/2ifJlSNIA60hLkJ291g42+ilzkydpby9TBN7FcnrVL3Bv+oLgkDLBWVCqma/fyw==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/blocks@8.1.11': - resolution: {integrity: sha512-eMed7PpL/hAVM6tBS7h70bEAyzbiSU9I/kye4jZ7DkCbAsrX6OKmC7pcHSDn712WTcf3vVqxy5jOKUmOXpc0eg==} + '@storybook/blocks@8.3.0': + resolution: {integrity: sha512-V7D5lv5R+GJya9cCZOCjmOVjhvP5J3KIaclQuuGGJda/ZD/SpwHcFOGSpo6sNR2UKHXXvb61oM8gRQQWDvqPlg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + storybook: ^8.3.0 peerDependenciesMeta: react: optional: true react-dom: optional: true - '@storybook/builder-manager@8.1.11': - resolution: {integrity: sha512-U7bmed4Ayg+OlJ8HPmLeGxLTHzDY7rxmxM4aAs4YL01fufYfBcjkIP9kFhJm+GJOvGm+YJEUAPe5mbM1P/bn0Q==} - - '@storybook/builder-vite@8.1.11': - resolution: {integrity: sha512-hG4eoNMCPgjZ2Ai+zSmk69zjsyEihe75XbJXtYfGRqjMWtz2+SAUFO54fLc2BD5svcUiTeN+ukWcTrwApyPsKg==} + '@storybook/builder-vite@8.3.0': + resolution: {integrity: sha512-9qo3zcZkEpy69E7cx9OHHexBe9+25vH0p+4sWZSjl2sjqjhaxLN5eXnODQbDsOKZNRVrLVTGmKxfFJzAJFnY0w==} peerDependencies: '@preact/preset-vite': '*' + storybook: ^8.3.0 typescript: '>= 4.3.x' vite: ^4.0.0 || ^5.0.0 vite-plugin-glimmerx: '*' @@ -4306,142 +4646,98 @@ packages: vite-plugin-glimmerx: optional: true - '@storybook/channels@8.1.11': - resolution: {integrity: sha512-fu5FTqo6duOqtJFa6gFzKbiSLJoia+8Tibn3xFfB6BeifWrH81hc+AZq0lTmHo5qax2G5t8ZN8JooHjMw6k2RA==} - - '@storybook/cli@8.1.11': - resolution: {integrity: sha512-4U48w9C7mVEKrykcPcfHwJkRyCqJ28XipbElACbjIIkQEqaHaOVtP3GeKIrgkoOXe/HK3O4zKWRP2SqlVS0r4A==} - hasBin: true - - '@storybook/client-logger@8.1.11': - resolution: {integrity: sha512-DVMh2usz3yYmlqCLCiCKy5fT8/UR9aTh+gSqwyNFkGZrIM4otC5A8eMXajXifzotQLT5SaOEnM3WzHwmpvMIEA==} - - '@storybook/codemod@8.1.11': - resolution: {integrity: sha512-/LCozjH1IQ1TOs9UQV59BE0X6UZ9q+C0NEUz7qmJZPrwAii3FkW4l7D/fwxblpMExaoxv0oE8NQfUz49U/5Ymg==} - - '@storybook/components@8.1.11': - resolution: {integrity: sha512-iXKsNu7VmrLBtjMfPj7S4yJ6T13GU6joKcVcrcw8wfrQJGlPFp4YaURPBUEDxvCt1XWi5JkaqJBvb48kIrROEQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - - '@storybook/core-common@8.1.11': - resolution: {integrity: sha512-Ix0nplD4I4DrV2t9B+62jaw1baKES9UbR/Jz9LVKFF9nsua3ON0aVe73dOjMxFWBngpzBYWe+zYBTZ7aQtDH4Q==} + '@storybook/components@8.3.0': + resolution: {integrity: sha512-SO/iTkmWp3aYCIy8DEhRMoOn6K7lcKTPNC/YjTvOFFzwq/CLq86WNqz6aX+wV5n6MvWTs7evSwMoz7lp4Lc4sw==} peerDependencies: - prettier: ^2 || ^3 - peerDependenciesMeta: - prettier: - optional: true + storybook: ^8.3.0 - '@storybook/core-events@8.1.11': - resolution: {integrity: sha512-vXaNe2KEW9BGlLrg0lzmf5cJ0xt+suPjWmEODH5JqBbrdZ67X6ApA2nb6WcxDQhykesWCuFN5gp1l+JuDOBi7A==} + '@storybook/core@8.3.0': + resolution: {integrity: sha512-UeErpD0xRIP2nFA2TjPYxtEyv24O6VRfq2XXU5ki2QPYnxOxAPBbrMHCADjgBwNS4S2NUWTaVBYxybISVbrj+w==} - '@storybook/core-server@8.1.11': - resolution: {integrity: sha512-L6dzQTmR0np/kagNONvvlm6lSvF1FNc9js3vxsEEPnEypLbhx8bDZaHmuhmBpYUzKyUMpRVQTE/WgjHLuBBuxA==} - - '@storybook/csf-plugin@8.1.11': - resolution: {integrity: sha512-hkA8gjFtSN/tabG0cuvmEqanMXtxPr3qTkp4UNSt1R6jBEgFHRG2y/KYLl367kDwOSFTT987ZgRfJJruU66Fvw==} - - '@storybook/csf-tools@8.1.11': - resolution: {integrity: sha512-6qMWAg/dBwCVIHzANM9lSHoirwqSS+wWmv+NwAs0t9S94M75IttHYxD3IyzwaSYCC5llp0EQFvtXXAuSfFbibg==} + '@storybook/csf-plugin@8.3.0': + resolution: {integrity: sha512-sCmeN/OVYj95TKkMqJqxbaztIbdv5jCrtrXuNg4oJaGzNucmMNAbmv2jK2tCNE6Uz2X9IMRcseFX/h9TgjyJ9A==} + peerDependencies: + storybook: ^8.3.0 '@storybook/csf@0.0.1': resolution: {integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==} - '@storybook/csf@0.1.9': - resolution: {integrity: sha512-JlZ6v/iFn+iKohKGpYXnMeNeTiiAMeFoDhYnPLIC8GnyyIWqEI9wJYrOK9i9rxlJ8NZAH/ojGC/u/xVC41qSgQ==} - - '@storybook/docs-mdx@3.1.0-next.0': - resolution: {integrity: sha512-t4syFIeSyufieNovZbLruPt2DmRKpbwL4fERCZ1MifWDRIORCKLc4NCEHy+IqvIqd71/SJV2k4B51nF7vlJfmQ==} - - '@storybook/docs-tools@8.1.11': - resolution: {integrity: sha512-mEXtR9rS7Y+OdKtT/QG6JBGYR1L41mcDhIqhnk7RmYl9qJstVAegrCKWR53sPKFdTVOHU7dmu6k+BD+TqHpyyw==} + '@storybook/csf@0.1.11': + resolution: {integrity: sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==} '@storybook/global@5.0.0': resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} - '@storybook/icons@1.2.9': - resolution: {integrity: sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==} + '@storybook/icons@1.2.10': + resolution: {integrity: sha512-310apKdDcjbbX2VSLWPwhEwAgjxTzVagrwucVZIdGPErwiAppX8KvBuWZgPo+rQLVrtH8S+pw1dbUwjcE6d7og==} engines: {node: '>=14.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/instrumenter@8.1.11': - resolution: {integrity: sha512-r/U9hcqnodNMHuzRt1g56mWrVsDazR85Djz64M3KOwBhrTj5d46DF4/EE80w/5zR5JOrT7p8WmjJRowiVteOCQ==} - - '@storybook/manager-api@8.1.11': - resolution: {integrity: sha512-QSgwKfAw01K9YvvZj30iGBMgQ4YaCT3vojmttuqdH5ukyXkiO7pENLJj4Y+alwUeSi0g+SJeadCI3PXySBHOGg==} - - '@storybook/manager@8.1.11': - resolution: {integrity: sha512-e02y9dmxowo7cTKYm9am7UO6NOHoHy6Xi7xZf/UA932qLwFZUtk5pnwIEFaZWI3OQsRUCGhP+FL5zizU7uVZeg==} - - '@storybook/node-logger@8.1.11': - resolution: {integrity: sha512-wdzFo7B2naGhS52L3n1qBkt5BfvQjs8uax6B741yKRpiGgeAN8nz8+qelkD25MbSukxvbPgDot7WJvsMU/iCzg==} + '@storybook/instrumenter@8.3.0': + resolution: {integrity: sha512-oJmX8jbNKbPBlNMItRvEoaVAJWX1u6jsqXdIcNRCXo3PDdVnunVYz8vVkG8mbL8Cp/cKlsuQk7YBZA4IM5mRgg==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/preview-api@8.1.11': - resolution: {integrity: sha512-8ZChmFV56GKppCJ0hnBd/kNTfGn2gWVq1242kuet13pbJtBpvOhyq4W01e/Yo14tAPXvgz8dSnMvWLbJx4QfhQ==} + '@storybook/manager-api@8.3.0': + resolution: {integrity: sha512-5WBLEFHpe4H+9vZZLjNh7msIkyl9MPt4/C2nI+MXKZyU55xBBgiAy4fcD9aj02PcbhyR4JhLqbqmdeBe5Xafeg==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/preview@8.1.11': - resolution: {integrity: sha512-K/9NZmjnL0D1BROkTNWNoPqgL2UaocALRSqCARmkBLgU2Rn/FuZgEclHkWlYo6pUrmLNK+bZ+XzpNMu12iTbpg==} + '@storybook/preview-api@8.3.0': + resolution: {integrity: sha512-pHq/T7oWBfzc9TCIPYyJQUXuiUiFfmdrcYvuZE1kf46i7wXh9Q2/Kd3BUJWSCpBXUMoYfAxg9YysGljMII8LWA==} + peerDependencies: + storybook: ^8.3.0 - '@storybook/react-dom-shim@8.1.11': - resolution: {integrity: sha512-KVDSuipqkFjpGfldoRM5xR/N1/RNmbr+sVXqMmelr0zV2jGnexEZnoa7wRHk7IuXuivLWe8BxMxzvQWqjIa4GA==} + '@storybook/react-dom-shim@8.3.0': + resolution: {integrity: sha512-87X4cvgwFT1ll5SzXgQq6iGbkVCgxLBpBm58akF/hzpeRkwfJDncGi/A5hElOJrBg63IkznmSJE7tf9RkrboqQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + storybook: ^8.3.0 - '@storybook/router@8.1.11': - resolution: {integrity: sha512-nU5lsBvy0L8wBYOkjagh29ztZicDATpZNYrHuavlhQ2jznmmHdJvXKYk+VrMAbthjQ6ZBqfeeMNPR1UlnqR5Rw==} - - '@storybook/svelte-vite@8.1.11': - resolution: {integrity: sha512-wjUDKVt98RXmbA84TtSuiSX7/lyKKrTNZgNnfrbxcArsJAwotmrG5BEMLGd1VulREriYqrYbW7fYX2jBucTgxg==} + '@storybook/svelte-vite@8.3.0': + resolution: {integrity: sha512-L8y9vAvjrbO7A4P+xL/CdAKsGe6nZ25wTx+rNin/8FUaKqbyWvItUMObYFPp0GHw2zFcdXkD4frpbufQp6kRLg==} engines: {node: '>=18.0.0'} peerDependencies: '@sveltejs/vite-plugin-svelte': ^2.0.0 || ^3.0.0 + storybook: ^8.3.0 svelte: ^4.0.0 || ^5.0.0-next.65 vite: ^4.0.0 || ^5.0.0 - '@storybook/svelte@8.1.11': - resolution: {integrity: sha512-/xlfPj6q7EmIS+M0V1naI5NWGsK9iwHAHD1fuKmO8KTCqDAmq9bssCZBsaMcZHA7AL3tzpnWxLC52n4wjzaxhw==} + '@storybook/svelte@8.3.0': + resolution: {integrity: sha512-SFvyZ6Jf/RyC2iPySjDqvaXlD31SB51I+zNfIXgXq6JoHMe4TzVTE8FnvIODrY50Pq/y2f3btVqL1HQ9nYRnWA==} engines: {node: '>=18.0.0'} peerDependencies: + storybook: ^8.3.0 svelte: ^4.0.0 || ^5.0.0-next.65 - '@storybook/sveltekit@8.1.11': - resolution: {integrity: sha512-fP3mR9d1TAaSMYLqwjU4YHODoisf7EE0/oheaY8IAx6pbsZbbnLCBKlvH2+i74u8NmLKHS5aFZePd9XiHlowwg==} + '@storybook/sveltekit@8.3.0': + resolution: {integrity: sha512-KhUel8y2ebzvWA/2xV3r+JSWw/zM2N8k/5k/GElZEOo0jI0vgP6dKaGEgXjqqX4uy+sGwpk+3/UC6JR5e5gdGA==} engines: {node: '>=18.0.0'} peerDependencies: + storybook: ^8.3.0 svelte: ^4.0.0 || ^5.0.0-next.65 vite: ^4.0.0 || ^5.0.0 - '@storybook/telemetry@8.1.11': - resolution: {integrity: sha512-Jqvm7HcZismKzPuebhyLECO6KjGiSk4ycbca1WUM/TUvifxCXqgoUPlHHQEEfaRdHS63/MSqtMNjLsQRLC/vNQ==} - - '@storybook/test@8.1.11': - resolution: {integrity: sha512-k+V3HemF2/I8fkRxRqM8uH8ULrpBSAAdBOtWSHWLvHguVcb2YA4g4kKo6tXBB9256QfyDW4ZiaAj0/9TMxmJPQ==} - - '@storybook/theming@8.1.11': - resolution: {integrity: sha512-Chn/opjO6Rl1isNobutYqAH2PjKNkj09YBw/8noomk6gElSa3JbUTyaG/+JCHA6OG/9kUsqoKDb5cZmAKNq/jA==} + '@storybook/test@8.3.0': + resolution: {integrity: sha512-d8y8ST8YY/pSjTxBcWitKM7YbbupN8D0obVlciZRt6WW3o8WUz6iwMuzuJuiUVwtxiRtdKL9jygC5M+aaCpFYQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + storybook: ^8.3.0 - '@storybook/types@8.1.11': - resolution: {integrity: sha512-k9N5iRuY2+t7lVRL6xeu6diNsxO3YI3lS4Juv3RZ2K4QsE/b3yG5ElfJB8DjHDSHwRH4ORyrU71KkOCUVfvtnw==} + '@storybook/theming@8.3.0': + resolution: {integrity: sha512-lJCarAzswZvUgBt/o1LMJp+07Io5G2VI1+Fw+bgn+92kRD8otCFwuMZIy0u7cEjHiEGqGnpzThlIki6vFjEXeA==} + peerDependencies: + storybook: ^8.3.0 - '@sveltejs/adapter-auto@3.2.2': - resolution: {integrity: sha512-Mso5xPCA8zgcKrv+QioVlqMZkyUQ5MjDJiEPuG/Z7cV/5tmwV7LmcVWk5tZ+H0NCOV1x12AsoSpt/CwFwuVXMA==} + '@sveltejs/adapter-auto@3.2.0': + resolution: {integrity: sha512-She5nKT47kwHE18v9NMe6pbJcvULr82u0V3yZ0ej3n1laWKGgkgdEABE9/ak5iDPs93LqsBkuIo51kkwCLBjJA==} peerDependencies: '@sveltejs/kit': ^2.0.0 - '@sveltejs/kit@2.5.24': - resolution: {integrity: sha512-Nr2oxsCsDfEkdS/zzQQQbsPYTbu692Qs3/iE3L7VHzCVjG2+WujF9oMUozWI7GuX98KxYSoPMlAsfmDLSg44hQ==} + '@sveltejs/kit@2.5.27': + resolution: {integrity: sha512-CcbRTzl+65oWljAASL6UlxM4x3NWwd0fjq5fQOfP243vs50myFQ8lil0fr3Im6HeeQqYUCtnv8HjO8REWVPjTw==} engines: {node: '>=18.13'} hasBin: true peerDependencies: @@ -4449,28 +4745,32 @@ packages: svelte: ^4.0.0 || ^5.0.0-next.0 vite: ^5.0.3 - '@sveltejs/package@2.3.2': - resolution: {integrity: sha512-6M8/Te7iXRG7SiH92wugqfyoJpuepjn78L433LnXicUeMso9M/N4vdL9DPK3MfTkVVY4klhNRptVqme3p4oZWA==} + '@sveltejs/package@2.3.5': + resolution: {integrity: sha512-fxWSG+pJHxWwcKltG+JoQ+P1CPO7NHVuZD1Gchi/1mNN6C60yD/voHeeXlqr0HHGkvIrpAjRIHLjsavI77Qsiw==} engines: {node: ^16.14 || >=18} hasBin: true peerDependencies: svelte: ^3.44.0 || ^4.0.0 || ^5.0.0-next.1 - '@sveltejs/vite-plugin-svelte-inspector@2.1.0': - resolution: {integrity: sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==} + '@sveltejs/vite-plugin-svelte-inspector@2.0.0': + resolution: {integrity: sha512-gjr9ZFg1BSlIpfZ4PRewigrvYmHWbDrq2uvvPB1AmTWKuM+dI1JXQSUu2pIrYLb/QncyiIGkFDFKTwJ0XqQZZg==} engines: {node: ^18.0.0 || >=20} peerDependencies: '@sveltejs/vite-plugin-svelte': ^3.0.0 svelte: ^4.0.0 || ^5.0.0-next.0 vite: ^5.0.0 - '@sveltejs/vite-plugin-svelte@3.1.1': - resolution: {integrity: sha512-rimpFEAboBBHIlzISibg94iP09k/KYdHgVhJlcsTfn7KMBhc70jFX/GRWkRdFCc2fdnk+4+Bdfej23cMDnJS6A==} + '@sveltejs/vite-plugin-svelte@3.1.0': + resolution: {integrity: sha512-sY6ncCvg+O3njnzbZexcVtUqOBE3iYmQPJ9y+yXSkOwG576QI/xJrBnQSRXFLGwJNBa0T78JEKg5cIR0WOAuUw==} engines: {node: ^18.0.0 || >=20} peerDependencies: svelte: ^4.0.0 || ^5.0.0-next.0 vite: ^5.0.0 + '@szmarczak/http-timer@4.0.6': + resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} + engines: {node: '>=10'} + '@szmarczak/http-timer@5.0.1': resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} engines: {node: '>=14.16'} @@ -4480,30 +4780,13 @@ packages: peerDependencies: postcss: ^8.2.15 - '@testing-library/dom@10.1.0': - resolution: {integrity: sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==} + '@testing-library/dom@10.4.0': + resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==} engines: {node: '>=18'} - '@testing-library/jest-dom@6.4.5': - resolution: {integrity: sha512-AguB9yvTXmCnySBP1lWjfNNUwpbElsaQ567lt2VdGqAdHtpieLgjmcVyv1q7PMIvLbgpDdkWV5Ydv3FEejyp2A==} + '@testing-library/jest-dom@6.5.0': + resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==} engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - peerDependencies: - '@jest/globals': '>= 28' - '@types/bun': latest - '@types/jest': '>= 28' - jest: '>= 28' - vitest: '>= 0.32' - peerDependenciesMeta: - '@jest/globals': - optional: true - '@types/bun': - optional: true - '@types/jest': - optional: true - jest: - optional: true - vitest: - optional: true '@testing-library/user-event@14.5.2': resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} @@ -4514,8 +4797,8 @@ packages: '@ts-morph/common@0.20.0': resolution: {integrity: sha512-7uKjByfbPpwuzkstL3L5MQyuXPSKdoNG93Fmi2JoDcTf3pEP731JdRFAduRVkOs8oqxPsXKA+ScrWkdQ8t/I+Q==} - '@tsconfig/node10@1.0.11': - resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + '@tsconfig/node10@1.0.9': + resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} '@tsconfig/node12@1.0.11': resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} @@ -4541,8 +4824,8 @@ packages: '@types/babel__template@7.4.4': resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} - '@types/babel__traverse@7.20.6': - resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} + '@types/babel__traverse@7.20.5': + resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} '@types/bn.js@5.1.5': resolution: {integrity: sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==} @@ -4550,39 +4833,27 @@ packages: '@types/body-parser@1.19.5': resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + '@types/cacheable-request@6.0.3': + resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + + '@types/chrome@0.0.136': + resolution: {integrity: sha512-XDEiRhLkMd+SB7Iw3ZUIj/fov3wLd4HyTdLltVszkgl1dBfc3Rb7oPMVZ2Mz2TLqnF7Ow+StbR8E7r9lqpb4DA==} + '@types/connect@3.4.38': resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} '@types/cookie@0.6.0': resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} - '@types/cross-spawn@6.0.6': - resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} - '@types/debug@4.1.12': resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} - '@types/detect-port@1.3.5': - resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==} - - '@types/diff@5.2.1': - resolution: {integrity: sha512-uxpcuwWJGhe2AR1g8hD9F5OYGCqjqWnBUQFD8gMZsDbv8oPHzxJF6iMO6n8Tk0AdzlxoaaoQhOYlIg/PukVU8g==} - '@types/dns-packet@5.6.5': resolution: {integrity: sha512-qXOC7XLOEe43ehtWJCMnQXvgcIpv6rPmQ1jXT98Ad8A3TB1Ue50jsCbSSSyuazScEuZ/Q026vHbrOTVkmwA+7Q==} - '@types/doctrine@0.0.3': - resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} - '@types/dom-screen-wake-lock@1.0.3': resolution: {integrity: sha512-3Iten7X3Zgwvk6kh6/NRdwN7WbZ760YgFCsF5AxDifltUQzW1RaW+WRmcVtgwFzLjaNu64H+0MPJ13yRa8g3Dw==} - '@types/ejs@3.1.5': - resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==} - - '@types/emscripten@1.39.13': - resolution: {integrity: sha512-cFq+fO/isvhvmuP/+Sl4K4jtU6E23DoivtbO4r50e3odaxAiVdbfSYRDdJ4gCdxx+3aRjhphS5ZMwIH4hFy/Cw==} - '@types/eslint@8.56.10': resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} @@ -4598,9 +4869,18 @@ packages: '@types/express@4.17.21': resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + '@types/filesystem@0.0.35': + resolution: {integrity: sha512-1eKvCaIBdrD2mmMgy5dwh564rVvfEhZTWVQQGRNn0Nt4ZEnJ0C8oSUCzvMKRA4lGde5oEVo+q2MrTTbV/GHDCQ==} + + '@types/filewriter@0.0.33': + resolution: {integrity: sha512-xFU8ZXTw4gd358lb2jw25nxY9QAgqn2+bKKjKOYfNCzN4DKCFetK7sPtrlpg66Ywe3vWY9FNxprZawAh9wfJ3g==} + '@types/find-cache-dir@3.2.1': resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} + '@types/har-format@1.2.15': + resolution: {integrity: sha512-RpQH4rXLuvTXKR0zqHq3go0RVXYv/YVqv4TnPH95VbwUxZdQlK1EtcMvQvMpDngHbt13Csh9Z4qT9AbkiQH5BA==} + '@types/hast@3.0.4': resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} @@ -4628,8 +4908,11 @@ packages: '@types/json5@0.0.29': resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - '@types/lodash@4.17.6': - resolution: {integrity: sha512-OpXEVoCKSS3lQqjx9GGGOapBeuW5eUboYHRlHP9urXPX25IKZ6AnP5ZRxtVf63iieUbsHxLn8NQ5Nlftc6yzAA==} + '@types/keyv@3.1.4': + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + + '@types/lodash@4.17.7': + resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==} '@types/mdast@4.0.4': resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} @@ -4649,47 +4932,47 @@ packages: '@types/nlcst@2.0.3': resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} - '@types/node-forge@1.3.11': - resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} - '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} '@types/node@17.0.45': resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - '@types/node@18.19.39': - resolution: {integrity: sha512-nPwTRDKUctxw3di5b4TfT3I0sWDiWoPQCZjXhvdkINntwr8lcoVCKsTgnXeRubKIlfnV+eN/HYk6Jb40tbcEAQ==} + '@types/node@18.15.13': + resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==} - '@types/node@20.14.9': - resolution: {integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==} + '@types/node@18.19.31': + resolution: {integrity: sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA==} - '@types/normalize-package-data@2.4.4': - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + '@types/node@20.12.7': + resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} '@types/object-hash@3.0.6': resolution: {integrity: sha512-fOBV8C1FIu2ELinoILQ+ApxcUKz4ngq+IWUYrxSGjXzzjUALijilampwkMgEtJ+h2njAW3pi853QpzNVCHB73w==} + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + '@types/pbkdf2@3.1.2': resolution: {integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==} - '@types/pretty-hrtime@1.0.3': - resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} - '@types/prop-types@15.7.12': resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} '@types/pug@2.0.10': resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==} - '@types/qs@6.9.15': - resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} + '@types/qs@6.9.16': + resolution: {integrity: sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==} '@types/range-parser@1.2.7': resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - '@types/react@18.3.3': - resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} + '@types/react@18.3.5': + resolution: {integrity: sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==} + + '@types/responselike@1.0.3': + resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} '@types/sax@1.2.7': resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} @@ -4697,8 +4980,8 @@ packages: '@types/secp256k1@4.0.6': resolution: {integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==} - '@types/semver@7.5.8': - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + '@types/semver@7.5.7': + resolution: {integrity: sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==} '@types/send@0.17.4': resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} @@ -4718,6 +5001,9 @@ packages: '@types/unist@3.0.2': resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} + '@types/uuid@10.0.0': + resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==} + '@types/uuid@9.0.8': resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} @@ -4730,8 +5016,19 @@ packages: '@types/yargs@17.0.32': resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} - '@typescript-eslint/eslint-plugin@7.15.0': - resolution: {integrity: sha512-uiNHpyjZtFrLwLDpHnzaDlP3Tt6sGMqTCiqmxaN4n4RP0EfYZDODJyddiFDF44Hjwxr5xAcaYxVKm9QKQFJFLA==} + '@typescript-eslint/eslint-plugin@7.4.0': + resolution: {integrity: sha512-yHMQ/oFaM7HZdVrVm/M2WHaNPgyuJH4WelkSVEWSSsir34kxW2kDJCxlXRhhGWEsMN0WAW/vLpKfKVcm8k+MPw==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + '@typescript-eslint/parser': ^7.0.0 + eslint: ^8.56.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/eslint-plugin@7.9.0': + resolution: {integrity: sha512-6e+X0X3sFe/G/54aC3jt0txuMTURqLyekmEHViqyA2VnxhLMpvA6nqmcjIy+Cr9tLDHPssA74BP5Mx9HQIxBEA==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: '@typescript-eslint/parser': ^7.0.0 @@ -4741,8 +5038,18 @@ packages: typescript: optional: true - '@typescript-eslint/parser@7.15.0': - resolution: {integrity: sha512-k9fYuQNnypLFcqORNClRykkGOMOj+pV6V91R4GO/l1FDGwpqmSwoOQrOHo3cGaH63e+D3ZiCAOsuS/D2c99j/A==} + '@typescript-eslint/parser@7.7.0': + resolution: {integrity: sha512-fNcDm3wSwVM8QYL4HKVBggdIPAy9Q41vcvC/GtDobw3c4ndVT3K6cqudUmjHPw8EAp4ufax0o58/xvWaP2FmTg==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + eslint: ^8.56.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/parser@7.9.0': + resolution: {integrity: sha512-qHMJfkL5qvgQB2aLvhUSXxbK7OLnDkwPzFalg458pxQgfxKDfT1ZDbHQM/I6mDIf/svlMkj21kzKuQ2ixJlatQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -4755,12 +5062,30 @@ packages: resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@typescript-eslint/scope-manager@7.15.0': - resolution: {integrity: sha512-Q/1yrF/XbxOTvttNVPihxh1b9fxamjEoz2Os/Pe38OHwxC24CyCqXxGTOdpb4lt6HYtqw9HetA/Rf6gDGaMPlw==} + '@typescript-eslint/scope-manager@7.4.0': + resolution: {integrity: sha512-68VqENG5HK27ypafqLVs8qO+RkNc7TezCduYrx8YJpXq2QGZ30vmNZGJJJC48+MVn4G2dCV8m5ZTVnzRexTVtw==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/scope-manager@7.7.0': + resolution: {integrity: sha512-/8INDn0YLInbe9Wt7dK4cXLDYp0fNHP5xKLHvZl3mOT5X17rK/YShXaiNmorl+/U4VKCVIjJnx4Ri5b0y+HClw==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/scope-manager@7.9.0': + resolution: {integrity: sha512-ZwPK4DeCDxr3GJltRz5iZejPFAAr4Wk3+2WIBaj1L5PYK5RgxExu/Y68FFVclN0y6GGwH8q+KgKRCvaTmFBbgQ==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/type-utils@7.4.0': + resolution: {integrity: sha512-247ETeHgr9WTRMqHbbQdzwzhuyaJ8dPTuyuUEMANqzMRB1rj/9qFIuIXK7l0FX9i9FXbHeBQl/4uz6mYuCE7Aw==} engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + eslint: ^8.56.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true - '@typescript-eslint/type-utils@7.15.0': - resolution: {integrity: sha512-SkgriaeV6PDvpA6253PDVep0qCqgbO1IOBiycjnXsszNTVQe5flN5wR5jiczoEoDEnAqYFSFFc9al9BSGVltkg==} + '@typescript-eslint/type-utils@7.9.0': + resolution: {integrity: sha512-6Qy8dfut0PFrFRAZsGzuLoM4hre4gjzWJB6sUvdunCYZsYemTkzZNwF1rnGea326PHPT3zn5Lmg32M/xfJfByA==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -4773,8 +5098,16 @@ packages: resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@typescript-eslint/types@7.15.0': - resolution: {integrity: sha512-aV1+B1+ySXbQH0pLK0rx66I3IkiZNidYobyfn0WFsdGhSXw+P3YOqeTq5GED458SfB24tg+ux3S+9g118hjlTw==} + '@typescript-eslint/types@7.4.0': + resolution: {integrity: sha512-mjQopsbffzJskos5B4HmbsadSJQWaRK0UxqQ7GuNA9Ga4bEKeiO6b2DnB6cM6bpc8lemaPseh0H9B/wyg+J7rw==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/types@7.7.0': + resolution: {integrity: sha512-G01YPZ1Bd2hn+KPpIbrAhEWOn5lQBrjxkzHkWvP6NucMXFtfXoevK82hzQdpfuQYuhkvFDeQYbzXCjR1z9Z03w==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/types@7.9.0': + resolution: {integrity: sha512-oZQD9HEWQanl9UfsbGVcZ2cGaR0YT5476xfWE0oE5kQa2sNK2frxOlkeacLOTh9po4AlUT5rtkGyYM5kew0z5w==} engines: {node: ^18.18.0 || >=20.0.0} '@typescript-eslint/typescript-estree@5.62.0': @@ -4786,8 +5119,26 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@7.15.0': - resolution: {integrity: sha512-gjyB/rHAopL/XxfmYThQbXbzRMGhZzGw6KpcMbfe8Q3nNQKStpxnUKeXb0KiN/fFDR42Z43szs6rY7eHk0zdGQ==} + '@typescript-eslint/typescript-estree@7.4.0': + resolution: {integrity: sha512-A99j5AYoME/UBQ1ucEbbMEmGkN7SE0BvZFreSnTd1luq7yulcHdyGamZKizU7canpGDWGJ+Q6ZA9SyQobipePg==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/typescript-estree@7.7.0': + resolution: {integrity: sha512-8p71HQPE6CbxIBy2kWHqM1KGrC07pk6RJn40n0DSc6bMOBBREZxSDJ+BmRzc8B5OdaMh1ty3mkuWRg4sCFiDQQ==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/typescript-estree@7.9.0': + resolution: {integrity: sha512-zBCMCkrb2YjpKV3LA0ZJubtKCDxLttxfdGmwZvTqqWevUPN0FZvSI26FalGFFUZU/9YQK/A4xcQF9o/VVaCKAg==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' @@ -4801,8 +5152,14 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - '@typescript-eslint/utils@7.15.0': - resolution: {integrity: sha512-hfDMDqaqOqsUVGiEPSMLR/AjTSCsmJwjpKkYQRo1FNbmW4tBwBspYDwO9eh7sKSTwMQgBw9/T4DHudPaqshRWA==} + '@typescript-eslint/utils@7.4.0': + resolution: {integrity: sha512-NQt9QLM4Tt8qrlBVY9lkMYzfYtNz8/6qwZg8pI3cMGlPnj6mOpRxxAm7BMJN9K0AiY+1BwJ5lVC650YJqYOuNg==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + eslint: ^8.56.0 + + '@typescript-eslint/utils@7.9.0': + resolution: {integrity: sha512-5KVRQCzZajmT4Ep+NEgjXCvjuypVvYHUW7RHlXzNPuak2oWpVoD1jf5xCP0dPAuNIchjC7uQyvbdaSTFaLqSdA==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -4811,55 +5168,93 @@ packages: resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@typescript-eslint/visitor-keys@7.15.0': - resolution: {integrity: sha512-Hqgy/ETgpt2L5xueA/zHHIl4fJI2O4XUE9l4+OIfbJIRSnTJb/QscncdqqZzofQegIJugRIF57OJea1khw2SDw==} + '@typescript-eslint/visitor-keys@7.4.0': + resolution: {integrity: sha512-0zkC7YM0iX5Y41homUUeW1CHtZR01K3ybjM1l6QczoMuay0XKtrb93kv95AxUGwdjGr64nNqnOCwmEl616N8CA==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/visitor-keys@7.7.0': + resolution: {integrity: sha512-h0WHOj8MhdhY8YWkzIF30R379y0NqyOHExI9N9KCzvmu05EgG4FumeYa3ccfKUSphyWkWQE1ybVrgz/Pbam6YA==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/visitor-keys@7.9.0': + resolution: {integrity: sha512-iESPx2TNLDNGQLyjKhUvIKprlP49XNEK+MvIf9nIO7ZZaZdbnfWKHnXAgufpxqfA0YryH8XToi4+CjBgVnFTSQ==} engines: {node: ^18.18.0 || >=20.0.0} '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - '@vitest/coverage-v8@1.6.0': - resolution: {integrity: sha512-KvapcbMY/8GYIG0rlwwOKCVNRc0OL20rrhFkg/CHNzncV03TE2XWvO5w9uZYoxNiMEBacAJt3unSOiZ7svePew==} + '@vitest/coverage-v8@1.4.0': + resolution: {integrity: sha512-4hDGyH1SvKpgZnIByr9LhGgCEuF9DKM34IBLCC/fVfy24Z3+PZ+Ii9hsVBsHvY1umM1aGPEjceRkzxCfcQ10wg==} peerDependencies: - vitest: 1.6.0 + vitest: 1.4.0 + + '@vitest/expect@1.5.0': + resolution: {integrity: sha512-0pzuCI6KYi2SIC3LQezmxujU9RK/vwC1U9R0rLuGlNGcOuDWxqWKu6nUdFsX9tH1WU0SXtAxToOsEjeUn1s3hA==} '@vitest/expect@1.6.0': resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==} + '@vitest/expect@2.0.5': + resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==} + + '@vitest/pretty-format@2.0.5': + resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==} + + '@vitest/pretty-format@2.1.1': + resolution: {integrity: sha512-SjxPFOtuINDUW8/UkElJYQSFtnWX7tMksSGW0vfjxMneFqxVr8YJ979QpMbDW7g+BIiq88RAGDjf7en6rvLPPQ==} + + '@vitest/runner@1.5.0': + resolution: {integrity: sha512-7HWwdxXP5yDoe7DTpbif9l6ZmDwCzcSIK38kTSIt6CFEpMjX4EpCgT6wUmS0xTXqMI6E/ONmfgRKmaujpabjZQ==} + '@vitest/runner@1.6.0': resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==} + '@vitest/snapshot@1.5.0': + resolution: {integrity: sha512-qpv3fSEuNrhAO3FpH6YYRdaECnnRjg9VxbhdtPwPRnzSfHVXnNzzrpX4cJxqiwgRMo7uRMWDFBlsBq4Cr+rO3A==} + '@vitest/snapshot@1.6.0': resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==} + '@vitest/spy@1.5.0': + resolution: {integrity: sha512-vu6vi6ew5N5MMHJjD5PoakMRKYdmIrNJmyfkhRpQt5d9Ewhw9nZ5Aqynbi3N61bvk9UvZ5UysMT6ayIrZ8GA9w==} + '@vitest/spy@1.6.0': resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==} + '@vitest/spy@2.0.5': + resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==} + + '@vitest/utils@1.5.0': + resolution: {integrity: sha512-BDU0GNL8MWkRkSRdNFvCUCAVOeHaUlVJ9Tx0TYBZyXaaOTmGtUFObzchCivIBrIwKzvZA7A9sCejVhXM2aY98A==} + '@vitest/utils@1.6.0': resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==} - '@volar/kit@2.4.0-alpha.18': - resolution: {integrity: sha512-dZMSNhesh23lhd61ax2l04IgIcYofAjm8M+5BKAmX47ROweyc8RrrslszCFUJynlmXx6JS1PoHqvo8+E0aAYQQ==} + '@vitest/utils@2.0.5': + resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==} + + '@vitest/utils@2.1.1': + resolution: {integrity: sha512-Y6Q9TsI+qJ2CC0ZKj6VBb+T8UPz593N113nnUykqwANqhgf3QkZeHFlusgKLTqrnVHbj/XDKZcDHol+dxVT+rQ==} + + '@volar/kit@2.4.5': + resolution: {integrity: sha512-ZzyErW5UiDfiIuJ/lpqc2Kx5PHDGDZ/bPlPJYpRcxlrn8Z8aDhRlsLHkNKcNiH65TmNahk2kbLaiejiqu6BD3A==} peerDependencies: typescript: '*' - '@volar/language-core@2.4.0-alpha.18': - resolution: {integrity: sha512-JAYeJvYQQROmVRtSBIczaPjP3DX4QW1fOqW1Ebs0d3Y3EwSNRglz03dSv0Dm61dzd0Yx3WgTW3hndDnTQqgmyg==} + '@volar/language-core@2.4.5': + resolution: {integrity: sha512-F4tA0DCO5Q1F5mScHmca0umsi2ufKULAnMOVBfMsZdT4myhVl4WdKRwCaKcfOkIEuyrAVvtq1ESBdZ+rSyLVww==} - '@volar/language-server@2.4.0-alpha.18': - resolution: {integrity: sha512-dciHEE/R5kzI0bY71QfkoCVQ3cQI6g9MHfA4oIP6UhnJy0CdleUalWSygOXoD3Nq7Yk6wn2BRrb1PP5MsadY/Q==} + '@volar/language-server@2.4.5': + resolution: {integrity: sha512-l5PswE0JzCtstTlwBUpikeSa3lNUBJhTuWtj9KclZTGi2Uex4RcqGOhTiDsUUtvdv/hEuYCxGq1EdJJPlQsD/g==} - '@volar/language-service@2.4.0-alpha.18': - resolution: {integrity: sha512-EuetrtbEtudi9buinWAG5U3Jam5dY27zXd/7GYnx542kBwanWOBM8i4DAQd0z7M11fOxXgybxPA933uaSyaOog==} + '@volar/language-service@2.4.5': + resolution: {integrity: sha512-xiFlL0aViGg6JhwAXyohPrdlID13uom8WQg6DWYaV8ob8RRy+zoLlBUI8SpQctwlWEO9poyrYK01revijAwkcw==} - '@volar/snapshot-document@2.4.0-alpha.18': - resolution: {integrity: sha512-JAeclEly/wnILhR4Pu9MpgBLInZJH49O1zoy8fU+pk5I+zpv7JIEby5z2UFAS60+sIDnxBdAGd7rZ5VibE70vg==} + '@volar/source-map@2.4.5': + resolution: {integrity: sha512-varwD7RaKE2J/Z+Zu6j3mNNJbNT394qIxXwdvz/4ao/vxOfyClZpSDtLKkwWmecinkOVos5+PWkWraelfMLfpw==} - '@volar/source-map@2.4.0-alpha.18': - resolution: {integrity: sha512-MTeCV9MUwwsH0sNFiZwKtFrrVZUK6p8ioZs3xFzHc2cvDXHWlYN3bChdQtwKX+FY2HG6H3CfAu1pKijolzIQ8g==} - - '@volar/typescript@2.4.0-alpha.18': - resolution: {integrity: sha512-sXh5Y8sqGUkgxpMWUGvRXggxYHAVxg0Pa1C42lQZuPDrW6vHJPR0VCK8Sr7WJsAW530HuNQT/ZIskmXtxjybMQ==} + '@volar/typescript@2.4.5': + resolution: {integrity: sha512-mcT1mHvLljAEtHviVcBuOyAwwMKz1ibXTi5uYtP/pf4XxoAzpdkQ+Br2IC0NPCvLCbjPZmbf3I0udndkfB1CDg==} '@vscode/emmet-helper@2.9.3': resolution: {integrity: sha512-rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==} @@ -4867,8 +5262,17 @@ packages: '@vscode/l10n@0.0.18': resolution: {integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==} - '@wagmi/cli@2.1.13': - resolution: {integrity: sha512-0lQILHXj7IZfivMa5yEN1OWu5dF17iCgIHOKaPNMMcB9uem+2oEumJEaj0EezZZXLZLNN/lbI7A4TCXNYuoEDg==} + '@wagmi/cli@2.1.15': + resolution: {integrity: sha512-mtTxbuCDRRSd/2tPAklM+4vFOq5E/0zS5OfLE3Ax2KcUWciOnjLJ0m6BAQ6HzqY9YfWo8DXa7UqxzUBkvPYltg==} + hasBin: true + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + '@wagmi/cli@2.1.4': + resolution: {integrity: sha512-vamvEo/GeBjFxb5oZCvby4YZDOrK/RqD+tcWb5X0pqmJDyWbN2Mkv9DYTtVB+OtfVUzFKciN/8Vhw8luMtOJbw==} hasBin: true peerDependencies: typescript: '>=5.0.4' @@ -4876,6 +5280,16 @@ packages: typescript: optional: true + '@wagmi/connectors@4.1.18': + resolution: {integrity: sha512-K/iLH/Z8jwvgPAYESU/uCQtQBvcIR1Jrqk+t2uCDSxew/tYtkOo2yOjtaPuOb+xJ5OrMGg+0tVHhGChYXry9Ow==} + peerDependencies: + '@wagmi/core': 2.6.9 + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + typescript: + optional: true + '@wagmi/connectors@4.3.10': resolution: {integrity: sha512-IZcsocBfDq6pe8sxkDgP2k9YNqv8udl2eSr2hx2JCESA44ixx5zRjoGNMAkKxlzM6uXjXLJKp/g1KYlpmoHkDg==} peerDependencies: @@ -4886,18 +5300,42 @@ packages: typescript: optional: true - '@wagmi/connectors@5.0.21': - resolution: {integrity: sha512-lbjXEv6HhOa9nXZ5r6NGFJdaadCt2Yj9hSWHjKuiTobrE6dEGQqG16mCQS17yXcvXpI62Q/sW6SL347JrBju/Q==} + '@wagmi/connectors@5.1.10': + resolution: {integrity: sha512-ybgKV09PIhgUgQ4atXTs2KOy4Hevd6f972SXfx6HTgsnFXlzxzN6o0aWjhavZOYjvx5tjuL3+8Mgqo0R7uP5Cg==} + peerDependencies: + '@wagmi/core': 2.13.5 + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + typescript: + optional: true + + '@wagmi/core@2.10.2': + resolution: {integrity: sha512-SfQ1F7Azjlx4cKGfmg9+GEUGbukCxraoLYZyCUgTLpKw2OY+4sHsPRwHQENQt/YRWKMyG3/byEYRna2Kv1anpw==} + peerDependencies: + '@tanstack/query-core': '>=5.0.0' + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + '@tanstack/query-core': + optional: true + typescript: + optional: true + + '@wagmi/core@2.13.5': + resolution: {integrity: sha512-lvX/hApJTSA/H2kOklokjIYiUpnT8CpBH80GeOiKxU0CGK1wNHTu20GRTCy0GF1t7jkNwPSG3m0SmnXmgYMmHw==} peerDependencies: - '@wagmi/core': 2.11.6 + '@tanstack/query-core': '>=5.0.0' typescript: '>=5.0.4' viem: 2.x peerDependenciesMeta: + '@tanstack/query-core': + optional: true typescript: optional: true - '@wagmi/core@2.11.6': - resolution: {integrity: sha512-Ohk7Bh+Q8kjzxEHImIq98CnPduz8n1a5bdwJi6F7zU3h62crhlVq7fZBYoBhoDgmX0ROVOMr8WW3XU3XhRwUOw==} + '@wagmi/core@2.8.0': + resolution: {integrity: sha512-u0CWfbpdv2T3jE1yZQPwxvLlUVMymMoy73g6UE4XYNilF+EjdYu43EjWNvvB9lJcfSyYk6/VdKNHxJ2G+iBxYw==} peerDependencies: '@tanstack/query-core': '>=5.0.0' typescript: '>=5.0.4' @@ -4908,20 +5346,33 @@ packages: typescript: optional: true + '@walletconnect/core@2.11.2': + resolution: {integrity: sha512-bB4SiXX8hX3/hyBfVPC5gwZCXCl+OPj+/EDVM71iAO3TDsh78KPbrVAbDnnsbHzZVHlsMohtXX3j5XVsheN3+g==} + + '@walletconnect/core@2.12.2': + resolution: {integrity: sha512-7Adv/b3pp9F42BkvReaaM4KS8NEvlkS7AMtwO3uF/o6aRMKtcfTJq9/jgWdKJh4RP8pPRTRFjCw6XQ/RZtT4aQ==} + '@walletconnect/core@2.13.0': resolution: {integrity: sha512-blDuZxQenjeXcVJvHxPznTNl6c/2DO4VNrFnus+qHmO6OtT5lZRowdMtlCaCNb1q0OxzgrmBDcTOCbFcCpio/g==} - '@walletconnect/core@2.13.3': - resolution: {integrity: sha512-TdF+rC6rONJGyOUtt/nLkbyQWjnkwbD3kXq3ZA0Q7+tYtmSjTDE4wbArlLbHIbtf69g+9/DpEVEQimWWcEOn2g==} + '@walletconnect/core@2.16.1': + resolution: {integrity: sha512-UlsnEMT5wwFvmxEjX8s4oju7R3zadxNbZgsFeHEsjh7uknY2zgmUe1Lfc5XU6zyPb1Jx7Nqpdx1KN485ee8ogw==} + engines: {node: '>=18'} '@walletconnect/environment@1.0.1': resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==} + '@walletconnect/ethereum-provider@2.11.2': + resolution: {integrity: sha512-BUDqee0Uy2rCZVkW5Ao3q6Ado/3fePYnFdryVF+YL6bPhj+xQZ5OfKodl+uvs7Rwq++O5wTX2RqOTzpW7+v+Mg==} + + '@walletconnect/ethereum-provider@2.12.2': + resolution: {integrity: sha512-vBl2zCnNm2iPaomJdr5YT16cT7aa8cH2WFs6879XPngU5i7HXS3bU6TamhyhKKl13sdIfifmCkCC+RWn5GdPMw==} + '@walletconnect/ethereum-provider@2.13.0': resolution: {integrity: sha512-dnpW8mmLpWl1AZUYGYZpaAfGw1HFkL0WSlhk5xekx3IJJKn4pLacX2QeIOo0iNkzNQxZfux1AK4Grl1DvtzZEA==} - '@walletconnect/ethereum-provider@2.13.3': - resolution: {integrity: sha512-gThsYguFJ7XZp18GP23W6TooQaS6XlF4faFDXPCQVqlWjzEatkkQ2R6Hhv4a4qk4D21qNXirCFnI59Xhbj0KJQ==} + '@walletconnect/ethereum-provider@2.16.1': + resolution: {integrity: sha512-oD7DNCssUX3plS5gGUZ9JQ63muQB/vxO68X6RzD2wd8gBsYtSPw4BqYFc7KTO6dUizD6gfPirw32yW2pTvy92w==} '@walletconnect/events@1.0.1': resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==} @@ -4932,9 +5383,15 @@ packages: '@walletconnect/heartbeat@1.2.2': resolution: {integrity: sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==} + '@walletconnect/jsonrpc-http-connection@1.0.7': + resolution: {integrity: sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ==} + '@walletconnect/jsonrpc-http-connection@1.0.8': resolution: {integrity: sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==} + '@walletconnect/jsonrpc-provider@1.0.13': + resolution: {integrity: sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==} + '@walletconnect/jsonrpc-provider@1.0.14': resolution: {integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==} @@ -4973,44 +5430,74 @@ packages: '@walletconnect/relay-api@1.0.10': resolution: {integrity: sha512-tqrdd4zU9VBNqUaXXQASaexklv6A54yEyQQEXYOCr+Jz8Ket0dmPBDyg19LVSNUN2cipAghQc45/KVmfFJ0cYw==} + '@walletconnect/relay-api@1.0.11': + resolution: {integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==} + + '@walletconnect/relay-api@1.0.9': + resolution: {integrity: sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==} + '@walletconnect/relay-auth@1.0.4': resolution: {integrity: sha512-kKJcS6+WxYq5kshpPaxGHdwf5y98ZwbfuS4EE/NkQzqrDFm5Cj+dP8LofzWvjrrLkZq7Afy7WrQMXdLy8Sx7HQ==} '@walletconnect/safe-json@1.0.2': resolution: {integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==} + '@walletconnect/sign-client@2.11.2': + resolution: {integrity: sha512-MfBcuSz2GmMH+P7MrCP46mVE5qhP0ZyWA0FyIH6/WuxQ6G+MgKsGfaITqakpRPsykWOJq8tXMs3XvUPDU413OQ==} + + '@walletconnect/sign-client@2.12.2': + resolution: {integrity: sha512-cM0ualXj6nVvLqS4BDNRk+ZWR+lubcsz/IHreH+3wYrQ2sV+C0fN6ctrd7MMGZss0C0qacWCx0pm62ZBuoKvqA==} + '@walletconnect/sign-client@2.13.0': resolution: {integrity: sha512-En7KSvNUlQFx20IsYGsFgkNJ2lpvDvRsSFOT5PTdGskwCkUfOpB33SQJ6nCrN19gyoKPNvWg80Cy6MJI0TjNYA==} - '@walletconnect/sign-client@2.13.3': - resolution: {integrity: sha512-3Pcq6trHWdBZn5X0VUFQ3zJaaqyEbMW9WNVKcZ2SakIpQAwySd08Mztvq48G98jfucdgP3tjGPbBvzHX9vJX7w==} + '@walletconnect/sign-client@2.16.1': + resolution: {integrity: sha512-s2Tx2n2duxt+sHtuWXrN9yZVaHaYqcEcjwlTD+55/vs5NUPlISf+fFmZLwSeX1kUlrSBrAuxPUcqQuRTKcjLOA==} '@walletconnect/time@1.0.2': resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==} + '@walletconnect/types@2.11.2': + resolution: {integrity: sha512-p632MFB+lJbip2cvtXPBQslpUdiw1sDtQ5y855bOlAGquay+6fZ4h1DcDePeKQDQM3P77ax2a9aNPZxV6y/h1Q==} + '@walletconnect/types@2.12.0': resolution: {integrity: sha512-uhB3waGmujQVJcPgJvGOpB8RalgYSBT+HpmVbfl4Qe0xJyqpRUo4bPjQa0UYkrHaW20xIw94OuP4+FMLYdeemg==} + '@walletconnect/types@2.12.2': + resolution: {integrity: sha512-9CmwTlPbrFTzayTL9q7xM7s3KTJkS6kYFtH2m1/fHFgALs6pIUjf1qAx1TF2E4tv7SEzLAIzU4NqgYUt2vWXTg==} + '@walletconnect/types@2.13.0': resolution: {integrity: sha512-MWaVT0FkZwzYbD3tvk8F+2qpPlz1LUSWHuqbINUtMXnSzJtXN49Y99fR7FuBhNFtDalfuWsEK17GrNA+KnAsPQ==} - '@walletconnect/types@2.13.3': - resolution: {integrity: sha512-9UdtLoQqwGFfepCPprUAXeUbKg9zyDarPRmEJVco51OWXHCOpvRgroWk54fQHDhCUIfDELjObY6XNAzNrmNYUA==} + '@walletconnect/types@2.16.1': + resolution: {integrity: sha512-9P4RG4VoDEF+yBF/n2TF12gsvT/aTaeZTVDb/AOayafqiPnmrQZMKmNCJJjq1sfdsDcHXFcZWMGsuCeSJCmrXA==} + + '@walletconnect/universal-provider@2.11.2': + resolution: {integrity: sha512-cNtIn5AVoDxKAJ4PmB8m5adnf5mYQMUamEUPKMVvOPscfGtIMQEh9peKsh2AN5xcRVDbgluC01Id545evFyymw==} + + '@walletconnect/universal-provider@2.12.2': + resolution: {integrity: sha512-0k5ZgSkABopQLVhkiwl2gRGG7dAP4SWiI915pIlyN5sRvWV+qX1ALhWAmRcdv0TXWlKHDcDgPJw/q2sCSAHuMQ==} '@walletconnect/universal-provider@2.13.0': resolution: {integrity: sha512-B5QvO8pnk5Bqn4aIt0OukGEQn2Auk9VbHfhQb9cGwgmSCd1GlprX/Qblu4gyT5+TjHMb1Gz5UssUaZWTWbDhBg==} - '@walletconnect/universal-provider@2.13.3': - resolution: {integrity: sha512-2tuV2d8AdB4Fg/uMs8IdNHrjYy1Tz1uT5kzaT8X1/wx5DHHa/oaheoY5kDZHI0L1oNIg/OlM0/ovonGIcI5ddw==} + '@walletconnect/universal-provider@2.16.1': + resolution: {integrity: sha512-q/tyWUVNenizuClEiaekx9FZj/STU1F3wpDK4PUIh3xh+OmUI5fw2dY3MaNDjyb5AyrS0M8BuQDeuoSuOR/Q7w==} + + '@walletconnect/utils@2.11.2': + resolution: {integrity: sha512-LyfdmrnZY6dWqlF4eDrx5jpUwsB2bEPjoqR5Z6rXPiHJKUOdJt7az+mNOn5KTSOlRpd1DmozrBrWr+G9fFLYVw==} '@walletconnect/utils@2.12.0': resolution: {integrity: sha512-GIpfHUe1Bjp1Tjda0SkJEizKOT2biuv7VPFnKsOLT1T+8QxEP9NruC+K2UUEvijS1Qr/LKH9P5004RYNgrch+w==} + '@walletconnect/utils@2.12.2': + resolution: {integrity: sha512-zf50HeS3SfoLv1N9GPl2IXTZ9TsXfet4usVAsZmX9P6/Xzq7d/7QakjVQCHH/Wk1O9XkcsfeoZoUhRxoMJ5uJw==} + '@walletconnect/utils@2.13.0': resolution: {integrity: sha512-q1eDCsRHj5iLe7fF8RroGoPZpdo2CYMZzQSrw1iqL+2+GOeqapxxuJ1vaJkmDUkwgklfB22ufqG6KQnz78sD4w==} - '@walletconnect/utils@2.13.3': - resolution: {integrity: sha512-hjyyNhnhTCezGNr6OCfKRzqRsiak+p+YP57iRo1Tsf222fsj/9JD++MP97YiDwc4e4xXaZp/boiLB+8hJHsCog==} + '@walletconnect/utils@2.16.1': + resolution: {integrity: sha512-aoQirVoDoiiEtYeYDtNtQxFzwO/oCrz9zqeEEXYJaAwXlGVTS34KFe7W3/Rxd/pldTYKFOZsku2EzpISfH8Wsw==} '@walletconnect/window-getters@1.0.1': resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==} @@ -5018,18 +5505,38 @@ packages: '@walletconnect/window-metadata@1.0.1': resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==} + '@web3modal/common@4.1.11': + resolution: {integrity: sha512-zcoaixcI3dLC/D0QlhpT8MNCd717O1/3r1AemC5/9Wbk2F+YKXkzJZHmWlXoTvlTw9DH07rJzs9YTPxFyn855w==} + '@web3modal/common@4.2.3': resolution: {integrity: sha512-n0lvhoRjViqxmkgpy+iEM6E3HBylUgdxUDJU4hUxGmmrbGZGEP7USBRnQOEgXLqLCtWvxKjUAO33JBV/De+Osw==} - '@web3modal/common@5.1.0': - resolution: {integrity: sha512-TIYncrKDnFKE+q0mudzVCvGOZdNWa0kzkp+iL0zpbHm9sL+ceV4eOCip09Xcvrb5HeaBv1ROgAMPGLmpVCO3AA==} + '@web3modal/common@5.1.8': + resolution: {integrity: sha512-W3tvTQ5FPauFjDSRIx3H6SurzzDHPeN3q7cMaxuOZb3Scf76vMkz9Af970Q44Jmlz1PGDKZzhEsmOzw6LJF+CA==} + + '@web3modal/core@4.1.11': + resolution: {integrity: sha512-e475IIWywEtgH1CCB2Pl1C/wgPu0NzAvtTMOPSGNoHsw1ID2n6j/o4CURQb2HJjOoYQjTKKVkzXa44vFh2p9xw==} '@web3modal/core@4.2.3': resolution: {integrity: sha512-UykKZTELBpb6ey+IV6fkHWsLkjrIdILmRYzhlznyTPbm9qX5pOR9tH0Z3QGUo7YPFmUqMRH1tC9Irsr3SgIbbw==} + '@web3modal/polyfills@4.1.11': + resolution: {integrity: sha512-+aMmjGrLCKLo4gVAdWgFdOX2ZjExciSLw/YlZ01wLO8Yj3bZbCZ7sjBc9xndHOVMK0QyUzBtpCOpYMJzi+59jg==} + '@web3modal/polyfills@4.2.3': resolution: {integrity: sha512-RiGxh2hMLSD1s2aTjoejNK/UL377CJhGf5tzmdF1m5xsYHpil+Dnulpio8Yojnm27cOqQD+QiaYUKnHOxErLjQ==} + '@web3modal/scaffold-react@4.1.11': + resolution: {integrity: sha512-vouJHj77ZNKvR/Uyb3Hfc2UFSA4ZrrHmA0vbioCbgIh+V1rYT5XcAZDEu4AAo1qJ5NBRU1pkClVwAmQuWGY43w==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + '@web3modal/scaffold-react@4.2.3': resolution: {integrity: sha512-WRA244mO3qa9wnJtRa+mfXHkfW92VEkEt+HagLQuUcSRTQJH0Q95UF+EXZZ/r1mKbqdqIbpguewuF0dRtL/YrQ==} peerDependencies: @@ -5041,9 +5548,20 @@ packages: react-dom: optional: true + '@web3modal/scaffold-utils@4.1.11': + resolution: {integrity: sha512-nsS9yK5tp1N/VfecLLPc8H/dGJCzn0jElWjRS92VfGPhOSiEh5PIrPyCl9o6wUZsp4fH1YUsoSY2EFpPsuCWgw==} + '@web3modal/scaffold-utils@4.2.3': resolution: {integrity: sha512-z6t0ggYg1/8hpaKHUm77z2VyacjIZEZTI8IHSQYmHuRFGu5oDPJeAr1thr475JXdoGLYr08hwquZyed/ZINAvw==} + '@web3modal/scaffold-vue@4.1.11': + resolution: {integrity: sha512-PmIfD2TlKkZZa6V0sqwDtZ7t62BEk5JjCHd380QaZwGTbPEwS99leTWLKBTaxAPShK2p7+aj2Txss63wIXLRFg==} + peerDependencies: + vue: '>=3' + peerDependenciesMeta: + vue: + optional: true + '@web3modal/scaffold-vue@4.2.3': resolution: {integrity: sha512-0mlx/t0A7srcuFcxP3xuUt2ACFUUcAhyRIsNImtQHPq7QHx7i5zvabQ38iplDsWS0TA7j83hW5gxHycppa5PXg==} peerDependencies: @@ -5052,15 +5570,41 @@ packages: vue: optional: true + '@web3modal/scaffold@4.1.11': + resolution: {integrity: sha512-n8bP3cJNQxV8OD3s8bSj8QDbZvjn8a1Ui81jo2a3rIxOUAlD/cKRM8ivmNxiUdBMae8GP5CLiWtkIptmSLw40Q==} + '@web3modal/scaffold@4.2.3': resolution: {integrity: sha512-8K+IV+luDUvppKgmlgdA+RbQGT2STdRrgHVHFRsAqsORFoLiIYvlrpQlxvV7J5Xc1bgKEn3KvEXC+BH2NMqF4w==} + '@web3modal/siwe@4.1.11': + resolution: {integrity: sha512-gndcNA351mkAR0wUsO4dLS9CbpcFo+AQ2CUXF0Jx83DwaBStCVsX3yllfnYKh/gpVetF3B48mRUt9TTTJJ79dA==} + '@web3modal/siwe@4.2.3': resolution: {integrity: sha512-uPma0U/OxAy3LwnF7pCYYX8tn+ONBYNcssuVZxEGsusJD1kF4ueS8lK7eyQogyK5nXqOGdNESOjY1NImNNjMVw==} + '@web3modal/ui@4.1.11': + resolution: {integrity: sha512-lentHZvUpNjVasvNI8/jrVPIAV1M5zJKZ4Q4AeYwUJdEtlRon1uq10MRylmvlZAjWb98U130uJy245Fz87Th/w==} + '@web3modal/ui@4.2.3': resolution: {integrity: sha512-QPPgE0hii1gpAldTdnrP63D/ryI78Ohz99zRBp8vi81lawot7rbdUbryMoX13hMPCW9vW7JYyvX+jJN7uO3QwA==} + '@web3modal/wagmi@4.1.11': + resolution: {integrity: sha512-VoXV9idD0yV7jx0F2Xk722VXqQNCDKqDc+LR8WsuOU64TiTLJx9UDQpNcoigbC3bYCi/4Cpw41iSGgs7utbgyQ==} + peerDependencies: + '@wagmi/connectors': '>=4.0.0' + '@wagmi/core': '>=2.0.0' + react: '>=17' + react-dom: '>=17' + viem: '>=2.0.0' + vue: '>=3' + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + vue: + optional: true + '@web3modal/wagmi@4.2.3': resolution: {integrity: sha512-oisBCMrOYn8TBgNaSPrumvMmTGox6+3Ii92zxQJalW5U/K9iBTxoejHT033Ss7mFEFybilcfXBAvGNFXfQmtkA==} peerDependencies: @@ -5078,31 +5622,31 @@ packages: vue: optional: true + '@web3modal/wallet@4.1.11': + resolution: {integrity: sha512-6eJSpNcrBxufJFEQu9+ZOMUZxPqa8438RvfYKCU9nLXwoBtweo6ecpQw2yhXDlrfG+uJZhFabtPxROabn2M8Kg==} + '@web3modal/wallet@4.2.3': resolution: {integrity: sha512-V+VpwmhQl9qeJMpzNkjpAaxercAsrr1O9oGRjrjD+c0q72NfdcbTalWSbjSQmqabI1M6N06Hw94FkAQuEfVGsg==} '@webgpu/types@0.1.21': resolution: {integrity: sha512-pUrWq3V5PiSGFLeLxoGqReTZmiiXwY3jRkIG5sLLKjyqNxrwm/04b4nw7LSmGWJcKk59XOM/YRTUwOzo4MMlow==} - '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15': - resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} - engines: {node: '>=14.15.0'} - peerDependencies: - esbuild: '>=0.10.0' - - '@yarnpkg/fslib@2.10.3': - resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} - - '@yarnpkg/libzip@2.3.0': - resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} - '@zerodevx/svelte-toast@0.9.5': resolution: {integrity: sha512-JLeB/oRdJfT+dz9A5bgd3Z7TuQnBQbeUtXrGIrNWMGqWbabpepBF2KxtWVhL2qtxpRqhae2f6NAOzH7xs4jUSw==} peerDependencies: svelte: ^3.57.0 || ^4.0.0 + abitype@0.9.10: + resolution: {integrity: sha512-FIS7U4n7qwAT58KibwYig5iFG4K61rbhAqaQh/UWj8v1Y8mjX3F8TC9gd8cz9yT1TYel9f8nS5NO5kZp2RW0jQ==} + peerDependencies: + typescript: '>=5.0.4' + zod: ^3 >=3.22.0 + peerDependenciesMeta: + typescript: + optional: true + zod: + optional: true + abitype@0.9.8: resolution: {integrity: sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ==} peerDependencies: @@ -5114,6 +5658,28 @@ packages: zod: optional: true + abitype@1.0.0: + resolution: {integrity: sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ==} + peerDependencies: + typescript: '>=5.0.4' + zod: ^3 >=3.22.0 + peerDependenciesMeta: + typescript: + optional: true + zod: + optional: true + + abitype@1.0.2: + resolution: {integrity: sha512-aFt4k2H+eiAKy/zxtnORa9iIb10BMBeWL18l8v4+QuwYEBXPxxjSB1bFZCzQmKPoj8m7j68K705l3uY+E2gAjg==} + peerDependencies: + typescript: '>=5.0.4' + zod: ^3 >=3.22.0 + peerDependenciesMeta: + typescript: + optional: true + zod: + optional: true + abitype@1.0.5: resolution: {integrity: sha512-YzDhti7cjlfaBhHutMaboYB21Ha3rXR9QTkNJFzYC4kC8YclaiwPBBBJY8ejFdu2wnJeZCVZSMlQJ7fi8S6hsw==} peerDependencies: @@ -5125,10 +5691,24 @@ packages: zod: optional: true + abitype@1.0.6: + resolution: {integrity: sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A==} + peerDependencies: + typescript: '>=5.0.4' + zod: ^3 >=3.22.0 + peerDependenciesMeta: + typescript: + optional: true + zod: + optional: true + abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} engines: {node: '>=6.5'} + abortcontroller-polyfill@1.7.5: + resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==} + accepts@1.3.8: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} engines: {node: '>= 0.6'} @@ -5138,12 +5718,12 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn-walk@8.3.3: - resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} + acorn-walk@8.3.2: + resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} engines: {node: '>=0.4.0'} - acorn@8.12.0: - resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} + acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} engines: {node: '>=0.4.0'} hasBin: true @@ -5152,15 +5732,14 @@ packages: engines: {node: '>=0.4.0'} hasBin: true - address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} - aes-js@3.0.0: resolution: {integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==} - agent-base@7.1.1: - resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} + aes-js@4.0.0-beta.5: + resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==} + + agent-base@7.1.0: + resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} engines: {node: '>= 14'} ajv-draft-04@1.0.0: @@ -5174,8 +5753,11 @@ packages: ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - ajv@8.16.0: - resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} + ajv@8.12.0: + resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + + amazon-cognito-identity-js@6.3.12: + resolution: {integrity: sha512-s7NKDZgx336cp+oDeUtB2ZzT8jWJp/v2LWuYl+LQtMEODe22RF1IJ4nRiDATp+rp1pTffCZcm44Quw4jx2bqNg==} anser@1.4.10: resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==} @@ -5218,8 +5800,8 @@ packages: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} - antlr4@4.13.1-patch-1: - resolution: {integrity: sha512-OjFLWWLzDMV9rdFhpvroCWR4ooktNg9/nvVYSA5z28wuVpU36QUNuioR1XLnQtcjVlf8npjyz593PxnU/f/Cow==} + antlr4@4.13.1: + resolution: {integrity: sha512-kiXTspaRYvnIArgE97z5YVVf/cDVQABr3abFRR6mE7yesLMkgu4ujuyV/sgxafQ8wgve0DJQUJ38Z8tkgA2izA==} engines: {node: '>=16'} any-promise@1.3.0: @@ -5232,9 +5814,6 @@ packages: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} - app-root-dir@1.0.2: - resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} - appdirsjs@1.2.7: resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==} @@ -5250,22 +5829,17 @@ packages: argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - aria-hidden@1.2.4: - resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} - engines: {node: '>=10'} - aria-query@5.3.0: resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} - array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} + array-buffer-byte-length@1.0.0: + resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} array-flatten@1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} - array-includes@3.1.8: - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} + array-includes@3.1.7: + resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} engines: {node: '>= 0.4'} array-iterate@2.0.1: @@ -5275,8 +5849,8 @@ packages: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - array.prototype.findlastindex@1.2.5: - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} + array.prototype.findlastindex@1.2.3: + resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} engines: {node: '>= 0.4'} array.prototype.flat@1.3.2: @@ -5287,19 +5861,27 @@ packages: resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} engines: {node: '>= 0.4'} - arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + arraybuffer.prototype.slice@1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} engines: {node: '>= 0.4'} asap@2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - assert@2.1.0: - resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} + asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + + assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + ast-parents@0.0.1: resolution: {integrity: sha512-XHusKxKz3zoYk1ic8Un640joHbFMhbqneyoZfoKnEGtf2ey9Uh/IdpcQplODdO/kENaMIWsD0nJm4+wX3UNLHA==} @@ -5328,14 +5910,14 @@ packages: peerDependencies: astro: ^4.0.0-beta || ^3.3.0 - astro-og-canvas@0.5.1: - resolution: {integrity: sha512-Xm37vqyMu3kNRU5tm7nheJf2n8+gweuaDX4efMxPSKEggSF8UznvgreOomzAPqDbcs8LM2fQsyOcMbJFtb3aZg==} + astro-og-canvas@0.5.0: + resolution: {integrity: sha512-nrwZpFL9d6tVJRKV5OLZa3xSSh+Cbaaoay/R9jAgHCrJ79WNyN2rgRT/+wtP1O/bCQ+wVP3GC3mBQN7vogImvg==} engines: {node: '>=18.14.1'} peerDependencies: astro: ^3.0.0 || ^4.0.0 - astro@4.13.3: - resolution: {integrity: sha512-MyhmM0v5sphiVwxAm5jjKxWeuPZijWPJ8Ajdign9QzEmLWSH8vUYIJWx/dWRQ6vF1I0jXrksoj3wtw5nzXt9nw==} + astro@4.15.6: + resolution: {integrity: sha512-SWcUNwm8CiVRaIbh4w5byh62BNihpsovlCd4ElvC7cL/53D24HcI7AaGFsPrromCamQklwQmIan/QS7x/3lLuQ==} engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} hasBin: true @@ -5345,8 +5927,14 @@ packages: async-mutex@0.2.6: resolution: {integrity: sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==} - async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + async-retry@1.3.3: + resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==} + + async@2.6.4: + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + + async@3.2.3: + resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==} asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -5355,6 +5943,13 @@ packages: resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} engines: {node: '>=8.0.0'} + autoprefixer@10.4.18: + resolution: {integrity: sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + autoprefixer@10.4.19: resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} engines: {node: ^10 || ^12 || >=14} @@ -5362,12 +5957,24 @@ packages: peerDependencies: postcss: ^8.1.0 - available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + available-typed-arrays@1.0.5: + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} engines: {node: '>= 0.4'} - axios@1.7.2: - resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} + aws-sign2@0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + + aws4@1.13.2: + resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==} + + axios-proxy-builder@0.1.2: + resolution: {integrity: sha512-6uBVsBZzkB3tCC8iyx59mCjQckhB8+GQrI9Cop8eC7ybIsvs/KtnNgEBfRMSEa7GqK2VBGUzgjNYMdPIfotyPA==} + + axios@1.6.7: + resolution: {integrity: sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==} + + axios@1.7.7: + resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==} axobject-query@4.0.0: resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==} @@ -5381,18 +5988,22 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - babel-plugin-polyfill-corejs2@0.4.11: - resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} + babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + + babel-plugin-polyfill-corejs2@0.4.8: + resolution: {integrity: sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs3@0.10.4: - resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} + babel-plugin-polyfill-corejs3@0.9.0: + resolution: {integrity: sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-regenerator@0.6.2: - resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} + babel-plugin-polyfill-regenerator@0.5.5: + resolution: {integrity: sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 @@ -5423,13 +6034,12 @@ packages: bcp-47@2.1.0: resolution: {integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==} + bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + bech32@1.1.4: resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} - better-opn@3.0.2: - resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} - engines: {node: '>=12.0.0'} - better-path-resolve@1.0.0: resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} engines: {node: '>=4'} @@ -5441,8 +6051,8 @@ packages: bignumber.js@9.1.2: resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==} - binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + binary-extensions@2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} engines: {node: '>=8'} bl@4.1.0: @@ -5454,8 +6064,11 @@ packages: blakejs@1.2.1: resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==} - blob-to-it@2.0.7: - resolution: {integrity: sha512-mFAR/GKDDqFOkSBB7shXfsUZwU5DgK453++I8/SImNacfJsdKlx/oHTO0T4ZYHz8A2dnSONE+CX8L29VlWGKiQ==} + blob-to-it@2.0.6: + resolution: {integrity: sha512-xveo/z3QNilIJgCZAjzvx2uWWVHE4JzOy7eMp45zkuBsmwZMgjfhn2h/+BsZPaByVFa3u1W/OBUleNiqgMtVpQ==} + + bluebird@3.7.2: + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} bn.js@4.11.6: resolution: {integrity: sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==} @@ -5466,8 +6079,8 @@ packages: bn.js@5.2.1: resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} - body-parser@1.20.2: - resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} + body-parser@1.20.3: + resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} boolbase@1.0.0: @@ -5490,6 +6103,10 @@ packages: brace-expansion@2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} @@ -5503,17 +6120,19 @@ packages: browser-readablestream-to-it@1.0.3: resolution: {integrity: sha512-+12sHB+Br8HIh6VAMVEG5r3UXCyESIgDW7kzk3BjIXa43DVqVwL7GC5TW3jeh+72dtcH99pPVpw0X8i0jt+/kw==} - browser-readablestream-to-it@2.0.7: - resolution: {integrity: sha512-g1Aznml3HmqTLSXylZhGwdfnAa67+vlNAYhT9ROJZkAxY7yYmWusND10olvCMPe4sVhZyVwn5tPkRzOg85kBEg==} + browser-readablestream-to-it@2.0.6: + resolution: {integrity: sha512-csJm66U/gTC6VHjeaOaziK6Y6ENdrzlNLdXnsdnvGX+3hGvedkxTyiMk2WbgKR8F15ACxDLJhDuE/cmovLPBQQ==} browserify-aes@1.2.0: resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} - browserify-zlib@0.1.4: - resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} + browserslist@4.23.0: + resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true - browserslist@4.23.1: - resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==} + browserslist@4.23.3: + resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -5529,9 +6148,8 @@ packages: bser@2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} - buffer-crc32@1.0.0: - resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} - engines: {node: '>=8.0.0'} + buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} @@ -5539,9 +6157,15 @@ packages: buffer-reverse@1.0.1: resolution: {integrity: sha512-M87YIUBsZ6N924W57vDwT/aOu8hw7ZgdByz6ijksLjmHJELBASmYTTlNHRgjE+pTsT9oJXGaDSgqqwfdHotDUg==} + buffer-to-arraybuffer@0.0.5: + resolution: {integrity: sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==} + buffer-xor@1.0.3: resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} + buffer@4.9.2: + resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==} + buffer@5.6.0: resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==} @@ -5559,11 +6183,15 @@ packages: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} - builtins@5.1.0: - resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} + builtins@5.0.1: + resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} + + bundle-name@3.0.0: + resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} + engines: {node: '>=12'} - bundle-require@4.2.1: - resolution: {integrity: sha512-7Q/6vkyYAwOmQNRw75x+4yRtZCZJXUDmHHlFdkiV0wgv/reNjtJwpu1jPJ0w2kbEpIM0uoKI3S4/f39dU7AjSA==} + bundle-require@4.0.2: + resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: esbuild: '>=0.17' @@ -5580,6 +6208,14 @@ packages: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} + cacheable-lookup@5.0.4: + resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} + engines: {node: '>=10.6.0'} + + cacheable-lookup@6.1.0: + resolution: {integrity: sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww==} + engines: {node: '>=10.6.0'} + cacheable-lookup@7.0.0: resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} engines: {node: '>=14.16'} @@ -5588,6 +6224,10 @@ packages: resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==} engines: {node: '>=14.16'} + cacheable-request@7.0.4: + resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} + engines: {node: '>=8'} + call-bind@1.0.7: resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} engines: {node: '>= 0.4'} @@ -5611,6 +6251,9 @@ packages: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} + camel-case@4.1.2: + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + camelcase-css@2.0.1: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} engines: {node: '>= 6'} @@ -5627,14 +6270,26 @@ packages: resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} engines: {node: '>=14.16'} - caniuse-lite@1.0.30001639: - resolution: {integrity: sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg==} + caniuse-lite@1.0.30001593: + resolution: {integrity: sha512-UWM1zlo3cZfkpBysd7AS+z+v007q9G1+fLTUU42rQnY6t2axoogPW/xol6T7juU5EUoOhML4WgBIdG+9yYqAjQ==} + + caniuse-lite@1.0.30001614: + resolution: {integrity: sha512-jmZQ1VpmlRwHgdP1/uiKzgiAuGOfLEJsYFP4+GBou/QQ4U6IOJCB4NP1c+1p9RGLpwObcT94jA5/uO+F1vBbog==} + + caniuse-lite@1.0.30001660: + resolution: {integrity: sha512-GacvNTTuATm26qC74pt+ad1fW15mlQ/zuTzzY1ZoIzECTP8HURDfF43kNxPgf7H1jmelCBQTTbBNxdSXOA7Bqg==} canvaskit-wasm@0.39.1: resolution: {integrity: sha512-Gy3lCmhUdKq+8bvDrs9t8+qf7RvcjuQn+we7vTVVyqgOVO1UVfHpsnBxkTZw+R4ApEJ3D5fKySl9TU11hmjl/A==} - cborg@4.2.2: - resolution: {integrity: sha512-A0z7WhnY4HDLrVdnQI4i/OLG3kANHotk5NzDpr2iauf4xrmQPwJCxlbCnIXkVrFtsr8G3omfvvr5oF50i1Zt8g==} + capital-case@1.0.4: + resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} + + caseless@0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + + cborg@4.2.0: + resolution: {integrity: sha512-q6cFW5m3KxfP/9xGI3yGLaC1l5DP6DWM9IvjiJojnIwohL5CQDl02EXViPV852mOfQo+7PJGPN01MI87vFGzyA==} hasBin: true ccount@2.0.1: @@ -5644,6 +6299,10 @@ packages: resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==} engines: {node: '>=4'} + chai@5.1.1: + resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==} + engines: {node: '>=12'} + chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} @@ -5660,6 +6319,9 @@ packages: resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + change-case@4.1.2: + resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} + change-case@5.4.4: resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} @@ -5681,19 +6343,35 @@ packages: check-error@1.0.3: resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} + check-error@2.1.1: + resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} + engines: {node: '>= 16'} + chokidar@3.6.0: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} engines: {node: '>= 8.10.0'} + chokidar@4.0.0: + resolution: {integrity: sha512-mxIojEAQcuEvT/lyXq+jf/3cO/KoA6z4CeNDGGevTybECPOMFCnQy3OPahluUkbqgPNGw5Bi78UC7Po6Lhy+NA==} + engines: {node: '>= 14.16.0'} + chownr@1.1.4: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} - chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} + chromatic@11.10.2: + resolution: {integrity: sha512-EbVlhmOLGdx9QRX3RMOTF3UzoyC1aaXNRjlzm1mc++2OI5+6C5Bzwt2ZUYJ3Jnf/pJa23q0y5Y3QEDcfRVqIbg==} + hasBin: true + peerDependencies: + '@chromatic-com/cypress': ^0.*.* || ^1.0.0 + '@chromatic-com/playwright': ^0.*.* || ^1.0.0 + peerDependenciesMeta: + '@chromatic-com/cypress': + optional: true + '@chromatic-com/playwright': + optional: true - chromatic@11.5.4: - resolution: {integrity: sha512-+J+CopeUSyGUIQJsU6X7CfvSmeVBs0j6LZ9AgF4+XTjI4pFmUiUXsTc00rH9x9W1jCppOaqDXv2kqJJXGDK3mA==} + chromatic@11.3.0: + resolution: {integrity: sha512-q1ZtJDJrjLGnz60ivpC16gmd7KFzcaA4eTb7gcytCqbaKqlHhCFr1xQmcUDsm14CK7JsqdkFU6S+JQdOd2ZNJg==} hasBin: true peerDependencies: '@chromatic-com/cypress': ^0.*.* || ^1.0.0 @@ -5709,6 +6387,9 @@ packages: engines: {node: '>=12.13.0'} hasBin: true + chromium-edge-launcher@1.0.0: + resolution: {integrity: sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==} + ci-info@2.0.0: resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} @@ -5720,18 +6401,26 @@ packages: resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} engines: {node: '>=8'} + cids@0.7.5: + resolution: {integrity: sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==} + engines: {node: '>=4.0.0', npm: '>=3.0.0'} + deprecated: This module has been superseded by the multiformats module + cipher-base@1.0.4: resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} citty@0.1.6: resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} + class-is@1.1.0: + resolution: {integrity: sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==} + cli-boxes@3.0.0: resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} engines: {node: '>=10'} - cli-color@2.0.4: - resolution: {integrity: sha512-zlnpg0jNcibNrO7GG9IeHH7maWFeCz+Ja1wx/7tZNU5ASSSSZ+/qZciM0/LHCYxSdqv5h2sdbQ/PXYdOuetXvA==} + cli-color@2.0.3: + resolution: {integrity: sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==} engines: {node: '>=0.10'} cli-cursor@3.1.0: @@ -5742,14 +6431,14 @@ packages: resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + cli-cursor@5.0.0: + resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} + engines: {node: '>=18'} + cli-spinners@2.9.2: resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} engines: {node: '>=6'} - cli-table3@0.6.5: - resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} - engines: {node: 10.* || >= 12.*} - clipboardy@4.0.0: resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==} engines: {node: '>=18'} @@ -5765,6 +6454,9 @@ packages: resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} engines: {node: '>=6'} + clone-response@1.0.3: + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + clone@1.0.4: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} @@ -5777,6 +6469,10 @@ packages: resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} engines: {node: '>=6'} + cluster-key-slot@1.1.2: + resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==} + engines: {node: '>=0.10.0'} + code-block-writer@12.0.0: resolution: {integrity: sha512-q4dMFMlXtKR3XNBHyMHt/3pwYNA69EDk00lloMOaaUMKPUXBw6lpXtbu3MMVG6/uOihGnRDOlkyqsONEUj60+w==} @@ -5813,6 +6509,10 @@ packages: colorette@1.4.0: resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + colors@1.0.3: + resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==} + engines: {node: '>=0.1.90'} + combined-stream@1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} @@ -5834,10 +6534,6 @@ packages: resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} engines: {node: '>= 6'} - commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} - commander@8.3.0: resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} engines: {node: '>= 12'} @@ -5863,9 +6559,6 @@ packages: concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - confbox@0.1.7: - resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} - config-chain@1.1.13: resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} @@ -5877,22 +6570,31 @@ packages: resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} engines: {node: ^14.18.0 || >=16.10.0} + constant-case@3.0.4: + resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} + content-disposition@0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} engines: {node: '>= 0.6'} + content-hash@2.5.2: + resolution: {integrity: sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==} + content-type@1.0.5: resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} engines: {node: '>= 0.6'} - convert-csv-to-json@2.48.0: - resolution: {integrity: sha512-XkmztvCyY1qbUA1dlait7fmazAS0vDhYOzhMu90NPMvqBVY0/2GmAW1XzTzlKPpW5K/4ZaTKEO2Jb7e4saIQxg==} + convert-csv-to-json@2.46.0: + resolution: {integrity: sha512-Q7PjRjhECa5nBUEGbsKXvB8YaygVUesF/sYnaoCPTWoiwJEDCbLd2CcFDE1y80Q347IaTQukCQSCP2fR5IW+5g==} + + convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - cookie-es@1.1.0: - resolution: {integrity: sha512-L2rLOcK0wzWSfSDA33YR+PUHDG10a8px7rUHKWbGLP4YfbsMed2KFUw5fczvDPbT98DDe3LEzviswl810apTEw==} + cookie-es@1.0.0: + resolution: {integrity: sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==} cookie-signature@1.0.6: resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} @@ -5901,16 +6603,27 @@ packages: resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} engines: {node: '>= 0.6'} - core-js-compat@3.37.1: - resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} + core-js-compat@3.36.0: + resolution: {integrity: sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw==} + + core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + cors@2.8.5: + resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} + engines: {node: '>= 0.10'} + cosmiconfig@5.2.1: resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} engines: {node: '>=4'} + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + cosmiconfig@8.3.6: resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} engines: {node: '>=14'} @@ -5947,13 +6660,8 @@ packages: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} - crossws@0.2.4: - resolution: {integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==} - peerDependencies: - uWebSockets.js: '*' - peerDependenciesMeta: - uWebSockets.js: - optional: true + crossws@0.1.1: + resolution: {integrity: sha512-c9c/o7bS3OjsdpSkvexpka0JNlesBF2JU9B2V1yNsYGwRbAafxhJQ7VI9b48D5bpONz/oxbPGMzBojy9sXoQIQ==} crypto-js@3.3.0: resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==} @@ -5961,10 +6669,6 @@ packages: crypto-js@4.2.0: resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} - crypto-random-string@4.0.0: - resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} - engines: {node: '>=12'} - css-selector-parser@3.0.5: resolution: {integrity: sha512-3itoDFbKUNx1eKmVpYMFyqKX04Ww9osZ+dLgrk6GEv6KMVeXUhUnp4I5X+evw+u3ZxVU6RFXSSRxlTeMh8bA+g==} @@ -5994,33 +6698,32 @@ packages: resolution: {integrity: sha512-pHJg+jbuFsCjz9iclQBqyL3B2HLCBF71BwVNujUYEvCeQMvV97R59MNK3R2+jgJ3a1fcZgI9B3vYgz8lzr/BFQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - d@1.0.2: - resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} - engines: {node: '>=0.12'} + cycle@1.0.3: + resolution: {integrity: sha512-TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA==} + engines: {node: '>=0.4.0'} + + d@1.0.1: + resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==} dag-jose@4.0.0: resolution: {integrity: sha512-tw595L3UYoOUT9dSJPbBEG/qpRpw24kRZxa5SLRnlnr+g5L7O8oEs1d3W5TiVA1oJZbthVsf0Vi3zFN66qcEBA==} - daisyui@4.12.10: - resolution: {integrity: sha512-jp1RAuzbHhGdXmn957Z2XsTZStXGHzFfF0FgIOZj3Wv9sH7OZgLfXTRZNfKVYxltGUOBsG1kbWAdF5SrqjebvA==} + daisyui@4.10.1: + resolution: {integrity: sha512-Ds0Z0Fv+Xf6ZEqV4Q5JIOeKfg83xxnww0Lzid0V94vPtlQ0yYmucEa33zSctsX2VEgBALtmk5zVEqd59pnUbuQ==} + engines: {node: '>=16.9.0'} + + daisyui@4.11.1: + resolution: {integrity: sha512-obT9CUbQdW6eoHwSeT5VwaRrWlwrM4OT5qlfdJ0oQlSIEYhwnEl2+L2fwu5PioLbitwuMdYC2X8I1cyy8Pf6LQ==} engines: {node: '>=16.9.0'} + dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} + data-urls@5.0.0: resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} engines: {node: '>=18'} - data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} - engines: {node: '>= 0.4'} - - data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} - engines: {node: '>= 0.4'} - - data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} - engines: {node: '>= 0.4'} - date-fns@2.30.0: resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} engines: {node: '>=0.11'} @@ -6028,9 +6731,6 @@ packages: dayjs@1.11.10: resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==} - dayjs@1.11.11: - resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} - debug@2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} peerDependencies: @@ -6047,8 +6747,8 @@ packages: supports-color: optional: true - debug@4.3.5: - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -6056,8 +6756,8 @@ packages: supports-color: optional: true - debug@4.3.6: - resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} + debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -6079,6 +6779,10 @@ packages: resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} engines: {node: '>=0.10'} + decompress-response@3.3.0: + resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} + engines: {node: '>=4'} + decompress-response@6.0.0: resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} engines: {node: '>=10'} @@ -6089,8 +6793,12 @@ packages: dedent@0.7.0: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} - deep-eql@4.1.4: - resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} + deep-eql@4.1.3: + resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} + engines: {node: '>=6'} + + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} engines: {node: '>=6'} deep-extend@0.6.0: @@ -6108,6 +6816,10 @@ packages: resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} engines: {node: '>=12'} + default-browser@4.0.0: + resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} + engines: {node: '>=14.16'} + defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} @@ -6123,6 +6835,10 @@ packages: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} + define-lazy-prop@3.0.0: + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} + define-properties@1.2.1: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} @@ -6137,10 +6853,18 @@ packages: denodeify@1.2.1: resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} + denque@2.1.0: + resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} + engines: {node: '>=0.10'} + depd@2.0.0: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} engines: {node: '>= 0.8'} + deprecated-react-native-prop-types@5.0.0: + resolution: {integrity: sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ==} + engines: {node: '>=18'} + dequal@2.0.3: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} @@ -6168,18 +6892,6 @@ packages: resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} engines: {node: '>=8'} - detect-node-es@1.1.0: - resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} - - detect-package-manager@2.0.1: - resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} - engines: {node: '>=12'} - - detect-port@1.6.1: - resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} - engines: {node: '>= 4.0.0'} - hasBin: true - deterministic-object-hash@2.0.2: resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} engines: {node: '>=18'} @@ -6243,6 +6955,9 @@ packages: dom-serializer@1.4.1: resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + dom-walk@0.1.2: + resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} + domelementtype@2.3.0: resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} @@ -6257,6 +6972,9 @@ packages: domutils@2.8.0: resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + dotenv-expand@10.0.0: resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} engines: {node: '>=12'} @@ -6267,45 +6985,42 @@ packages: ds-test@https://codeload.github.com/dapphub/ds-test/tar.gz/e282159d5170298eb2455a6c05280ab5a73a4ef0: resolution: {tarball: https://codeload.github.com/dapphub/ds-test/tar.gz/e282159d5170298eb2455a6c05280ab5a73a4ef0} - name: ds-test version: 1.0.0 dset@3.1.3: resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==} engines: {node: '>=4'} - duplexify@3.7.1: - resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} - - duplexify@4.1.3: - resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==} + duplexify@4.1.2: + resolution: {integrity: sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==} eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - eciesjs@0.3.19: - resolution: {integrity: sha512-b+PkRDZ3ym7HEcnbxc22CMVCpgsnr8+gGgST3U5PtgeX1luvINgfXW7efOyUtmn/jFtA/lg5ywBi/Uazf4oeaA==} + ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + + eciesjs@0.3.18: + resolution: {integrity: sha512-RQhegEtLSyIiGJmFTZfvCTHER/fymipXFVx6OwSRYD6hOuy+6Kjpk0dGvIfP9kxn/smBpxQy71uxpGO406ITCw==} ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} - engines: {node: '>=0.10.0'} - hasBin: true - electron-fetch@1.9.1: resolution: {integrity: sha512-M9qw6oUILGVrcENMSRRefE1MbHPIz0h79EKIeJWK9v563aT9Qkh8aEHPO1H5vi970wPirNY+jO9OpFoLiMsMGA==} engines: {node: '>=6'} - electron-to-chromium@1.4.816: - resolution: {integrity: sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw==} + electron-to-chromium@1.4.676: + resolution: {integrity: sha512-uHt4FB8SeYdhcOsj2ix/C39S7sPSNFJpzShjxGOm1KdF4MHyGqGi389+T5cErsodsijojXilYaHIKKqJfqh7uQ==} + + electron-to-chromium@1.5.23: + resolution: {integrity: sha512-mBhODedOXg4v5QWwl21DjM5amzjmI1zw9EPrPK/5Wx7C8jt33bpZNrC7OhHUG3pxRtbLpr3W2dXT+Ph1SsfRZA==} elliptic@6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} - elliptic@6.5.5: - resolution: {integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==} + elliptic@6.5.7: + resolution: {integrity: sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==} emmet@2.4.7: resolution: {integrity: sha512-O5O5QNqtdlnQM2bmKHtJgyChcrFMgQuulI+WdiOw2NArzprUqqxUW6bgYtKvzKgrsYpuLWalOkdhNP+1jluhCA==} @@ -6326,14 +7041,18 @@ packages: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} + encodeurl@2.0.0: + resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} + engines: {node: '>= 0.8'} + encoding@0.1.13: resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} - engine.io-client@6.5.4: - resolution: {integrity: sha512-GeZeeRjpD2qf49cZQ0Wvh/8NJNfeXkXXcoGh+F77oEAgo9gUHwT1fCRxSNU+YEEaysOJTnsFHmM5oAcPy4ntvQ==} + engine.io-client@6.5.3: + resolution: {integrity: sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==} engine.io-parser@5.2.2: resolution: {integrity: sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==} @@ -6350,8 +7069,8 @@ packages: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} - envinfo@7.13.0: - resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} + envinfo@7.11.1: + resolution: {integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==} engines: {node: '>=4'} hasBin: true @@ -6368,8 +7087,8 @@ packages: resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} engines: {node: '>= 0.8'} - es-abstract@1.23.3: - resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} + es-abstract@1.22.3: + resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} engines: {node: '>= 0.4'} es-define-property@1.0.0: @@ -6380,15 +7099,14 @@ packages: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} + es-module-lexer@1.5.3: + resolution: {integrity: sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==} + es-module-lexer@1.5.4: resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} - es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} - engines: {node: '>= 0.4'} - - es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + es-set-tostringtag@2.0.2: + resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} engines: {node: '>= 0.4'} es-shim-unscopables@1.0.2: @@ -6398,6 +7116,10 @@ packages: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} + es5-ext@0.10.62: + resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==} + engines: {node: '>=0.10'} + es5-ext@0.10.64: resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} engines: {node: '>=0.10'} @@ -6408,18 +7130,17 @@ packages: es6-promise@3.3.1: resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} - es6-symbol@3.1.4: - resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} - engines: {node: '>=0.12'} + es6-promise@4.2.8: + resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==} + + es6-symbol@3.1.3: + resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==} es6-weak-map@2.0.3: resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==} - esbuild-plugin-alias@0.2.1: - resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} - - esbuild-register@3.5.0: - resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} + esbuild-register@3.6.0: + resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==} peerDependencies: esbuild: '>=0.12 <1' @@ -6438,6 +7159,11 @@ packages: engines: {node: '>=12'} hasBin: true + esbuild@0.21.3: + resolution: {integrity: sha512-Kgq0/ZsAPzKrbOjCQcjoSmPoWhlcVnGAUo7jvaLHoxW1Drto0KGkR1xBNg2Cp43b9ImvxmPEJZ9xkfcnqPsfBw==} + engines: {node: '>=12'} + hasBin: true + esbuild@0.21.5: resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} engines: {node: '>=12'} @@ -6466,8 +7192,14 @@ packages: resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} engines: {node: '>=12'} - eslint-compat-utils@0.5.1: - resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} + eslint-compat-utils@0.1.2: + resolution: {integrity: sha512-Jia4JDldWnFNIru1Ehx1H5s9/yxiRHY/TimCuUc0jNexew3cF1gI6CYZil1ociakfWO3rRqFjl1mskBblB3RYg==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + + eslint-compat-utils@0.5.0: + resolution: {integrity: sha512-dc6Y8tzEcSYZMHa+CMPLi/hyo1FzNeonbhJL7Ol0ccuKQkwopJcJBA9YL/xmMTLU1eKigXo9vj9nALElWYSowg==} engines: {node: '>=12'} peerDependencies: eslint: '>=6.0.0' @@ -6490,8 +7222,8 @@ packages: eslint-import-resolver-node@0.3.9: resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} - eslint-module-utils@2.8.1: - resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} + eslint-module-utils@2.8.0: + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' @@ -6511,8 +7243,8 @@ packages: eslint-import-resolver-webpack: optional: true - eslint-plugin-es-x@7.8.0: - resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} + eslint-plugin-es-x@7.5.0: + resolution: {integrity: sha512-ODswlDSO0HJDzXU0XvgZ3lF3lS3XAZEossh15Q2UHjwrJggWeBoKqqEsLTZLXl+dh5eOAozG0zRcYtuE35oTuQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '>=8' @@ -6523,8 +7255,8 @@ packages: peerDependencies: eslint: '>=4.19.1' - eslint-plugin-import@2.29.1: - resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} + eslint-plugin-import@2.29.0: + resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' @@ -6559,14 +7291,14 @@ packages: eslint-config-prettier: optional: true - eslint-plugin-promise@6.4.0: - resolution: {integrity: sha512-/KWWRaD3fGkVCZsdR0RU53PSthFmoHVhZl+y9+6DqeDLSikLdlUVpVEAmI6iCRR5QyOjBYBqHZV/bdv4DJ4Gtw==} + eslint-plugin-promise@6.1.1: + resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 + eslint: ^7.0.0 || ^8.0.0 - eslint-plugin-simple-import-sort@12.1.0: - resolution: {integrity: sha512-Y2fqAfC11TcG/WP3TrI1Gi3p3nc8XJyEOJYHyEPEGI/UAgNx6akxxlX74p7SbAQdLcgASKhj8M0GKvH3vq/+ig==} + eslint-plugin-simple-import-sort@12.0.0: + resolution: {integrity: sha512-8o0dVEdAkYap0Cn5kNeklaKcT1nUsa3LITWEuFk3nJifOoD+5JQGoyDUW2W/iPWwBsNBJpyJS9y4je/BgxLcyQ==} peerDependencies: eslint: '>=5.0.0' @@ -6576,12 +7308,12 @@ packages: peerDependencies: eslint: '>=6' - eslint-plugin-svelte@2.41.0: - resolution: {integrity: sha512-gjU9Q/psxbWG1VNwYbEb0Q6U4W5PBGaDpYmO2zlQ+zlAMVS3Qt0luAK0ACi/tMSwRK6JENiySvMyJbO0YWmXSg==} + eslint-plugin-svelte@2.38.0: + resolution: {integrity: sha512-IwwxhHzitx3dr0/xo0z4jjDlb2AAHBPKt+juMyKKGTLlKi1rZfA4qixMwnveU20/JTHyipM6keX4Vr7LZFYc9g==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0-0 || ^9.0.0-0 - svelte: ^3.37.0 || ^4.0.0 || ^5.0.0-next.155 + svelte: ^3.37.0 || ^4.0.0 || ^5.0.0-next.112 peerDependenciesMeta: svelte: optional: true @@ -6621,8 +7353,13 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true - eslint@8.57.0: - resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} + eslint@8.55.0: + resolution: {integrity: sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + + eslint@8.56.0: + resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true @@ -6695,10 +7432,19 @@ packages: resolution: {integrity: sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg==} engines: {node: '>=14.0.0'} + eth-ens-namehash@2.0.8: + resolution: {integrity: sha512-VWEI1+KJfz4Km//dadyvBBoBeSQ0MHTXPvr8UIXiLW6IanxvAV+DmlZAijZwAyggqGUfwQBeHf7tc9wzc1piSw==} + eth-json-rpc-filters@6.0.1: resolution: {integrity: sha512-ITJTvqoCw6OVMLs7pI8f4gG92n/St6x80ACtHodeS+IXmO0w+t1T5OOzfSt7KLSMLRkVUoexV7tztLgDxg+iig==} engines: {node: '>=14.0.0'} + eth-lib@0.1.29: + resolution: {integrity: sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==} + + eth-lib@0.2.8: + resolution: {integrity: sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==} + eth-query@2.1.2: resolution: {integrity: sha512-srES0ZcvwkR/wd5OQBRA1bIJMww1skfGS0s8wlwK3/oNP4+wnds60krvu5R1QbpRQjMmpG5OMIWro5s7gvDPsA==} @@ -6709,8 +7455,8 @@ packages: resolution: {integrity: sha512-3Vwr2CikFLezh/zLAPBV6C51jC0fFnf6vjhkoIWsDms/W5MLgAZNhh9nZUxPmg899K8cVFbklrYQBxcD4JmfrA==} engines: {node: '>= 4.3.0', npm: '>= 3.7.0'} - ethereum-bloom-filters@1.1.0: - resolution: {integrity: sha512-J1gDRkLpuGNvWYzWslBQR9cDV4nd4kfvVTE/Wy4Kkm4yb3EYRSlyi0eB/inTsSTTVyA0+HyzHgbr95Fn/Z1fSw==} + ethereum-bloom-filters@1.0.10: + resolution: {integrity: sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==} ethereum-cryptography@0.1.3: resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==} @@ -6718,8 +7464,8 @@ packages: ethereum-cryptography@1.2.0: resolution: {integrity: sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==} - ethereum-cryptography@2.2.1: - resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==} + ethereum-cryptography@2.1.3: + resolution: {integrity: sha512-BlwbIL7/P45W8FGW2r7LGuvoEZ+7PWsniMvQ4p5s2xCyw9tmaDlpfsN9HjAucbF+t/qpVHwZUisgfK24TCW8aA==} ethereumjs-util@7.1.5: resolution: {integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==} @@ -6728,6 +7474,10 @@ packages: ethers@5.7.2: resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==} + ethers@6.13.2: + resolution: {integrity: sha512-9VkriTTed+/27BGuY1s0hf441kqwHJ1wtN2edksEtiRvXx+soxRX3iSXTfFqq2+YwrOqbDoTHjIhQnjJRlzKmg==} + engines: {node: '>=14.0.0'} + ethjs-unit@0.1.6: resolution: {integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==} engines: {node: '>=6.5.0', npm: '>=3'} @@ -6742,6 +7492,9 @@ packages: eventemitter2@6.4.9: resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} + eventemitter3@4.0.4: + resolution: {integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==} + eventemitter3@5.0.1: resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} @@ -6756,6 +7509,10 @@ packages: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} + execa@7.2.0: + resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} + engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} + execa@8.0.1: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} @@ -6764,8 +7521,8 @@ packages: resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - express@4.19.2: - resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} + express@4.21.0: + resolution: {integrity: sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==} engines: {node: '>= 0.10.0'} expressive-code@0.35.6: @@ -6784,6 +7541,10 @@ packages: extendable-error@0.1.7: resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + extension-port-stream@2.1.1: + resolution: {integrity: sha512-qknp5o5rj2J9CRKfVB8KJr+uXQlrojNZzdESUPhKYLXf97TPcGf6qWWKmpsNNtUyOdzFhab1ON0jzouNxHHvow==} + engines: {node: '>=12.0.0'} + extension-port-stream@3.0.0: resolution: {integrity: sha512-an2S5quJMiy5bnZKEf6AkfH/7r8CzHvhchU40gxN+OM6HPhe7Z9T1FUychcf2M9PpPOO0Hf7BAEfJkw2TDIBDw==} engines: {node: '>=12.0.0'} @@ -6792,6 +7553,20 @@ packages: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} + extsprintf@1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + + eyes@0.1.8: + resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==} + engines: {node: '> 0.1.90'} + + fast-base64-decode@1.0.0: + resolution: {integrity: sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==} + + fast-deep-equal@2.0.1: + resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} + fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -6811,8 +7586,8 @@ packages: fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - fast-redact@3.5.0: - resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} + fast-redact@3.3.0: + resolution: {integrity: sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==} engines: {node: '>=6'} fast-safe-stringify@2.1.1: @@ -6822,8 +7597,8 @@ packages: resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==} hasBin: true - fast-xml-parser@4.4.0: - resolution: {integrity: sha512-kLY3jFlwIYwBNDojclKsNAC12sfD6NwW74QB2CoNGPvtVxjliYehVunB3HYyNi+n4Tt1dAcgwYvmKF/Z18flqg==} + fast-xml-parser@4.3.4: + resolution: {integrity: sha512-utnwm92SyozgA3hhH2I8qldf2lBqm6qHOICawRNRFu1qMe3+oqr+GcXjGqTmXTMGE5T4eC03kr/rlh5C1IRdZA==} hasBin: true fastparse@1.1.2: @@ -6835,31 +7610,26 @@ packages: fb-watchman@2.0.2: resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} - fdir@6.1.1: - resolution: {integrity: sha512-QfKBVg453Dyn3mr0Q0O+Tkr1r79lOTAKSi9f/Ot4+qVEwxWhav2Z+SudrG9vQjM2aYRMQQZ2/Q1zdA8ACM1pDg==} + fdir@6.3.0: + resolution: {integrity: sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==} peerDependencies: - picomatch: 3.x + picomatch: ^3 || ^4 peerDependenciesMeta: picomatch: optional: true - fetch-retry@5.0.6: - resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} - file-entry-cache@6.0.1: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} - file-system-cache@2.3.0: - resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} - - filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} - - filesize@10.1.2: - resolution: {integrity: sha512-Dx770ai81ohflojxhU+oG+Z2QGvKdYxgEr9OSA8UVrqhwNHjfH9A8f5NKfg83fEH8ZFA5N5llJo5T3PIoZ4CRA==} + filesize@10.1.1: + resolution: {integrity: sha512-L0cdwZrKlwZQkMSFnCflJ6J2Y+5egO/p3vgRSDQGxQt++QbUZe5gMbRO6kg6gzwQDPvq2Fk9AmoxUNfZ5gdqaQ==} engines: {node: '>= 10.4.0'} + fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + fill-range@7.1.1: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} engines: {node: '>=8'} @@ -6872,8 +7642,8 @@ packages: resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} engines: {node: '>= 0.8'} - finalhandler@1.2.0: - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + finalhandler@1.3.1: + resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} engines: {node: '>= 0.8'} find-cache-dir@2.1.0: @@ -6884,6 +7654,9 @@ packages: resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} engines: {node: '>=8'} + find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + find-up-simple@1.0.0: resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} engines: {node: '>=18'} @@ -6915,8 +7688,8 @@ packages: resolution: {integrity: sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA==} hasBin: true - flatted@3.3.1: - resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + flatted@3.2.9: + resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} flattie@1.1.1: resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} @@ -6925,12 +7698,21 @@ packages: flow-enums-runtime@0.0.6: resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==} - flow-parser@0.238.3: - resolution: {integrity: sha512-hNUhucq8V6KWSX1skXUS3vnDmrRNuKWzDvEVK5b+n97uMF32zj2y8pmcLDQEqlY5u926B0GYGWT/3XhwDJfLOQ==} + flow-parser@0.206.0: + resolution: {integrity: sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==} engines: {node: '>=0.4.0'} - follow-redirects@1.15.6: - resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} + follow-redirects@1.15.5: + resolution: {integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + follow-redirects@1.15.9: + resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -6941,24 +7723,32 @@ packages: for-each@0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} - foreground-child@3.2.1: - resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} + foreground-child@3.1.1: + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} engines: {node: '>=14'} + forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + forge-std@https://codeload.github.com/foundry-rs/forge-std/tar.gz/36c303b7ffdd842d06b1ec2744c9b9b5fb3083f3: resolution: {tarball: https://codeload.github.com/foundry-rs/forge-std/tar.gz/36c303b7ffdd842d06b1ec2744c9b9b5fb3083f3} - name: forge-std version: 1.7.5 - forge-std@https://codeload.github.com/foundry-rs/forge-std/tar.gz/8948d45d3d9022c508b83eb5d26fd3a7a93f2f32: - resolution: {tarball: https://codeload.github.com/foundry-rs/forge-std/tar.gz/8948d45d3d9022c508b83eb5d26fd3a7a93f2f32} - name: forge-std - version: 1.9.0 + forge-std@https://codeload.github.com/foundry-rs/forge-std/tar.gz/8f24d6b04c92975e0795b5868aa0d783251cdeaa: + resolution: {tarball: https://codeload.github.com/foundry-rs/forge-std/tar.gz/8f24d6b04c92975e0795b5868aa0d783251cdeaa} + version: 1.9.3 + + form-data-encoder@1.7.1: + resolution: {integrity: sha512-EFRDrsMm/kyqbTQocNvRXMLjc7Es2Vk+IQFx/YW7hkUH1eBl4J1fqiP34l74Yt0pFLCNpc06fkbVk00008mzjg==} form-data-encoder@2.1.4: resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} engines: {node: '>= 14.17'} + form-data@2.3.3: + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} + form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} @@ -6974,17 +7764,13 @@ packages: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} - fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - - fs-extra@11.1.1: - resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} - engines: {node: '>=14.14'} - fs-extra@11.2.0: resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} engines: {node: '>=14.14'} + fs-extra@4.0.3: + resolution: {integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==} + fs-extra@7.0.1: resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} engines: {node: '>=6 <7 || >=8'} @@ -6993,9 +7779,8 @@ packages: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} - fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} + fs-minipass@1.2.7: + resolution: {integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==} fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} @@ -7049,17 +7834,13 @@ packages: get-iterator@1.0.2: resolution: {integrity: sha512-v+dm9bNVfOYsY1OrhaCrmyOcYoSeVvbt+hHZ0Au+T+p1y+0Uyj9aMaGIeUTT6xdpRbWzDeYKvfOslPhggQMcsg==} - get-nonce@1.0.1: - resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} - engines: {node: '>=6'} - - get-npm-tarball-url@2.1.0: - resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} - engines: {node: '>=12.17'} - get-port-please@3.1.2: resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==} + get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} @@ -7068,16 +7849,15 @@ packages: resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} engines: {node: '>=16'} - get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + get-symbol-description@1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} - get-tsconfig@4.7.5: - resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==} + get-tsconfig@4.7.2: + resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} - giget@1.2.3: - resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} - hasBin: true + getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} github-slugger@2.0.0: resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} @@ -7090,12 +7870,14 @@ packages: resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} engines: {node: '>=10.13.0'} - glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + glob@10.3.10: + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true - glob@10.4.2: - resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} - engines: {node: '>=16 || 14 >=14.18'} + glob@11.0.0: + resolution: {integrity: sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==} + engines: {node: 20 || >=22} hasBin: true glob@7.2.3: @@ -7107,16 +7889,23 @@ packages: engines: {node: '>=12'} deprecated: Glob versions prior to v9 are no longer supported + global@4.4.0: + resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} + globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} + globals@13.23.0: + resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} + engines: {node: '>=8'} + globals@13.24.0: resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} engines: {node: '>=8'} - globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + globalthis@1.0.3: + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} globalyzer@0.1.0: @@ -7126,9 +7915,9 @@ packages: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} - globby@14.0.2: - resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} - engines: {node: '>=18'} + globby@13.2.2: + resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} globrex@0.1.2: resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} @@ -7136,6 +7925,14 @@ packages: gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + got@11.8.6: + resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} + engines: {node: '>=10.19.0'} + + got@12.1.0: + resolution: {integrity: sha512-hBv2ty9QN2RdbJJMK3hesmSkFTjVIHyIDDbssCKnSmq62edGgImJWD10Eb1k77TiV1bxloxqcFAVK8+9pkhOig==} + engines: {node: '>=14.16'} + got@12.6.1: resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==} engines: {node: '>=14.16'} @@ -7156,17 +7953,17 @@ packages: resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} engines: {node: '>=6.0'} - gunzip-maybe@1.4.2: - resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} - hasBin: true + h3@1.10.2: + resolution: {integrity: sha512-r1iNNcFGL4G9pL3lgYxwX0O2ZmqdKqhILAJsnlw5icn5I1QHnADM4TgVdYRtHUqy+NntVpHIEFwnw/XCbebICg==} - h3@1.12.0: - resolution: {integrity: sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==} + har-schema@2.0.0: + resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} + engines: {node: '>=4'} - handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true + har-validator@5.1.5: + resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} + engines: {node: '>=6'} + deprecated: this library is no longer supported has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} @@ -7190,8 +7987,8 @@ packages: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} engines: {node: '>= 0.4'} - has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + has-tostringtag@1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} engines: {node: '>= 0.4'} hash-base@3.1.0: @@ -7204,8 +8001,8 @@ packages: hashlru@2.3.0: resolution: {integrity: sha512-0cMsjjIC8I+D3M44pOQdsy0OHXGLVz6Z0beRuufhKa0KfaD2wGwAev6jILzXsd3/vpnNQJmWyZtIILqM1N+n5A==} - hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + hasown@2.0.1: + resolution: {integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==} engines: {node: '>= 0.4'} hast-util-embedded@3.0.0: @@ -7235,8 +8032,8 @@ packages: hast-util-phrasing@3.0.1: resolution: {integrity: sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==} - hast-util-raw@9.0.4: - resolution: {integrity: sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA==} + hast-util-raw@9.0.3: + resolution: {integrity: sha512-ICWvVOF2fq4+7CMmtCPD5CM4QKjPbHpPotE6+8tDooV0ZuyJVUzHsrNX+O5NaRbieTf0F7FfeBOMAwi6Td0+yQ==} hast-util-select@6.0.2: resolution: {integrity: sha512-hT/SD/d/Meu+iobvgkffo1QecV8WeKWxwsNMzcTJsKw1cKTQKSR/7ArJeURLNJF9HDjp9nVoORyNNJxrvBye8Q==} @@ -7247,6 +8044,9 @@ packages: hast-util-to-html@9.0.1: resolution: {integrity: sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==} + hast-util-to-html@9.0.2: + resolution: {integrity: sha512-RP5wNpj5nm1Z8cloDv4Sl4RS8jH5HYa0v93YB6Wb4poEzgMo/dAAL0KcT4974dCjcNG5pkLqTImeFHHCwwfY3g==} + hast-util-to-jsx-runtime@2.3.0: resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} @@ -7268,18 +8068,21 @@ packages: hastscript@9.0.0: resolution: {integrity: sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==} + header-case@2.0.4: + resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} + + hermes-estree@0.15.0: + resolution: {integrity: sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==} + hermes-estree@0.19.1: resolution: {integrity: sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==} - hermes-estree@0.20.1: - resolution: {integrity: sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==} + hermes-parser@0.15.0: + resolution: {integrity: sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==} hermes-parser@0.19.1: resolution: {integrity: sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==} - hermes-parser@0.20.1: - resolution: {integrity: sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==} - hermes-profile-transformer@0.0.6: resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} engines: {node: '>=8'} @@ -7290,8 +8093,8 @@ packages: hmac-drbg@1.0.1: resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} - hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} html-encoding-sniffer@4.0.0: resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} @@ -7322,6 +8125,9 @@ packages: resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} engines: {node: '>= 0.8'} + http-https@1.0.0: + resolution: {integrity: sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==} + http-proxy-agent@7.0.2: resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} engines: {node: '>= 14'} @@ -7330,12 +8136,20 @@ packages: resolution: {integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + http-signature@1.2.0: + resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} + engines: {node: '>=0.8', npm: '>=1.3.7'} + + http2-wrapper@1.0.3: + resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} + engines: {node: '>=10.19.0'} + http2-wrapper@2.2.1: resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} engines: {node: '>=10.19.0'} - https-proxy-agent@7.0.5: - resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} + https-proxy-agent@7.0.4: + resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} engines: {node: '>= 14'} human-id@1.0.2: @@ -7345,6 +8159,10 @@ packages: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} + human-signals@4.3.1: + resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} + engines: {node: '>=14.18.0'} + human-signals@5.0.0: resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} engines: {node: '>=16.17.0'} @@ -7352,6 +8170,9 @@ packages: i18next-browser-languagedetector@7.1.0: resolution: {integrity: sha512-cr2k7u1XJJ4HTOjM9GyOMtbOA47RtUoWRAtt52z43r3AoMs2StYKyjS3URPhzHaf+mn10hY9dZWamga5WPQjhA==} + i18next-browser-languagedetector@7.2.0: + resolution: {integrity: sha512-U00DbDtFIYD3wkWsr2aVGfXGAj2TgnELzOX9qv8bT0aJtvPV9CRO77h+vgmHFBMe7LAxdwvT/7VkCWGya6L3tA==} + i18next@22.5.1: resolution: {integrity: sha512-8TGPgM3pAD+VRsMtUMNknRz3kzqwp/gPALrWMsDnmC1mKqJwpWyooQRLMcbTwq8z8YwSmuj+ZYvc+xCuEpkssA==} @@ -7369,6 +8190,10 @@ packages: idb-keyval@6.2.1: resolution: {integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==} + idna-uts46-hx@2.3.1: + resolution: {integrity: sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==} + engines: {node: '>=4.0.0'} + ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} @@ -7380,6 +8205,10 @@ packages: resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} engines: {node: '>= 4'} + ignore@5.3.0: + resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} + engines: {node: '>= 4'} + ignore@5.3.1: resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} engines: {node: '>= 4'} @@ -7389,6 +8218,9 @@ packages: engines: {node: '>=16.x'} hasBin: true + immediate@3.0.6: + resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} + import-fresh@2.0.0: resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} engines: {node: '>=4'} @@ -7397,6 +8229,9 @@ packages: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} + import-meta-resolve@4.0.0: + resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==} + import-meta-resolve@4.1.0: resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} @@ -7438,16 +8273,23 @@ packages: interface-store@5.1.8: resolution: {integrity: sha512-7na81Uxkl0vqk0CBPO5PvyTkdaJBaezwUJGsMOz7riPOq0rJt+7W31iaopaMICWea/iykUsvNlPx/Tc+MxC3/w==} - internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + internal-slot@1.0.6: + resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} engines: {node: '>= 0.4'} - intl-messageformat@10.5.14: - resolution: {integrity: sha512-IjC6sI0X7YRjjyVH9aUgdftcmZK7WXdHeil4KwbjDnRWjnVitKpAx3rr6t6di1joFp5188VqKcobOPA6mCLG/w==} + intl-messageformat@10.5.11: + resolution: {integrity: sha512-eYq5fkFBVxc7GIFDzpFQkDOZgNayNTQn4Oufe8jw6YY6OHVw70/4pA3FyCsQ0Gb2DnvEJEMmN2tOaXUGByM+kg==} invariant@2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + ioredis@5.3.2: + resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==} + engines: {node: '>=12.22.0'} + + ip@1.1.9: + resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==} + ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} @@ -7475,8 +8317,8 @@ packages: resolution: {integrity: sha512-zIaiEGX18QATxgaS0/EOQNoo33W0islREABAcxXE8n7y2MGAlB+hdsxXn4J0hGZge8IqVQhW8sWIb+oJz2yEvg==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} - iron-webcrypto@1.2.1: - resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} + iron-webcrypto@1.0.0: + resolution: {integrity: sha512-anOK1Mktt8U1Xi7fCM3RELTuYbnFikQY5VtrDj7kPgpejV7d43tWKhzgioO0zpkazLEL/j/iayRqnJhrGfqUsg==} is-absolute-url@4.0.1: resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==} @@ -7492,9 +8334,8 @@ packages: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} - is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} + is-array-buffer@3.0.2: + resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} @@ -7525,13 +8366,8 @@ packages: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} - is-core-module@2.14.0: - resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} - engines: {node: '>= 0.4'} - - is-data-view@1.0.1: - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} - engines: {node: '>= 0.4'} + is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} @@ -7540,9 +8376,6 @@ packages: is-decimal@2.0.1: resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} - is-deflate@1.0.0: - resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} - is-directory@0.3.1: resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} engines: {node: '>=0.10.0'} @@ -7576,6 +8409,9 @@ packages: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} + is-function@1.0.2: + resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} + is-generator-function@1.0.10: resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} engines: {node: '>= 0.4'} @@ -7584,10 +8420,6 @@ packages: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} - is-gzip@1.0.0: - resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} - engines: {node: '>=0.10.0'} - is-hex-prefixed@1.0.0: resolution: {integrity: sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==} engines: {node: '>=6.5.0', npm: '>=3'} @@ -7608,12 +8440,8 @@ packages: resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} engines: {node: '>=12'} - is-nan@1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} - - is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + is-negative-zero@2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} engines: {node: '>= 0.4'} is-number-object@1.0.7: @@ -7653,9 +8481,8 @@ packages: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} - is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} + is-shared-array-buffer@1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} @@ -7677,10 +8504,13 @@ packages: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} engines: {node: '>= 0.4'} - is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + is-typed-array@1.1.12: + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} engines: {node: '>= 0.4'} + is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + is-unicode-supported@0.1.0: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} engines: {node: '>=10'} @@ -7750,6 +8580,9 @@ packages: peerDependencies: ws: '*' + isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + istanbul-lib-coverage@3.2.2: resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} engines: {node: '>=8'} @@ -7758,8 +8591,8 @@ packages: resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} engines: {node: '>=10'} - istanbul-lib-source-maps@5.0.5: - resolution: {integrity: sha512-gKf4eJ8bHmSX/ljiOCpnd8vtmHTwG71uugm0kXYd5aqFCl6z8cj8k7QduXSwU6QOst6LCdSXTlaoc8W4554crQ==} + istanbul-lib-source-maps@5.0.4: + resolution: {integrity: sha512-wHOoEsNJTVltaJp8eVkm8w+GVkVNHT2YDYo53YdzQEL2gWm1hBX5cGFR9hQJtuGLebidVX7et3+dmDZrmclduw==} engines: {node: '>=10'} istanbul-reports@3.1.7: @@ -7806,14 +8639,13 @@ packages: it-to-stream@1.0.0: resolution: {integrity: sha512-pLULMZMAB/+vbdvbZtebC0nWBTbG581lk6w8P7DfIIIKUfa8FbY7Oi0FxZcFPbxvISs7A9E+cMpLDBc1XhpAOA==} - jackspeak@3.4.0: - resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} + jackspeak@2.3.6: + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} engines: {node: '>=14'} - jake@10.9.1: - resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==} - engines: {node: '>=10'} - hasBin: true + jackspeak@4.0.1: + resolution: {integrity: sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==} + engines: {node: 20 || >=22} jest-diff@29.7.0: resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} @@ -7851,12 +8683,18 @@ packages: resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - jiti@1.21.6: - resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} + jiti@1.21.0: + resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} hasBin: true - joi@17.13.3: - resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} + joi@17.12.1: + resolution: {integrity: sha512-vtxmq+Lsc5SlfqotnfVjlViWfOL9nt/avKNbKYizwf6gsCfq9NYY/ceYRMFD8XDdrjJ9abJyScWmhmIiy+XRtQ==} + + js-cookie@2.2.1: + resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==} + + js-sha3@0.5.7: + resolution: {integrity: sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==} js-sha3@0.8.0: resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} @@ -7864,8 +8702,8 @@ packages: js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - js-tokens@9.0.0: - resolution: {integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==} + js-tokens@8.0.3: + resolution: {integrity: sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==} js-yaml@3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} @@ -7875,6 +8713,9 @@ packages: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true + jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + jsc-android@250231.0.0: resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} @@ -7887,17 +8728,8 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 - jscodeshift@0.15.2: - resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==} - hasBin: true - peerDependencies: - '@babel/preset-env': ^7.1.6 - peerDependenciesMeta: - '@babel/preset-env': - optional: true - - jsdom@24.1.0: - resolution: {integrity: sha512-6gpM7pRXCwIOKxX47cgOyvyQDN/Eh0f1MeKySBV2xGdKtqJBLj8P25eY3EVCWo2mglDDzozR2r2MW4T+JiNUZA==} + jsdom@24.0.0: + resolution: {integrity: sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==} engines: {node: '>=18'} peerDependencies: canvas: ^2.11.2 @@ -7927,6 +8759,10 @@ packages: resolution: {integrity: sha512-NEdLrtrq1jUZyfjkr9OCz9EzCNhnRyWtt1PAnvnhwy6e8XETS0Dtc+ZNCO2gvuAoKsIn2+vCSowXTYE4CkgnAQ==} engines: {node: '>=10.0.0'} + json-rpc-middleware-stream@4.2.3: + resolution: {integrity: sha512-4iFb0yffm5vo3eFKDbQgke9o17XBcLQ2c3sONrXSbcOLzP8LTojqo8hRGVgtJShhm5q4ZDSNq039fAx9o65E1w==} + engines: {node: '>=14.0.0'} + json-rpc-random-id@1.0.1: resolution: {integrity: sha512-RJ9YYNCkhVDBuP4zN5BBtYAzEl03yq/jIIsyif0JY9qyJuQQZNeDK7anAPKKlyEtLSj2s8h6hNh2F8zO5q7ScA==} @@ -7936,9 +8772,15 @@ packages: json-schema-traverse@1.0.0: resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + json-to-ast@2.1.0: resolution: {integrity: sha512-W9Lq347r8tA1DfMvAGn9QNcgYm4Wm7Yc+k8e6vezpMnRT+NHbtlxgNBXRVjXe9YM6eTn6+p/MKOlV/aABJcSnQ==} engines: {node: '>= 4'} @@ -7955,6 +8797,9 @@ packages: jsonc-parser@2.3.1: resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} + jsonc-parser@3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} @@ -7965,6 +8810,16 @@ packages: resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} engines: {node: '>=0.10.0'} + jsprim@1.4.2: + resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} + engines: {node: '>=0.6.0'} + + jszip@3.10.1: + resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==} + + keccak256@1.0.6: + resolution: {integrity: sha512-8GLiM01PkdJVGUhR1e6M/AvWnSqYS0HaERI+K/QtStGDGlSTx2B1zTqZk4Zlqu5TxHJNTxWAdP9Y+WI50OApUw==} + keccak@3.0.4: resolution: {integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==} engines: {node: '>=10.0.0'} @@ -7987,59 +8842,55 @@ packages: resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} engines: {node: '>=6'} - known-css-properties@0.34.0: - resolution: {integrity: sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==} + known-css-properties@0.30.0: + resolution: {integrity: sha512-VSWXYUnsPu9+WYKkfmJyLKtIvaRJi1kXUqVmBACORXZQxT5oZDsoZ2vQP+bQFDnWtpI/4eq3MLoRMjI2fnLzTQ==} latest-version@7.0.0: resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==} engines: {node: '>=14.16'} - lazy-universal-dotenv@4.0.0: - resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} - engines: {node: '>=14.0.0'} - - lefthook-darwin-arm64@1.6.18: - resolution: {integrity: sha512-AkpsTeO7aLZIIy6CKQ7Chx8RltE8a9uItbwQWoeaCkIdzpV8TFjq7/Pw4F5CkoJ2315sHtB8k+VFkgipQMBw1w==} + lefthook-darwin-arm64@1.6.10: + resolution: {integrity: sha512-Hh11OkoKG7FEOByS1dcgNV7ETq45VmwBbw0VPTiBznyfOG4k+pi0fIdc1qbmbxvYqNE0r420QR/Q3bimaa4Kxg==} cpu: [arm64] os: [darwin] - lefthook-darwin-x64@1.6.18: - resolution: {integrity: sha512-qwKa+PaNIYjZ2PVrRRLq+HjNjQsjEItXN21byvSD89r7EYCULsIC8aW4H6aniOP2A6X1DIZ+djpg+3hNJ/94NA==} + lefthook-darwin-x64@1.6.10: + resolution: {integrity: sha512-FiOB0t5OBcQ8OnG/LSdfUYj736SJdlLjWuOZ4wTlJ7EUrHditieap6VNAxwMmFVyQN0X2ZwKWytwY35y+Hflhw==} cpu: [x64] os: [darwin] - lefthook-freebsd-arm64@1.6.18: - resolution: {integrity: sha512-UIOzQ+okwB7Ah9p8sNqomOiU6cPfmJnyW3HDPutRsdoHRD8udIap9d+ja4Kg4m/PkoYtkcLO78omANqAgA5wxQ==} + lefthook-freebsd-arm64@1.6.10: + resolution: {integrity: sha512-IxGgS3RrNwk3Kr83o5SQhGxqppQi7fu2t//nsp6ocgnJeStrTtXZJOrel2VohzrFxpzQdJVXBGgUGLXtY8t8qw==} cpu: [arm64] os: [freebsd] - lefthook-freebsd-x64@1.6.18: - resolution: {integrity: sha512-UQANUgyNpaAh0+2/PjPFiJ7yd6aF15yyJxKZCXyna5cQF7VU8pSHu5tiDDquNpjToXOg+6TmiIAJKyfrrwTF3w==} + lefthook-freebsd-x64@1.6.10: + resolution: {integrity: sha512-sFSe+dGLa4iBblWAhAGTP9moarcbFtFAH6aaCeyqSX51O6p9VPdGjqNtcE8aGbGAk4lO6v1ScRjk5ogMSinJwQ==} cpu: [x64] os: [freebsd] - lefthook-linux-arm64@1.6.18: - resolution: {integrity: sha512-4erletIa2HKUgY17/1ROvndAj6xn/9wkqO2GhBT3C0vFwIv6ycy5wpFzXOwKRZpFYv7UacN7iXhAZSK+vSOZZg==} + lefthook-linux-arm64@1.6.10: + resolution: {integrity: sha512-fXnKiNdRIW+FRvc1keVrvWX5EqIhVFfPjcy+PbsKdxiWRXgjtidi6LPmQ8eosH0DC9PxZ0mpdCMf40FHEZLbQA==} cpu: [arm64] os: [linux] - lefthook-linux-x64@1.6.18: - resolution: {integrity: sha512-l5SRqYMYygw9RjZncEg8uh29wShYN8kiYr53sp74DkntrlCttqWhLILBUlIr3fxH5s0ZyrmqUEjtMBryMk7b/g==} + lefthook-linux-x64@1.6.10: + resolution: {integrity: sha512-bm6l2GOFnmYreZxmHb47QeOiFAItttOOxvCEX1okIRD7JbUC+lGC9evW5GJv/ltjZBoTDYEtQAUa+BpHTGuY2A==} cpu: [x64] os: [linux] - lefthook-windows-arm64@1.6.18: - resolution: {integrity: sha512-jeNBRoya3+mOEsKyT4wXf29Kng1nkJD7Uv/dqGBszoGMktGVNUFdIjWoxx6HSfhUssucs5pKRZpXSMgK/KCP+Q==} + lefthook-windows-arm64@1.6.10: + resolution: {integrity: sha512-pFxT8KbOMzGxj6cz4glHYwQSNC7XCuy9RDqIO0AxPlpATsCpapkF4ngDxBT1iFv2VhdeweMa7RXUDsMAGQA4Qw==} cpu: [arm64] os: [win32] - lefthook-windows-x64@1.6.18: - resolution: {integrity: sha512-iEG8PbFOwMqlpAgCiqzANTxutERjwlwMx6WF6HDGEYwFJSCJsvi06TehDxaPIFbhmLLYYlbVrfSBlttWGoN0dg==} + lefthook-windows-x64@1.6.10: + resolution: {integrity: sha512-fcDnUSTv95AdLvm0NIrn3jBWXuRq8SlbDDjkkB5OHLiSmjz4eOr6wyD7xceDp33zZgZmWFzHebJngxxcIaUuHw==} cpu: [x64] os: [win32] - lefthook@1.6.18: - resolution: {integrity: sha512-Ftr/NkU1P1EsEyphsCqCX7lesGZA+QDXyUx4dS1RlSKB72xKtGW9VPjbGLK2kSQkONG5M+XYfbJkGA/r9NLTYQ==} + lefthook@1.6.10: + resolution: {integrity: sha512-HeVjsDCrHLe9htQHbLuQJu2YdLK6Tl5bh36fOpmXqckEXTI0BDR0Y5JYc7G5Inj4YXQsc51a9dUDZMeniSnSag==} hasBin: true leven@3.1.0: @@ -8050,6 +8901,9 @@ packages: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} engines: {node: '>= 0.8.0'} + lie@3.3.0: + resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} + lighthouse-logger@1.4.2: resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} @@ -8057,28 +8911,28 @@ packages: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} - lilconfig@3.1.2: - resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} + lilconfig@3.1.1: + resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==} engines: {node: '>=14'} lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - listhen@1.7.2: - resolution: {integrity: sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==} + listhen@1.6.0: + resolution: {integrity: sha512-z0RcEXVX5oTpY1bO02SKoTU/kmZSrFSngNNzHRM6KICR17PTq7ANush6AE6ztGJwJD4RLpBrVHd9GnV51J7s3w==} hasBin: true lit-element@3.3.3: resolution: {integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==} - lit-element@4.0.6: - resolution: {integrity: sha512-U4sdJ3CSQip7sLGZ/uJskO5hGiqtlpxndsLr6mt3IQIjheg93UKYeGQjWMRql1s/cXNOaRrCzC2FQwjIwSUqkg==} + lit-element@4.0.4: + resolution: {integrity: sha512-98CvgulX6eCPs6TyAIQoJZBCQPo80rgXR+dVBs61cstJXqtI+USQZAbA4gFHh6L/mxBx9MrgPLHLsUgDUHAcCQ==} lit-html@2.8.0: resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==} - lit-html@3.1.4: - resolution: {integrity: sha512-yKKO2uVv7zYFHlWMfZmqc+4hkmSbFp8jgjdZY9vvR9jr4J8fH6FUMXhr+ljfELgmjpvlF7Z1SJ5n5/Jeqtc9YA==} + lit-html@3.1.2: + resolution: {integrity: sha512-3OBZSUrPnAHoKJ9AMjRL/m01YJxQMf+TMHanNtTHG68ubjnZxK0RFl102DPzsw4mWnHibfZIBJm3LWCZ/LmMvg==} lit@2.8.0: resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==} @@ -8120,6 +8974,12 @@ packages: lodash.debounce@4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + lodash.defaults@4.2.0: + resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} + + lodash.isarguments@3.1.0: + resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==} + lodash.isequal@4.5.0: resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} @@ -8170,23 +9030,38 @@ packages: loupe@2.3.7: resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} + loupe@3.1.1: + resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==} + lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + lowercase-keys@2.0.0: + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} + lowercase-keys@3.0.0: resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - lru-cache@10.3.0: - resolution: {integrity: sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ==} + lru-cache@10.2.0: + resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} engines: {node: 14 || >=16.14} + lru-cache@11.0.1: + resolution: {integrity: sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==} + engines: {node: 20 || >=22} + lru-cache@4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + lru-queue@0.1.0: resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==} @@ -8200,8 +9075,19 @@ packages: magic-string@0.30.11: resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} - magicast@0.3.4: - resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==} + magic-string@0.30.7: + resolution: {integrity: sha512-8vBuFF/I/+OSLRmdf2wwFCJCz+nSn0m6DPvGH1fS/KiQoSaR+sETbov0eIk9KhEKy8CYqIkIAnbohxT/4H0kuA==} + engines: {node: '>=12'} + + magic-string@0.30.9: + resolution: {integrity: sha512-S1+hd+dIrC8EZqKyT9DstTH/0Z+f76kmmvZnkfQVmOpDEF9iVgdYif3Q/pIWHmCoo59bQVGW0kVL3e2nl+9+Sw==} + engines: {node: '>=12'} + + magicast@0.3.3: + resolution: {integrity: sha512-ZbrP1Qxnpoes8sz47AM0z08U+jW6TyRgZzcWy3Ma3vDhJttwMwAFDMMQFobwdBxByBD46JYmxRzeF7w2+wJEuw==} + + magicast@0.3.5: + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} @@ -8231,8 +9117,8 @@ packages: markdown-table@3.0.3: resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} - markdown-to-jsx@7.3.2: - resolution: {integrity: sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==} + markdown-to-jsx@7.5.0: + resolution: {integrity: sha512-RrBNcMHiFPcz/iqIj0n3wclzHXjwS7mzjBNWecKKVhNTIxQepIix6Il/wZCn2Cg5Y1ow2Qi84+eJrryFRWBEWw==} engines: {node: '>= 10'} peerDependencies: react: '>= 0.14.0' @@ -8252,8 +9138,8 @@ packages: mdast-util-find-and-replace@3.0.1: resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} - mdast-util-from-markdown@2.0.1: - resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} + mdast-util-from-markdown@2.0.0: + resolution: {integrity: sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA==} mdast-util-gfm-autolink-literal@2.0.0: resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==} @@ -8288,8 +9174,8 @@ packages: mdast-util-phrasing@4.1.0: resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} - mdast-util-to-hast@13.2.0: - resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + mdast-util-to-hast@13.1.0: + resolution: {integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==} mdast-util-to-markdown@2.1.0: resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} @@ -8307,9 +9193,8 @@ packages: memoize-one@5.2.1: resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} - memoizee@0.4.17: - resolution: {integrity: sha512-DGqD7Hjpi/1or4F/aYAspXKNm5Yili0QDAFAY4QYvpqpgiY6+1jOfqpmByzjxbWd/T9mChbCArXAbDAsTm5oXA==} - engines: {node: '>=0.12'} + memoizee@0.4.15: + resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==} memoizerific@1.11.3: resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} @@ -8318,8 +9203,8 @@ packages: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} - merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + merge-descriptors@1.0.3: + resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} merge-options@3.0.4: resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==} @@ -8340,61 +9225,61 @@ packages: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} - metro-babel-transformer@0.80.9: - resolution: {integrity: sha512-d76BSm64KZam1nifRZlNJmtwIgAeZhZG3fi3K+EmPOlrR8rDtBxQHDSN3fSGeNB9CirdTyabTMQCkCup6BXFSQ==} + metro-babel-transformer@0.80.6: + resolution: {integrity: sha512-ssuoVC4OzqaOt3LpwfUbDfBlFGRu9v1Yf2JJnKPz0ROYHNjSBws4aUesqQQ/Ea8DbiH7TK4j4cJmm+XjdHmgqA==} engines: {node: '>=18'} - metro-cache-key@0.80.9: - resolution: {integrity: sha512-hRcYGhEiWIdM87hU0fBlcGr+tHDEAT+7LYNCW89p5JhErFt/QaAkVx4fb5bW3YtXGv5BTV7AspWPERoIb99CXg==} + metro-cache-key@0.80.6: + resolution: {integrity: sha512-DFmjQacC8m/S3HpELklLMWkPGP/fZPX3BSgjd0xQvwIvWyFwk8Nn/lfp/uWdEVDtDSIr64/anXU5uWohGwlWXw==} engines: {node: '>=18'} - metro-cache@0.80.9: - resolution: {integrity: sha512-ujEdSI43QwI+Dj2xuNax8LMo8UgKuXJEdxJkzGPU6iIx42nYa1byQ+aADv/iPh5sh5a//h5FopraW5voXSgm2w==} + metro-cache@0.80.6: + resolution: {integrity: sha512-NP81pHSPkzs+iNlpVkJqijrpcd6lfuDAunYH9/Rn8oLNz0yLfkl8lt+xOdUU4IkFt3oVcTBEFCnzAzv4B8YhyA==} engines: {node: '>=18'} - metro-config@0.80.9: - resolution: {integrity: sha512-28wW7CqS3eJrunRGnsibWldqgwRP9ywBEf7kg+uzUHkSFJNKPM1K3UNSngHmH0EZjomizqQA2Zi6/y6VdZMolg==} + metro-config@0.80.6: + resolution: {integrity: sha512-vHYYvJpRTWYbmvqlR7i04xQpZCHJ6yfZ/xIcPdz2ssbdJGGJbiT1Aar9wr8RAhsccSxdJgfE5B1DB8Mo+DnhIg==} engines: {node: '>=18'} - metro-core@0.80.9: - resolution: {integrity: sha512-tbltWQn+XTdULkGdzHIxlxk4SdnKxttvQQV3wpqqFbHDteR4gwCyTR2RyYJvxgU7HELfHtrVbqgqAdlPByUSbg==} + metro-core@0.80.6: + resolution: {integrity: sha512-fn4rryTUAwzFJWj7VIPDH4CcW/q7MV4oGobqR6NsuxZoIGYrVpK7pBasumu5YbCqifuErMs5s23BhmrDNeZURw==} engines: {node: '>=18'} - metro-file-map@0.80.9: - resolution: {integrity: sha512-sBUjVtQMHagItJH/wGU9sn3k2u0nrCl0CdR4SFMO1tksXLKbkigyQx4cbpcyPVOAmGTVuy3jyvBlELaGCAhplQ==} + metro-file-map@0.80.6: + resolution: {integrity: sha512-S3CUqvpXpc+q3q+hCEWvFKhVqgq0VmXdZQDF6u7ue86E2elq1XLnfLOt9JSpwyhpMQRyysjSCnd/Yh6GZMNHoQ==} engines: {node: '>=18'} - metro-minify-terser@0.80.9: - resolution: {integrity: sha512-FEeCeFbkvvPuhjixZ1FYrXtO0araTpV6UbcnGgDUpH7s7eR5FG/PiJz3TsuuPP/HwCK19cZtQydcA2QrCw446A==} + metro-minify-terser@0.80.6: + resolution: {integrity: sha512-83eZaH2+B+jP92KuodPqXknzwmiboKAuZY4doRfTEEXAG57pNVNN6cqSRJlwDnmaTBKRffxoncBXbYqHQgulgg==} engines: {node: '>=18'} - metro-resolver@0.80.9: - resolution: {integrity: sha512-wAPIjkN59BQN6gocVsAvvpZ1+LQkkqUaswlT++cJafE/e54GoVkMNCmrR4BsgQHr9DknZ5Um/nKueeN7kaEz9w==} + metro-resolver@0.80.6: + resolution: {integrity: sha512-R7trfglG4zY4X9XyM9cvuffAhQ9W1reWoahr1jdEWa6rOI8PyM0qXjcsb8l+fsOQhdSiVlkKcYAmkyrs1S/zrA==} engines: {node: '>=18'} - metro-runtime@0.80.9: - resolution: {integrity: sha512-8PTVIgrVcyU+X/rVCy/9yxNlvXsBCk5JwwkbAm/Dm+Abo6NBGtNjWF0M1Xo/NWCb4phamNWcD7cHdR91HhbJvg==} + metro-runtime@0.80.6: + resolution: {integrity: sha512-21GQVd0pp2nACoK0C2PL8mBsEhIFUFFntYrWRlYNHtPQoqDzddrPEIgkyaABGXGued+dZoBlFQl+LASlmmfkvw==} engines: {node: '>=18'} - metro-source-map@0.80.9: - resolution: {integrity: sha512-RMn+XS4VTJIwMPOUSj61xlxgBvPeY4G6s5uIn6kt6HB6A/k9ekhr65UkkDD7WzHYs3a9o869qU8tvOZvqeQzgw==} + metro-source-map@0.80.6: + resolution: {integrity: sha512-lqDuSLctWy9Qccu4Zl0YB1PzItpsqcKGb1nK0aDY+lzJ26X65OCib2VzHlj+xj7e4PiIKOfsvDCczCBz4cnxdg==} engines: {node: '>=18'} - metro-symbolicate@0.80.9: - resolution: {integrity: sha512-Ykae12rdqSs98hg41RKEToojuIW85wNdmSe/eHUgMkzbvCFNVgcC0w3dKZEhSsqQOXapXRlLtHkaHLil0UD/EA==} + metro-symbolicate@0.80.6: + resolution: {integrity: sha512-SGwKeBi+lK7NmM5+EcW6DyRRa9HmGSvH0LJtlT4XoRMbpxzsLYs0qUEA+olD96pOIP+ta7I8S30nQr2ttqgO8A==} engines: {node: '>=18'} hasBin: true - metro-transform-plugins@0.80.9: - resolution: {integrity: sha512-UlDk/uc8UdfLNJhPbF3tvwajyuuygBcyp+yBuS/q0z3QSuN/EbLllY3rK8OTD9n4h00qZ/qgxGv/lMFJkwP4vg==} + metro-transform-plugins@0.80.6: + resolution: {integrity: sha512-e04tdTC5Fy1vOQrTTXb5biao0t7nR/h+b1IaBTlM5UaHaAJZr658uVOoZhkRxKjbhF2mIwJ/8DdorD2CA15BCg==} engines: {node: '>=18'} - metro-transform-worker@0.80.9: - resolution: {integrity: sha512-c/IrzMUVnI0hSVVit4TXzt3A1GiUltGVlzCmLJWxNrBGHGrJhvgePj38+GXl1Xf4Fd4vx6qLUkKMQ3ux73bFLQ==} + metro-transform-worker@0.80.6: + resolution: {integrity: sha512-jV+VgCLiCj5jQadW/h09qJaqDreL6XcBRY52STCoz2xWn6WWLLMB5nXzQtvFNPmnIOps+Xu8+d5hiPcBNOhYmA==} engines: {node: '>=18'} - metro@0.80.9: - resolution: {integrity: sha512-Bc57Xf3GO2Xe4UWQsBj/oW6YfLPABEu8jfDVDiNmJvoQW4CO34oDPuYKe4KlXzXhcuNsqOtSxpbjCRRVjhhREg==} + metro@0.80.6: + resolution: {integrity: sha512-f6Nhnht9TxVRP6zdBq9J2jNdeDBxRmJFnjxhQS1GeCpokBvI6fTXq+wHTLz5jZA+75fwbkPSzBxBJzQa6xi0AQ==} engines: {node: '>=18'} hasBin: true @@ -8509,8 +9394,12 @@ packages: micromark@4.0.0: resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} - micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} + micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} mime-db@1.52.0: @@ -8544,6 +9433,14 @@ packages: resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} engines: {node: '>=12'} + mimic-function@5.0.1: + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + engines: {node: '>=18'} + + mimic-response@1.0.1: + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} + mimic-response@3.1.0: resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} engines: {node: '>=10'} @@ -8552,6 +9449,9 @@ packages: resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + min-document@2.19.0: + resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} + min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} @@ -8566,39 +9466,45 @@ packages: minimalistic-crypto-utils@1.0.1: resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} + minimatch@10.0.1: + resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} + engines: {node: 20 || >=22} + minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + minimatch@5.0.1: + resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==} engines: {node: '>=10'} minimatch@7.4.6: resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==} engines: {node: '>=10'} - minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + + minimatch@9.0.4: + resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} engines: {node: '>=16 || 14 >=14.17'} minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} + minipass@2.9.0: + resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==} - minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} + minipass@7.0.4: + resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + engines: {node: '>=16 || 14 >=14.17'} minipass@7.1.2: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} - minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} + minizlib@1.3.3: + resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==} mipd@0.0.5: resolution: {integrity: sha512-gbKA784D2WKb5H/GtqEv+Ofd1S9Zj+Z/PGDIl1u1QAbswkxD28BQ5bSXQxkeBzPBABg1iDSbiwGG1XqlOxRspA==} @@ -8608,8 +9514,18 @@ packages: typescript: optional: true - mkdirp-classic@0.5.3: - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + mipd@0.0.7: + resolution: {integrity: sha512-aAPZPNDQ3uMTdKbuO2YmAw2TxLHO0moa4YKAyETM/DTj5FloZo+a+8tU+iv4GmW+sOxKLSRwcSFuczk+Cpt6fg==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + mkdirp-promise@5.0.1: + resolution: {integrity: sha512-Hepn5kb1lJPtVW84RFT40YG1OddBNTOVUZR2bzQUHc+Z03en8/3uX0+060JDhcEzyO08HmipsN9DcnFMxhIL9w==} + engines: {node: '>=4'} + deprecated: This package is broken and no longer maintained. 'mkdirp' itself supports promises now, please switch to that. mkdirp@0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} @@ -8625,11 +9541,14 @@ packages: engines: {node: '>=10'} hasBin: true - mlly@1.7.1: - resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} + mlly@1.5.0: + resolution: {integrity: sha512-NPVQvAY1xr1QoVeG0cy8yUYC7FQcOx6evl/RjT1wL5FvzPnzOysoqB/jmx/DhssT2dYa8nxECLAaFI/+gVLhDQ==} - moralis@2.26.7: - resolution: {integrity: sha512-nJLSSePOAfEL2iAje1GdP164OwDaICdbbkyivN7lPHutjirDMRD6bxYdYqOxDdzR1fx3mf5nhQEeD7o/pndgiQ==} + mock-fs@4.14.0: + resolution: {integrity: sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw==} + + moralis@2.26.2: + resolution: {integrity: sha512-9CfzUuPvTZrwyjQQ+rtpvnIXKR6G793iWDXCBUpZomAUHk/3KcR80KwuBZBAvH9uIfl7MGqkp3C0uk5vX2714Q==} motion@10.16.2: resolution: {integrity: sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==} @@ -8654,6 +9573,22 @@ packages: muggle-string@0.4.1: resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} + multibase@0.6.1: + resolution: {integrity: sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==} + deprecated: This module has been superseded by the multiformats module + + multibase@0.7.0: + resolution: {integrity: sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==} + deprecated: This module has been superseded by the multiformats module + + multicodec@0.5.7: + resolution: {integrity: sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==} + deprecated: This module has been superseded by the multiformats module + + multicodec@1.0.4: + resolution: {integrity: sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==} + deprecated: This module has been superseded by the multiformats module + multiformats@11.0.2: resolution: {integrity: sha512-b5mYMkOkARIuVZCpvijFj9a6m5wMVLC7cf/jIPd5D/ARDOfLC5+IFkbgDXQgcU2goIsTD/O9NY4DI/Mt4OGvlg==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} @@ -8662,20 +9597,28 @@ packages: resolution: {integrity: sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} - multiformats@13.1.3: - resolution: {integrity: sha512-CZPi9lFZCM/+7oRolWYsvalsyWQGFo+GpdaTmjxXXomC+nP/W1Rnxb9sUgjvmNmRZ5bOPqRAl4nuK+Ydw/4tGw==} + multiformats@13.1.0: + resolution: {integrity: sha512-HzdtdBwxsIkzpeXzhQ5mAhhuxcHbjEHH+JQoxt7hG/2HGFjjwyolLo7hbaexcnhoEuV4e0TNJ8kkpMjiEYY4VQ==} multiformats@9.9.0: resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} + multihashes@0.4.21: + resolution: {integrity: sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==} + murky@https://codeload.github.com/dmfxyz/murky/tar.gz/5feccd1253d7da820f7cccccdedf64471025455d: resolution: {tarball: https://codeload.github.com/dmfxyz/murky/tar.gz/5feccd1253d7da820f7cccccdedf64471025455d} - name: murky version: 0.0.0 + mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + mz@2.7.0: resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + nano-json-stream-parser@0.1.2: + resolution: {integrity: sha512-9MqxMH/BSJC7dnLsEMPyfN5Dvoo49IsPFYMcHw3Bcfc2kN0lpHRBSzlMSVx4HGyJ7s9B31CyBTVehWJoQ8Ctew==} + nanoid@3.3.7: resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} @@ -8686,9 +9629,6 @@ packages: engines: {node: ^14 || ^16 || >=18} hasBin: true - napi-wasm@1.1.0: - resolution: {integrity: sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg==} - native-fetch@3.0.0: resolution: {integrity: sha512-G3Z7vx0IFb/FQ4JxvtqGABsOTIqRWvgQz6e+erkB+JJD6LrszQtMozEHI4EkmgZQvnGHrpLVzUWk7t4sJCIkVw==} peerDependencies: @@ -8709,6 +9649,10 @@ packages: neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + neotraverse@0.6.18: + resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} + engines: {node: '>= 10'} + next-tick@1.1.0: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} @@ -8739,8 +9683,8 @@ packages: resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} engines: {node: '>= 0.10.5'} - node-fetch-native@1.6.4: - resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} + node-fetch-native@1.6.2: + resolution: {integrity: sha512-69mtXOFZ6hSkYiXAVB5SqaRvrbITC/NPyqv7yuu/qw0nmgPyYbIMYYNIDhNtwPrzk0ptrimrLz/hhjvm4w5Z+w==} node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} @@ -8755,8 +9699,8 @@ packages: resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} engines: {node: '>= 6.13.0'} - node-gyp-build@4.8.1: - resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==} + node-gyp-build@4.8.0: + resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==} hasBin: true node-int64@0.4.0: @@ -8765,13 +9709,13 @@ packages: node-releases@2.0.14: resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + node-releases@2.0.18: + resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} + node-stream-zip@1.15.0: resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==} engines: {node: '>=0.12.0'} - normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} @@ -8780,8 +9724,12 @@ packages: resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} engines: {node: '>=0.10.0'} - normalize-url@8.0.1: - resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==} + normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + + normalize-url@8.0.0: + resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==} engines: {node: '>=14.16'} not@0.1.0: @@ -8804,8 +9752,8 @@ packages: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} - npm-run-path@5.3.0: - resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + npm-run-path@5.2.0: + resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} nth-check@2.1.1: @@ -8818,16 +9766,14 @@ packages: resolution: {integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==} engines: {node: '>=6.5.0', npm: '>=3'} - nwsapi@2.2.10: - resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==} + nwsapi@2.2.7: + resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} - nypm@0.3.9: - resolution: {integrity: sha512-BI2SdqqTHg2d4wJh8P9A1W+bslg33vOE9IZDY6eR2QC+Pu1iNBVZUqczrd43rJb+fMzHU7ltAYKsEFY/kHMFcw==} - engines: {node: ^14.16.0 || >=16.10.0} - hasBin: true + oauth-sign@0.9.0: + resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} - ob1@0.80.9: - resolution: {integrity: sha512-v9yOxowkZbxWhKOaaTyLjIm1aLy4ebMNcSn4NYJKOAI/Qv+SkfEfszpLr2GIxsccmb2Y2HA9qtsqiIJ80ucpVA==} + ob1@0.80.6: + resolution: {integrity: sha512-nlLGZPMQ/kbmkdIb5yvVzep1jKUII2x6ehNsHpgy71jpnJMW7V+KsB3AjYI2Ajb7UqMAMNjlssg6FUodrEMYzg==} engines: {node: '>=18'} obj-multiplex@1.0.0: @@ -8841,13 +9787,8 @@ packages: resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} engines: {node: '>= 6'} - object-inspect@1.13.2: - resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} - engines: {node: '>= 0.4'} - - object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} - engines: {node: '>= 0.4'} + object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} @@ -8857,20 +9798,22 @@ packages: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} - object.fromentries@2.0.8: - resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + object.fromentries@2.0.7: + resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} engines: {node: '>= 0.4'} - object.groupby@1.0.3: - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} - engines: {node: '>= 0.4'} + object.groupby@1.0.1: + resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} - object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} + object.values@1.1.7: + resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} engines: {node: '>= 0.4'} - ofetch@1.3.4: - resolution: {integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==} + oboe@2.1.5: + resolution: {integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==} + + ofetch@1.3.3: + resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==} ohash@1.1.3: resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} @@ -8901,6 +9844,13 @@ packages: resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} engines: {node: '>=12'} + onetime@7.0.0: + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} + + oniguruma-to-js@0.4.3: + resolution: {integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==} + open@6.4.0: resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==} engines: {node: '>=8'} @@ -8913,17 +9863,20 @@ packages: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} + open@9.1.0: + resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} + engines: {node: '>=14.16'} + openapi-types@12.1.3: resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==} optimism@https://codeload.github.com/ethereum-optimism/optimism/tar.gz/ab3a54febb36398539fd3b849c222b7e70169dc8: resolution: {tarball: https://codeload.github.com/ethereum-optimism/optimism/tar.gz/ab3a54febb36398539fd3b849c222b7e70169dc8} - name: optimism version: 1.0.0 engines: {node: '>=16', pnpm: '>=9'} - optionator@0.9.4: - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + optionator@0.9.3: + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} engines: {node: '>= 0.8.0'} ora@5.4.1: @@ -8934,8 +9887,8 @@ packages: resolution: {integrity: sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - ora@8.0.1: - resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==} + ora@8.1.0: + resolution: {integrity: sha512-GQEkNkH/GHOhPFXcqZs3IDahXEQcQxsSjEkK4KvEEST4t7eNzoMjxTzef+EZ+JluDEV+Raoi3WQ2CflnRdSVnQ==} engines: {node: '>=18'} os-tmpdir@1.0.2: @@ -8945,6 +9898,10 @@ packages: outdent@0.5.0: resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + p-cancelable@2.1.1: + resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} + engines: {node: '>=8'} + p-cancelable@3.0.0: resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} engines: {node: '>=12.20'} @@ -9022,7 +9979,6 @@ packages: p256-verifier#v0.1.0@https://codeload.github.com/taikoxyz/p256-verifier/tar.gz/6ef45b117642786b08a37b4c37c6a6ce151166da: resolution: {tarball: https://codeload.github.com/taikoxyz/p256-verifier/tar.gz/6ef45b117642786b08a37b4c37c6a6ce151166da} - name: p256-verifier#v0.1.0 version: 0.0.0 package-json-from-dist@1.0.0: @@ -9032,12 +9988,18 @@ packages: resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==} engines: {node: '>=14.16'} + package-manager-detector@0.2.0: + resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==} + pagefind@1.1.0: resolution: {integrity: sha512-1nmj0/vfYcMxNEQj0YDRp6bTVv9hI7HLdPhK/vBBYlrnwjATndQvHyicj5Y7pUHrpCFZpFnLVQXIF829tpFmaw==} hasBin: true - pako@0.2.9: - resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} + pako@1.0.11: + resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + + param-case@3.0.4: + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} @@ -9049,6 +10011,9 @@ packages: parse-entities@4.0.1: resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} + parse-headers@2.0.5: + resolution: {integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==} + parse-json@4.0.0: resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} engines: {node: '>=4'} @@ -9073,6 +10038,9 @@ packages: path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + path-case@3.0.4: + resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} + path-exists@3.0.0: resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} engines: {node: '>=4'} @@ -9100,12 +10068,16 @@ packages: path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} + path-scurry@1.10.1: + resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} + engines: {node: '>=16 || 14 >=14.17'} + + path-scurry@2.0.0: + resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} + engines: {node: 20 || >=22} - path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + path-to-regexp@0.1.10: + resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==} path-to-regexp@6.2.2: resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} @@ -9114,28 +10086,31 @@ packages: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} - path-type@5.0.0: - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} - engines: {node: '>=12'} - pathe@1.1.2: resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + pathval@2.0.0: + resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} + engines: {node: '>= 14.16'} + pbkdf2@3.1.2: resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} engines: {node: '>=0.12'} - peek-stream@1.1.3: - resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} + performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} periscopic@3.1.0: resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} - picocolors@1.0.1: - resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + + picocolors@1.1.0: + resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} @@ -9183,21 +10158,17 @@ packages: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} - pkg-dir@5.0.0: - resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} - engines: {node: '>=10'} - - pkg-types@1.1.2: - resolution: {integrity: sha512-VEGf1he2DR5yowYRl0XJhWJq5ktm9gYIsH+y8sNJpHlxch7JPDaufgrsl4vYjd9hMUY8QVjoNncKbow9I7exyA==} + pkg-types@1.0.3: + resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} - playwright-core@1.45.0: - resolution: {integrity: sha512-lZmHlFQ0VYSpAs43dRq1/nJ9G/6SiTI7VPqidld9TDefL9tX87bTKExWZZUF5PeRyqtXqd8fQi2qmfIedkwsNQ==} - engines: {node: '>=18'} + playwright-core@1.43.1: + resolution: {integrity: sha512-EI36Mto2Vrx6VF7rm708qSnesVQKbxEWvPrfA1IPY6HgczBplDx7ENtx+K2n4kJ41sLLkuGfmb0ZLSSXlDhqPg==} + engines: {node: '>=16'} hasBin: true - playwright@1.45.0: - resolution: {integrity: sha512-4z3ac3plDfYzGB6r0Q3LF8POPR20Z8D0aXcxbJvmfMgSSq1hkcgvFRXJk9rUq5H/MJ0Ktal869hhOdI/zUTeLA==} - engines: {node: '>=18'} + playwright@1.43.1: + resolution: {integrity: sha512-V7SoH0ai2kNt1Md9E3Gwas5B9m8KR2GVvwZnAI6Pg0m3sh7UvgiYhRrhsziCmqMJNouPckiOhk8T+9bSAK0VIA==} + engines: {node: '>=16'} hasBin: true pluralize@8.0.0: @@ -9212,14 +10183,10 @@ packages: resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} engines: {node: '>=10'} - pony-cause@2.1.11: - resolution: {integrity: sha512-M7LhCsdNbNgiLYiP4WjsfLUuFmCfnjdF6jKe2R9NKl4WFN+HZPGHJZ9lnLP7f9ZnKe3U9nuWD0szirmj+migUg==} + pony-cause@2.1.10: + resolution: {integrity: sha512-3IKLNXclQgkU++2fSi93sQ6BznFuxSLB11HdvZQ6JW/spahf/P1pAHBQEahr20rs0htZW0UDkM1HmA+nZkXKsw==} engines: {node: '>=12.0.0'} - possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} - postcss-import@15.1.0: resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} engines: {node: '>=14.0.0'} @@ -9274,8 +10241,8 @@ packages: peerDependencies: postcss: ^8.2.14 - postcss-nesting@12.1.5: - resolution: {integrity: sha512-N1NgI1PDCiAGWPTYrwqm8wpjv0bgDmkYHH72pNsqTCv9CObxjxftdYu6AKtGN+pnJa7FQjMm3v4sp8QJbFsYdQ==} + postcss-nesting@12.1.0: + resolution: {integrity: sha512-QOYnosaZ+mlP6plQrAxFw09UUp2Sgtxj1BVHN+rSVbtV0Yx48zRt9/9F/ZOoxOKBBEsaJk2MYhhVRjeRRw5yuw==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -9292,27 +10259,27 @@ packages: peerDependencies: postcss: ^8.4.29 - postcss-selector-parser@6.1.0: - resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} + postcss-selector-parser@6.0.15: + resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} + engines: {node: '>=4'} + + postcss-selector-parser@6.0.16: + resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==} engines: {node: '>=4'} postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@8.4.39: - resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} + postcss@8.4.38: + resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} engines: {node: ^10 || ^12 || >=14} - postcss@8.4.41: - resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==} + postcss@8.4.47: + resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} engines: {node: ^10 || ^12 || >=14} - preact@10.22.1: - resolution: {integrity: sha512-jRYbDDgMpIb5LHq3hkI0bbl+l/TQ9UnkdQ0ww+lp+4MMOdqaUYdFc5qeyP+IV8FAd/2Em7drVPeKdQxsiWCf/A==} - - preferred-pm@3.1.3: - resolution: {integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==} - engines: {node: '>=10'} + preact@10.19.5: + resolution: {integrity: sha512-OPELkDmSVbKjbFqF9tgvOowiiQ9TmsJljIzXRyNE8nGiis94pwv1siF78rQkAP1Q1738Ce6pellRg/Ns/CtHqQ==} preferred-pm@4.0.0: resolution: {integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==} @@ -9326,19 +10293,30 @@ packages: resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} engines: {node: '>=6.0.0'} - prettier-plugin-svelte@3.2.5: - resolution: {integrity: sha512-vP/M/Goc8z4iVIvrwXwbrYVjJgA0Hf8PO1G4LBh/ocSt6vUP6sLvyu9F3ABEGr+dbKyxZjEKLkeFsWy/yYl0HQ==} + prettier-plugin-svelte@3.2.2: + resolution: {integrity: sha512-ZzzE/wMuf48/1+Lf2Ffko0uDa6pyCfgHV6+uAhtg2U0AAXGrhCSW88vEJNAkAxW5qyrFY1y1zZ4J8TgHrjW++Q==} + peerDependencies: + prettier: ^3.0.0 + svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0 + + prettier-plugin-svelte@3.2.3: + resolution: {integrity: sha512-wJq8RunyFlWco6U0WJV5wNCM7zpBFakS76UBSbmzMGpncpK98NZABaE+s7n8/APDCEVNHXC5Mpq+MLebQtsRlg==} peerDependencies: prettier: ^3.0.0 svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0 + prettier@2.8.7: + resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} + engines: {node: '>=10.13.0'} + hasBin: true + prettier@2.8.8: resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} engines: {node: '>=10.13.0'} hasBin: true - prettier@3.3.2: - resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==} + prettier@3.2.5: + resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} engines: {node: '>=14'} hasBin: true @@ -9354,14 +10332,13 @@ packages: resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - pretty-hrtime@1.0.3: - resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} - engines: {node: '>= 0.8'} - prismjs@1.29.0: resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} engines: {node: '>=6'} + process-nextick-args@1.0.7: + resolution: {integrity: sha512-yN0WQmuCX63LP/TMvAg31nvT6m4vDqJEiiv2CAZqWOGNWutc9DfDk1NPYYmKUFmaVM2UwDowH4u5AHWYP/jxKw==} + process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} @@ -9383,18 +10360,25 @@ packages: promise@8.3.0: resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + prompt@1.3.0: + resolution: {integrity: sha512-ZkaRWtaLBZl7KKAKndKYUL8WqNT+cQHKRZnT4RYYms48jQkFw3rrBL+/N5K/KtdEveHkxs982MX2BkDKub2ZMg==} + engines: {node: '>= 6.0.0'} + prompts@2.4.2: resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} engines: {node: '>= 6'} + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + property-information@6.5.0: resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} proto-list@1.2.4: resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} - protobufjs@7.3.2: - resolution: {integrity: sha512-RXyHaACeqXeqAKGLDl68rQKbmObRsTIn4TYVUUug1KfS47YWCo5MacGITEryugIgZqORCvJWEk4l449POg5Txg==} + protobufjs@7.2.6: + resolution: {integrity: sha512-dgJaEDDL6x8ASUZ1YqWciTRrdOuYNzoOf27oHNfdyvKqHr5i0FV7FSLU+aIeFjyFgVxrpTOtQUi0BLLBymZaBw==} engines: {node: '>=12.0.0'} proxy-addr@2.0.7: @@ -9418,14 +10402,12 @@ packages: engines: {node: '>=16'} hasBin: true - pump@2.0.1: - resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} - pump@3.0.0: resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} - pumpify@1.5.1: - resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} + punycode@2.1.0: + resolution: {integrity: sha512-Yxz2kRwT90aPiWEMHVYnEf4+rhwF1tBmmZ4KepCP+Wkium9JxtWnUm1nqGwpiAHr/tnTSeHqr3wb++jgSkXjhA==} + engines: {node: '>=6'} punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} @@ -9446,23 +10428,22 @@ packages: engines: {node: '>=10.13.0'} hasBin: true - qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + qs@6.13.0: + resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} engines: {node: '>=0.6'} - qs@6.12.2: - resolution: {integrity: sha512-x+NLUpx9SYrcwXtX7ob1gnkSems4i/mGZX5SlYxwIau6RrUSODO89TR/XDGGpn5RPWSYIB+aSfuSlV5+CmbTBg==} + qs@6.5.3: + resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} engines: {node: '>=0.6'} + query-string@5.1.1: + resolution: {integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==} + engines: {node: '>=0.10.0'} + query-string@7.1.3: resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} engines: {node: '>=6'} - querystring@0.2.1: - resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} - engines: {node: '>=0.4.x'} - deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. - querystringify@2.2.0: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} @@ -9479,11 +10460,8 @@ packages: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} engines: {node: '>=10'} - radix3@1.1.2: - resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} - - ramda@0.29.0: - resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} + radix3@1.1.0: + resolution: {integrity: sha512-pNsHDxbGORSvuSScqNJ+3Km6QAVqk8CfsCBIEoDgpqLrkD2f3QM4I7d1ozJJ172OmIcoUcerZaNWqtLkRXTV3A==} randombytes@2.1.0: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} @@ -9512,13 +10490,13 @@ packages: peerDependencies: react: ^16.3.0 || ^17.0.1 || ^18.0.0 - react-devtools-core@5.3.0: - resolution: {integrity: sha512-IG3T+azv48Oc5VLdHR4XdBNKNZIUOKRtx0sJMRvb++Zom/uqtx73j6u37JCsIBNIaq6vA7RPH5Bbcf/Wj53KXA==} + react-devtools-core@4.28.5: + resolution: {integrity: sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==} - react-dom@18.3.1: - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + react-dom@18.2.0: + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: - react: ^18.3.1 + react: ^18.2.0 react-i18next@13.5.0: resolution: {integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==} @@ -9533,11 +10511,14 @@ packages: react-native: optional: true + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + react-is@17.0.2: resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} - react-is@18.3.1: - resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + react-is@18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} react-native-fetch-api@3.0.0: resolution: {integrity: sha512-g2rtqPjdroaboDKTsJCTlcmtw54E25OjyaunUP0anOZn4Fuo2IKs8BVfe02zVggA/UysbmfSnRJIqtNkAgggNA==} @@ -9548,75 +10529,40 @@ packages: react: '*' react-native: '*' - react-native@0.74.3: - resolution: {integrity: sha512-UFutCC6WEw6HkxlcpQ2BemKqi0JkwrgDchYB5Svi8Sp4Xwt4HA6LGEjNQgZ+3KM44bjyFRpofQym0uh0jACGng==} + react-native@0.73.4: + resolution: {integrity: sha512-VtS+Yr6OOTIuJGDECIYWzNU8QpJjASQYvMtfa/Hvm/2/h5GdB6W9H9TOmh13x07Lj4AOhNMx3XSsz6TdrO4jIg==} engines: {node: '>=18'} hasBin: true peerDependencies: - '@types/react': ^18.2.6 react: 18.2.0 - peerDependenciesMeta: - '@types/react': - optional: true - react-refresh@0.14.2: - resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + react-refresh@0.14.0: + resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} engines: {node: '>=0.10.0'} - react-remove-scroll-bar@2.3.6: - resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - react-remove-scroll@2.5.7: - resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - react-shallow-renderer@16.15.0: resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} peerDependencies: react: ^16.0.0 || ^17.0.0 || ^18.0.0 - react-style-singleton@2.2.1: - resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + react@18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} read-cache@1.0.0: resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} - read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} - - read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} - read-yaml-file@1.1.0: resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} engines: {node: '>=6'} + read@1.0.7: + resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} + engines: {node: '>=0.8'} + + readable-stream@2.3.3: + resolution: {integrity: sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==} + readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} @@ -9628,6 +10574,10 @@ packages: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} + readdirp@4.0.1: + resolution: {integrity: sha512-GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw==} + engines: {node: '>= 14.16.0'} + readline@1.3.0: resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} @@ -9650,6 +10600,14 @@ packages: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} + redis-errors@1.2.0: + resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} + engines: {node: '>=4'} + + redis-parser@3.0.0: + resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} + engines: {node: '>=4'} + regenerate-unicode-properties@10.1.1: resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} engines: {node: '>=4'} @@ -9666,8 +10624,11 @@ packages: regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - regexp.prototype.flags@1.5.2: - resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} + regex@4.3.2: + resolution: {integrity: sha512-kK/AA3A9K6q2js89+VMymcboLOlF5lZRCYJv3gzszXFHBr6kO6qLGzbm+UIugBEV8SMMKCTR59txoY6ctRHYVw==} + + regexp.prototype.flags@1.5.1: + resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} engines: {node: '>= 0.4'} regexpp@3.2.0: @@ -9739,9 +10700,17 @@ packages: remark-stringify@11.0.0: resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + request-light@0.5.8: + resolution: {integrity: sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg==} + request-light@0.7.0: resolution: {integrity: sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==} + request@2.88.2: + resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} + engines: {node: '>= 6'} + deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 + require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} @@ -9782,6 +10751,9 @@ packages: resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true + responselike@2.0.1: + resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + responselike@3.0.0: resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} engines: {node: '>=14.16'} @@ -9794,11 +10766,15 @@ packages: resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + restore-cursor@5.1.0: + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + engines: {node: '>=18'} + retext-latin@4.0.0: resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} - retext-smartypants@6.1.0: - resolution: {integrity: sha512-LDPXg95346bqFZnDMHo0S7Rq5p64+B+N8Vz733+wPMDtwb9rCOs9LIdIEhrUOU+TAywX9St+ocQWJt8wrzivcQ==} + retext-smartypants@6.1.1: + resolution: {integrity: sha512-onsHf34i/GzgElJgtT1K2V+31yEhWs7NJboKNxXJcmVMMPxLpgxZ9iADoMdydd6j/bHic5F/aNq0CGqElEtu2g==} retext-stringify@4.0.0: resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} @@ -9809,10 +10785,18 @@ packages: retimer@3.0.0: resolution: {integrity: sha512-WKE0j11Pa0ZJI5YIk0nflGI7SQsfl2ljihVy7ogh7DeQSeYAUi0ubZ/yEueGtDfUPk6GH5LRw1hBdLq4IwUBWA==} + retry@0.13.1: + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} + reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + revalidator@0.1.8: + resolution: {integrity: sha512-xcBILK2pA9oh4SiinPEZfhP8HfrB/ha+a2fTMyl7Om2WjlDVrOQy99N2MXXlUHqGJz4qEu2duXxHJjDWuK/0xg==} + engines: {node: '>= 0.4.0'} + rimraf@2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} deprecated: Rimraf versions prior to v4 are no longer supported @@ -9828,12 +10812,15 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true + rimraf@5.0.10: + resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} + hasBin: true + ripemd160@2.0.2: resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} risc0-ethereum#v1.0.0@https://codeload.github.com/risc0/risc0-ethereum/tar.gz/5fbbc7cb44ab37ce438c14c087ba6c4e0a669900: resolution: {tarball: https://codeload.github.com/risc0/risc0-ethereum/tar.gz/5fbbc7cb44ab37ce438c14c087ba6c4e0a669900} - name: risc0-ethereum#v1.0.0 version: 0.0.0 rlp@2.2.7: @@ -9855,16 +10842,27 @@ packages: engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true - rollup@4.18.0: - resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==} + rollup@4.12.0: + resolution: {integrity: sha512-wz66wn4t1OHIJw3+XU7mJJQV/2NAfw5OAk6G6Hoo3zcvz/XOfQ52Vgi+AN4Uxoxi0KBBwk2g8zPrTDA4btSB/Q==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + rollup@4.17.2: + resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + rollup@4.21.3: + resolution: {integrity: sha512-7sqRtBNnEbcBtMeRVc6VRsJMmpI+JU1z9VTvW8D4gXIYQFz0aLcsE6rRkyghZkLfEgUZgVvOG7A5CVz/VW5GIA==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true rrweb-cssom@0.6.0: resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} - rrweb-cssom@0.7.1: - resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} + run-applescript@5.0.0: + resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} + engines: {node: '>=12'} run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} @@ -9873,8 +10871,8 @@ packages: resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} engines: {node: '>=6'} - safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} + safe-array-concat@1.0.1: + resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} engines: {node: '>=0.4'} safe-buffer@5.1.2: @@ -9883,9 +10881,8 @@ packages: safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} + safe-regex-test@1.0.0: + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} safe-stable-stringify@2.4.3: resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} @@ -9897,15 +10894,15 @@ packages: sander@0.5.1: resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} - sax@1.4.1: - resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} + sax@1.3.0: + resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} saxes@6.0.0: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} - scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + scheduler@0.23.0: + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} scheduler@0.24.0-canary-efb381bbf-20230505: resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} @@ -9925,10 +10922,6 @@ packages: resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} engines: {node: '>=4'} - selfsigned@2.4.1: - resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} - engines: {node: '>=10'} - semver@5.7.2: resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true @@ -9937,6 +10930,11 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true + semver@7.6.0: + resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} + engines: {node: '>=10'} + hasBin: true + semver@7.6.2: resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} engines: {node: '>=10'} @@ -9947,30 +10945,42 @@ packages: engines: {node: '>=10'} hasBin: true - send@0.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + send@0.19.0: + resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} engines: {node: '>= 0.8.0'} + sentence-case@3.0.4: + resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} + serialize-error@2.1.0: resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} engines: {node: '>=0.10.0'} - serve-static@1.15.0: - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + serve-static@1.16.2: + resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} engines: {node: '>= 0.8.0'} + serverless@4.4.3: + resolution: {integrity: sha512-Re/PCfW/vkWnY+IhelN7HUpt3r5l+6m4IrKE6SOKGawhODGYGqdGBZSkMNyNkvHdeq158zDNohcsM+Be7K9sBg==} + engines: {node: '>=18.0.0'} + hasBin: true + + servify@0.1.12: + resolution: {integrity: sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==} + engines: {node: '>=6'} + set-blocking@2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} set-cookie-parser@2.6.0: resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} - set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + set-function-length@1.2.1: + resolution: {integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==} engines: {node: '>= 0.4'} - set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} engines: {node: '>= 0.4'} setimmediate@1.0.5: @@ -9987,8 +10997,8 @@ packages: resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} engines: {node: '>=8'} - sharp@0.33.4: - resolution: {integrity: sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==} + sharp@0.33.3: + resolution: {integrity: sha512-vHUeXJU1UvlO/BNwTpT0x/r53WkLUVxrmb5JTgW92fdFCFk0ispLMAeu/jPO2vjkXM1fYUi3K7/qcLF47pwM1A==} engines: {libvips: '>=8.15.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0} shebang-command@1.2.0: @@ -10010,11 +11020,14 @@ packages: shell-quote@1.8.1: resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - shiki@1.10.0: - resolution: {integrity: sha512-YD2sXQ+TMD/F9BimV9Jn0wj35pqOvywvOG/3PB6hGHyGKlM7TJ9tyJ02jOb2kF8F0HfJwKNYrh3sW7jEcuRlXA==} + shiki@1.17.6: + resolution: {integrity: sha512-RejGugKpDM75vh6YtF9R771acxHRDikC/01kxsUGW+Pnaz3pTY+c8aZB5CnD7p0vuFPs1HaoAIU/4E+NCfS+mQ==} - shiki@1.12.1: - resolution: {integrity: sha512-nwmjbHKnOYYAe1aaQyEBHvQymJgfm86ZSS7fT8OaPRr4sbAcBNz7PbfAikMEFSDQ6se2j2zobkXvVKcBOm0ysg==} + shiki@1.5.2: + resolution: {integrity: sha512-fpPbuSaatinmdGijE7VYUD3hxLozR3ZZ+iAx8Iy2X6REmJGyF5hQl94SgmiUNTospq346nXUVZx0035dyGvIVw==} + + side-channel@1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} side-channel@1.0.6: resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} @@ -10030,6 +11043,12 @@ packages: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} engines: {node: '>=14'} + simple-concat@1.0.1: + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + + simple-get@2.8.2: + resolution: {integrity: sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==} + simple-swizzle@0.2.2: resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} @@ -10049,9 +11068,9 @@ packages: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} - slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} - engines: {node: '>=14.16'} + slash@4.0.0: + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} + engines: {node: '>=12'} slice-ansi@2.1.0: resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==} @@ -10061,8 +11080,11 @@ packages: resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} engines: {node: '>=10'} - socket.io-client@4.7.5: - resolution: {integrity: sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==} + snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + + socket.io-client@4.7.4: + resolution: {integrity: sha512-wh+OkeF0rAVCrABWQBaEjLfb7DVPotMbu0cgWgyR0v6eA4EoVnAwcIeIbcdTE3GT/H3kbdLl7OoH2+asoDRIIg==} engines: {node: '>=10.0.0'} socket.io-parser@4.2.4: @@ -10071,12 +11093,10 @@ packages: solady@https://codeload.github.com/Vectorized/solady/tar.gz/a12a2575c899a328c1bafdada632dabbff27cf6b: resolution: {tarball: https://codeload.github.com/Vectorized/solady/tar.gz/a12a2575c899a328c1bafdada632dabbff27cf6b} - name: solady version: 0.0.231 solady@https://codeload.github.com/Vectorized/solady/tar.gz/de0f336d2033d04e0f77c923d639c7fbffd48b6d: resolution: {tarball: https://codeload.github.com/Vectorized/solady/tar.gz/de0f336d2033d04e0f77c923d639c7fbffd48b6d} - name: solady version: 0.0.167 solc@0.8.24: @@ -10094,20 +11114,23 @@ packages: solidity-stringutils@https://codeload.github.com/Arachnid/solidity-stringutils/tar.gz/4b2fcc43fa0426e19ce88b1f1ec16f5903a2e461: resolution: {tarball: https://codeload.github.com/Arachnid/solidity-stringutils/tar.gz/4b2fcc43fa0426e19ce88b1f1ec16f5903a2e461} - name: solidity-stringutils version: 0.0.0 sonic-boom@2.8.0: resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==} - sorcery@0.11.1: - resolution: {integrity: sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==} + sorcery@0.11.0: + resolution: {integrity: sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==} hasBin: true source-map-js@1.2.0: resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} engines: {node: '>=0.10.0'} + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + source-map-support@0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} @@ -10125,7 +11148,6 @@ packages: sp1-contracts#v2.0.0@https://codeload.github.com/succinctlabs/sp1-contracts/tar.gz/af1ae093ef8a8f68b022aa8f0f7ad9ffd94aa6fb: resolution: {tarball: https://codeload.github.com/succinctlabs/sp1-contracts/tar.gz/af1ae093ef8a8f68b022aa8f0f7ad9ffd94aa6fb} - name: sp1-contracts#v2.0.0 version: 0.0.0 space-separated-tokens@2.0.2: @@ -10134,18 +11156,6 @@ packages: spawndamnit@2.0.0: resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} - spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - - spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} - - spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - - spdx-license-ids@3.0.18: - resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==} - split-on-first@1.1.0: resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} engines: {node: '>=6'} @@ -10157,6 +11167,14 @@ packages: sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + stack-trace@0.0.10: + resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} + stack-utils@2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} @@ -10171,6 +11189,9 @@ packages: resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==} engines: {node: '>=6'} + standard-as-callback@2.1.0: + resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==} + starlight-links-validator@0.8.0: resolution: {integrity: sha512-FYZ5cfV7jSL4wOsWmIkpR+9dH0Z8fxslSQl8IiAv5URfkxLgsaFzjx51FBeSaaS5uVmO5WgfkUjx3N52Jl1/TQ==} engines: {node: '>=18.14.1'} @@ -10178,8 +11199,8 @@ packages: '@astrojs/starlight': '>=0.15.0' astro: '>=4.0.0' - starlight-openapi@0.6.4: - resolution: {integrity: sha512-TIioFhMmSKhKau6g/fx5WgWyPQve7cjP896wQek3sHqCJeLAsTSqUYCb33bBb/4D1/6sUioqlfJd9J3Lc1NQjA==} + starlight-openapi@0.6.3: + resolution: {integrity: sha512-AHTbCJeGHzzhwVVi7UMgFgNKkvio2bbi9zQVtcI7CrMXVdd4jqL/L+R7MUxtr/DtzWG7PCCRsKPriwYubJ1ZPQ==} engines: {node: '>=18.14.1'} peerDependencies: '@astrojs/markdown-remark': '>=4.2.0' @@ -10205,11 +11226,8 @@ packages: resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} engines: {node: '>=18'} - store2@2.14.3: - resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} - - storybook@8.1.11: - resolution: {integrity: sha512-3KjIhF8lczXhKKHyHbOqV30dvuRYJSxc0d1as/C8kybuwE7cLaydhWGma7VBv5bTSPv0rDzucx7KcO+achArPg==} + storybook@8.3.0: + resolution: {integrity: sha512-XKU+nem9OKX/juvJPwka1Q7DTpSbOe0IMp8ZyLQWorhFKpquJdUjryl7Z9GiFZyyTykCqH4ItQ7h8PaOmqVMOw==} hasBin: true stream-browserify@3.0.0: @@ -10218,12 +11236,16 @@ packages: stream-replace-string@2.0.0: resolution: {integrity: sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==} - stream-shift@1.0.3: - resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} + stream-shift@1.0.1: + resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} stream-to-it@0.2.4: resolution: {integrity: sha512-4vEbkSs83OahpmBybNJXlJd7d6/RxzkkSdT3I0mnGt79Xd2Kk+e1JqbvAvsQfCeKj3aKb0QIWkyK3/n0j506vQ==} + strict-uri-encode@1.1.0: + resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==} + engines: {node: '>=0.10.0'} + strict-uri-encode@2.0.0: resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} engines: {node: '>=4'} @@ -10240,16 +11262,18 @@ packages: resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} engines: {node: '>=18'} - string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} + string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} engines: {node: '>= 0.4'} - string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} - string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} + string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + + string_decoder@1.0.3: + resolution: {integrity: sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==} string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} @@ -10304,8 +11328,8 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} - strip-literal@2.1.0: - resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==} + strip-literal@2.0.0: + resolution: {integrity: sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==} strnum@1.0.5: resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} @@ -10316,6 +11340,9 @@ packages: style-to-object@1.0.6: resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} + stylis@4.2.0: + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + sucrase@3.35.0: resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} engines: {node: '>=16 || 14 >=14.17'} @@ -10324,8 +11351,8 @@ packages: sudo-prompt@9.2.1: resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==} - superstruct@1.0.4: - resolution: {integrity: sha512-7JpaAoX2NGyoFlI9NBh66BQXGONc+uE+MRS5i2iOBKuS4e+ccgMDjATgZldkah+33DakBxDHiss9kvUcGAO8UQ==} + superstruct@1.0.3: + resolution: {integrity: sha512-8iTn3oSS8nRGn+C2pgXSKPI3jmpm6FExNazNpjvqS6ZUJQCej3PUXEKM8NjHBOs54ExM+LPW/FBRhymrdcCiSg==} engines: {node: '>=14.0.0'} supports-color@5.5.0: @@ -10344,8 +11371,8 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - svelte-check@3.8.4: - resolution: {integrity: sha512-61aHMkdinWyH8BkkTX9jPLYxYzaAAz/FK/VQqdr2FiCQQ/q04WCwDlpGbHff1GdrMYTmW8chlTFvRWL9k0A8vg==} + svelte-check@3.7.1: + resolution: {integrity: sha512-U4uJoLCzmz2o2U33c7mPDJNhRYX/DNFV11XTUDlFxaKLsO7P+40gvJHMPpoRfa24jqZfST4/G9fGNcUGMO8NAQ==} hasBin: true peerDependencies: svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0 @@ -10355,11 +11382,11 @@ packages: peerDependencies: svelte: ^3.55.0 || ^4.0.0 - svelte-eslint-parser@0.39.2: - resolution: {integrity: sha512-87UwLuWTtDIuzWOhOi1zBL5wYVd07M5BK1qZ57YmXJB5/UmjUNJqGy3XSOhPqjckY1dATNV9y+mx+nI0WH6HPA==} + svelte-eslint-parser@0.35.0: + resolution: {integrity: sha512-CtbPseajW0gjwEvHiuzYJkPDjAcHz2FaHt540j6RVYrZgnE6xWkzUBodQ4I3nV+G5AS0Svt8K6aIA/CIU9xT2Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - svelte: ^3.37.0 || ^4.0.0 || ^5.0.0-next.115 + svelte: ^3.37.0 || ^4.0.0 || ^5.0.0-next.112 peerDependenciesMeta: svelte: optional: true @@ -10377,9 +11404,9 @@ packages: peerDependencies: svelte: ^3 || ^4 - svelte-preprocess@5.1.4: - resolution: {integrity: sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==} - engines: {node: '>= 16.0.0'} + svelte-preprocess@5.1.3: + resolution: {integrity: sha512-xxAkmxGHT+J/GourS5mVJeOXZzne1FR5ljeOUAMXUkfEhkLEllRreXpbl3dIYJlcJRfL1LO1uIAPpBpBfiqGPw==} + engines: {node: '>= 16.0.0', pnpm: ^8.0.0} peerDependencies: '@babel/core': ^7.10.2 coffeescript: ^2.5.1 @@ -10419,53 +11446,53 @@ packages: peerDependencies: svelte: ^3 || ^4 - svelte2tsx@0.7.13: - resolution: {integrity: sha512-aObZ93/kGAiLXA/I/kP+x9FriZM+GboB/ReOIGmLNbVGEd2xC+aTCppm3mk1cc9I/z60VQf7b2QDxC3jOXu3yw==} + svelte2tsx@0.7.19: + resolution: {integrity: sha512-PME/9mILn9wOihtk2dxu9tmf2+B9X6oWuqYPJRKSjqU4wq3Pc6+fOuYV7T3H+QF5afmA1oDobfXC6dzmK9NAVw==} peerDependencies: svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 typescript: ^4.9.4 || ^5.0.0 - svelte@4.2.18: - resolution: {integrity: sha512-d0FdzYIiAePqRJEb90WlJDkjUEx42xhivxN8muUBmfZnP+tzUgz12DJ2hRJi8sIHCME7jeK1PTMgKPSfTd8JrA==} + svelte@4.2.13: + resolution: {integrity: sha512-jtVt2KXLbQnsWN93Zd7EVboNh8Tqexes4rZfXNP7nYRjd9+JjubTD8BXloUmU1OUYpc6pdd1aKBhCV+b2ZKoMg==} + engines: {node: '>=16'} + + svelte@4.2.17: + resolution: {integrity: sha512-N7m1YnoXtRf5wya5Gyx3TWuTddI4nAyayyIWFojiWV5IayDYNV5i2mRp/7qNGol4DtxEYxljmrbgp1HM6hUbmQ==} engines: {node: '>=16'} sveltedoc-parser@4.2.1: resolution: {integrity: sha512-sWJRa4qOfRdSORSVw9GhfDEwsbsYsegnDzBevUCF6k/Eis/QqCu9lJ6I0+d/E2wOWCjOhlcJ3+jl/Iur+5mmCw==} engines: {node: '>=10.0.0'} + swarm-js@0.1.42: + resolution: {integrity: sha512-BV7c/dVlA3R6ya1lMlSSNPLYrntt0LUq4YMgy3iwpCIc6rZnS5W2wUoctarZ5pXlpKtxDDf9hNziEkcfrxdhqQ==} + symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - synckit@0.8.8: - resolution: {integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==} + synckit@0.8.6: + resolution: {integrity: sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA==} engines: {node: ^14.18.0 || >=16.0.0} system-architecture@0.1.0: resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==} engines: {node: '>=18'} - table@6.8.2: - resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} + table@6.8.1: + resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} engines: {node: '>=10.0.0'} tailwindcss-image-rendering@1.0.2: resolution: {integrity: sha512-WC3hJd2RbHBYIqtJxwpQ5z94wUNyBrJn1eFz3J/jR7OGrQB8WYbJGvJQ9scNNVzoHEYGoNdZbUI90l9YgpBCwg==} - tailwindcss@3.4.4: - resolution: {integrity: sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==} + tailwindcss@3.4.3: + resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==} engines: {node: '>=14.0.0'} hasBin: true - tar-fs@2.1.1: - resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} - - tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} - - tar@6.2.1: - resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} - engines: {node: '>=10'} + tar@4.4.19: + resolution: {integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==} + engines: {node: '>=4.5'} telejson@7.2.0: resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} @@ -10474,24 +11501,16 @@ packages: resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} engines: {node: '>=8'} - temp-dir@3.0.0: - resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==} - engines: {node: '>=14.16'} - temp@0.8.4: resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} engines: {node: '>=6.0.0'} - tempy@3.1.0: - resolution: {integrity: sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==} - engines: {node: '>=14.16'} - term-size@2.2.1: resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} engines: {node: '>=8'} - terser@5.31.1: - resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==} + terser@5.27.2: + resolution: {integrity: sha512-sHXmLSkImesJ4p5apTeT63DsV4Obe1s37qT8qvwHRmVxKTBH7Rv9Wr26VcAMmLbmk9UliiwK8z+657NyJHHy/w==} engines: {node: '>=10'} hasBin: true @@ -10518,12 +11537,15 @@ packages: through2@2.0.5: resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + timed-out@4.0.1: + resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==} + engines: {node: '>=0.10.0'} + timeout-abort-controller@3.0.0: resolution: {integrity: sha512-O3e+2B8BKrQxU2YRyEjC/2yFdb33slI22WRdUaDx6rvysfi9anloNZyR2q0l6LnePo5qH7gSM7uZtvvwZbc2yA==} - timers-ext@0.1.8: - resolution: {integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==} - engines: {node: '>=0.12'} + timers-ext@0.1.7: + resolution: {integrity: sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==} tiny-glob@0.2.9: resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} @@ -10531,17 +11553,32 @@ packages: tiny-invariant@1.3.3: resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} - tinybench@2.8.0: - resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==} + tinybench@2.6.0: + resolution: {integrity: sha512-N8hW3PG/3aOoZAN5V/NSAEDz0ZixDSSt5b/a05iqtpgfLWMSVuCo7w0k2vVvEjdrIoeGqZzweX2WlyioNIHchA==} + + tinyexec@0.3.0: + resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==} - tinypool@0.8.4: - resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==} + tinypool@0.8.3: + resolution: {integrity: sha512-Ud7uepAklqRH1bvwy22ynrliC7Dljz7Tm8M/0RBUW+YRa4YHhZ6e4PpgE+fu1zr/WqB1kbeuVrdfeuyIBpy4tw==} engines: {node: '>=14.0.0'} - tinyspy@2.2.1: - resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==} + tinyrainbow@1.2.0: + resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} engines: {node: '>=14.0.0'} + tinyspy@2.2.0: + resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==} + engines: {node: '>=14.0.0'} + + tinyspy@3.0.2: + resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} + engines: {node: '>=14.0.0'} + + titleize@3.0.0: + resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} + engines: {node: '>=12'} + tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} @@ -10557,9 +11594,6 @@ packages: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} - tocbot@4.28.2: - resolution: {integrity: sha512-/MaSa9xI6mIo84IxqqliSCtPlH0oy7sLcY9s26qPMyH/2CxtZ2vNAXYlIdEQ7kjAkCQnc0rbLygf//F5c663oQ==} - toidentifier@1.0.1: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} @@ -10568,8 +11602,12 @@ packages: resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} engines: {node: '>=6'} - tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + tough-cookie@2.5.0: + resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} + engines: {node: '>=0.8'} + + tough-cookie@4.1.3: + resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} engines: {node: '>=6'} tr46@0.0.3: @@ -10589,6 +11627,12 @@ packages: trough@2.2.0: resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + ts-api-utils@1.2.1: + resolution: {integrity: sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA==} + engines: {node: '>=16'} + peerDependencies: + typescript: '>=4.2.0' + ts-api-utils@1.3.0: resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} engines: {node: '>=16'} @@ -10599,8 +11643,8 @@ packages: resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} engines: {node: '>=6.10'} - ts-essentials@9.4.2: - resolution: {integrity: sha512-mB/cDhOvD7pg3YCLk2rOtejHjjdSi9in/IBYE13S+8WA5FBSraYf4V/ws55uvs0IvQ/l0wBOlXy5yBNZ9Bl8ZQ==} + ts-essentials@9.4.1: + resolution: {integrity: sha512-oke0rI2EN9pzHsesdmrOrnqv1eQODmJpd/noJjwj2ZPC3Z4N2wbjrOEqnsEgmvlO2+4fBb0a794DCna2elEVIQ==} peerDependencies: typescript: '>=4.1.0' peerDependenciesMeta: @@ -10627,8 +11671,18 @@ packages: '@swc/wasm': optional: true - tsconfck@3.1.1: - resolution: {integrity: sha512-00eoI6WY57SvZEVjm13stEVE90VkEdJAFGgpFLTsZbJyW/LwFQ7uQxJHWpZ2hzSWgCPKc9AnBnNP+0X7o3hAmQ==} + tsconfck@3.0.3: + resolution: {integrity: sha512-4t0noZX9t6GcPTfBAbIbbIU4pfpCwh0ueq3S4O/5qXI1VwK1outmxhe9dOiEWqMz3MW2LKgDTpqWV+37IWuVbA==} + engines: {node: ^18 || >=20} + hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + + tsconfck@3.1.3: + resolution: {integrity: sha512-ulNZP1SVpRDesxeMLON/LtWM8HIgAJEIVpVVhBM6gsmvQ8+Rh+ZG7FWGvHh7Ah3pRABwVJWklWCr/BTZSv0xnQ==} engines: {node: ^18 || >=20} hasBin: true peerDependencies: @@ -10637,14 +11691,17 @@ packages: typescript: optional: true - tsconfig-paths@3.15.0: - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + tsconfig-paths@3.14.2: + resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - tslib@2.6.3: - resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} + tslib@2.4.0: + resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} + + tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} tsutils@3.21.0: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} @@ -10652,9 +11709,19 @@ packages: peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + + tunnel@0.0.6: + resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} + engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} + tween-functions@1.2.0: resolution: {integrity: sha512-PZBtLYcCLtEcjL14Fzb1gSxPBeL7nWvGhO5ZFPGqziCcr8uvHp0NDmdjBchp6KHL+tExcg0m3NISmKxhU394dA==} + tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + type-check@0.4.0: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} engines: {node: '>= 0.8.0'} @@ -10667,22 +11734,10 @@ packages: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} - type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} - type-fest@0.7.1: resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==} engines: {node: '>=8'} - type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} - - type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} - type-fest@2.19.0: resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} engines: {node: '>=12.20'} @@ -10691,44 +11746,49 @@ packages: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} engines: {node: '>= 0.6'} - type@2.7.3: - resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} + type@1.2.0: + resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==} - typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} + type@2.7.2: + resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} - typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + typed-array-buffer@1.0.0: + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} engines: {node: '>= 0.4'} - typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} + typed-array-byte-length@1.0.0: + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} engines: {node: '>= 0.4'} - typed-array-length@1.0.6: - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} + typed-array-byte-offset@1.0.0: + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} engines: {node: '>= 0.4'} + typed-array-length@1.0.4: + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + + typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + typesafe-path@0.2.2: resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==} typescript-auto-import-cache@0.3.3: resolution: {integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==} - typescript@5.5.3: - resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==} + typescript@5.4.3: + resolution: {integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==} engines: {node: '>=14.17'} hasBin: true - ufo@1.5.3: - resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} - - uglify-js@3.18.0: - resolution: {integrity: sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==} - engines: {node: '>=0.8.0'} + typescript@5.4.5: + resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} + engines: {node: '>=14.17'} hasBin: true + ufo@1.4.0: + resolution: {integrity: sha512-Hhy+BhRBleFjpJ2vchUNN40qgkh0366FWJGqVLYBHev0vpHTrXSA0ryT+74UiW6KWsldNurQMKGqCm1M2zBciQ==} + uint8-varint@2.0.4: resolution: {integrity: sha512-FwpTa7ZGA/f/EssWAb5/YV6pHgVF1fViKdW8cWaEarjB8t7NyofSWBdOTyFPaGuUG4gx3v1O3PQ8etsiOs3lcw==} @@ -10744,8 +11804,11 @@ packages: uint8arrays@4.0.10: resolution: {integrity: sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==} - uint8arrays@5.1.0: - resolution: {integrity: sha512-vA6nFepEmlSKkMBnLBaUMVvAC4G3CTmO58C12y4sq6WPDOR7mOFYOi7GlrQ4djeSbP6JG9Pv9tJDM97PedRSww==} + uint8arrays@5.0.3: + resolution: {integrity: sha512-6LBuKji28kHjgPJMkQ6GDaBb1lRwIhyOYq6pDGwYMoDPfImE9SkuYENVmR0yu9yGgs2clHUSY9fKDukR+AXfqQ==} + + ultron@1.1.1: + resolution: {integrity: sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==} unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} @@ -10756,8 +11819,8 @@ packages: undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - undici@5.28.4: - resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==} + undici@5.28.3: + resolution: {integrity: sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA==} engines: {node: '>=14.0'} unenv@1.9.0: @@ -10782,17 +11845,9 @@ packages: resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} engines: {node: '>=4'} - unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} - engines: {node: '>=18'} - unified@11.0.5: resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} - unique-string@3.0.0: - resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} - engines: {node: '>=12'} - unist-util-find-after@5.0.0: resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} @@ -10839,26 +11894,30 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - unplugin@1.11.0: - resolution: {integrity: sha512-3r7VWZ/webh0SGgJScpWl2/MRCZK5d3ZYFcNaeci/GQ7Teop7zf0Nl2pUuz7G21BwPd9pcUPOC5KmJ2L3WgC5g==} + unplugin@1.14.1: + resolution: {integrity: sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w==} engines: {node: '>=14.0.0'} + peerDependencies: + webpack-sources: ^3 + peerDependenciesMeta: + webpack-sources: + optional: true - unstorage@1.10.2: - resolution: {integrity: sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==} + unstorage@1.10.1: + resolution: {integrity: sha512-rWQvLRfZNBpF+x8D3/gda5nUCQL2PgXy2jNG4U7/Rc9BGEv9+CAJd0YyGCROUBKs9v49Hg8huw3aih5Bf5TAVw==} peerDependencies: - '@azure/app-configuration': ^1.5.0 + '@azure/app-configuration': ^1.4.1 '@azure/cosmos': ^4.0.0 '@azure/data-tables': ^13.2.2 - '@azure/identity': ^4.0.1 - '@azure/keyvault-secrets': ^4.8.0 - '@azure/storage-blob': ^12.17.0 - '@capacitor/preferences': ^5.0.7 - '@netlify/blobs': ^6.5.0 || ^7.0.0 - '@planetscale/database': ^1.16.0 - '@upstash/redis': ^1.28.4 - '@vercel/kv': ^1.0.1 + '@azure/identity': ^3.3.2 + '@azure/keyvault-secrets': ^4.7.0 + '@azure/storage-blob': ^12.16.0 + '@capacitor/preferences': ^5.0.6 + '@netlify/blobs': ^6.2.0 + '@planetscale/database': ^1.11.0 + '@upstash/redis': ^1.23.4 + '@vercel/kv': ^0.2.3 idb-keyval: ^6.2.1 - ioredis: ^5.3.2 peerDependenciesMeta: '@azure/app-configuration': optional: true @@ -10884,8 +11943,6 @@ packages: optional: true idb-keyval: optional: true - ioredis: - optional: true untildify@4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} @@ -10895,12 +11952,24 @@ packages: resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==} hasBin: true - update-browserslist-db@1.0.16: - resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} + update-browserslist-db@1.0.13: + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + update-browserslist-db@1.1.0: + resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' + upper-case-first@2.0.2: + resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} + + upper-case@2.0.2: + resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} + uqr@0.1.2: resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==} @@ -10910,25 +11979,8 @@ packages: url-parse@1.5.10: resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} - use-callback-ref@1.3.2: - resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - use-sidecar@1.1.2: - resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + url-set-query@1.0.0: + resolution: {integrity: sha512-3AChu4NiXquPfeckE5R5cGdiHCMWJx1dwCWOmWIL4KHAziJNOFIYJlpGFeKDvwLPHovZRCxK3cYlwzqI9Vp+Gg==} use-sync-external-store@1.2.0: resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} @@ -10939,8 +11991,8 @@ packages: resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==} engines: {node: '>=6.14.2'} - utf-8-validate@6.0.4: - resolution: {integrity: sha512-xu9GQDeFp+eZ6LnCywXN/zBancWvOpUMzgjLPSjy4BRHSmTelvn2E0DG0o1sTiw5hkCKBHo8rwSKncfRfv2EEQ==} + utf-8-validate@6.0.3: + resolution: {integrity: sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA==} engines: {node: '>=6.14.2'} utf8@3.0.0: @@ -10956,6 +12008,11 @@ packages: resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} + uuid@3.4.0: + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true + uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true @@ -10970,8 +12027,9 @@ packages: v8-compile-cache@2.4.0: resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} - validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + v8-to-istanbul@9.2.0: + resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==} + engines: {node: '>=10.12.0'} valtio@1.11.2: resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==} @@ -10985,6 +12043,9 @@ packages: react: optional: true + varint@5.0.2: + resolution: {integrity: sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==} + varint@6.0.0: resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==} @@ -10992,6 +12053,10 @@ packages: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} + verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} + vfile-location@5.0.2: resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==} @@ -11001,8 +12066,8 @@ packages: vfile@6.0.1: resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} - vfile@6.0.2: - resolution: {integrity: sha512-zND7NlS8rJYb/sPqkb13ZvbbUoExdbi4w3SfRrMq6R3FvnLQmmfpajJNITuuYm6AZ5uao9vy4BAos3EXBPf2rg==} + vfile@6.0.3: + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} viem@1.21.4: resolution: {integrity: sha512-BNVYdSaUjeS2zKQgPs+49e5JKocfo60Ib2yiXOWBT6LuVxY1I/6fFX3waEtpXvL1Xn4qu+BVitVtMh9lyThyhQ==} @@ -11012,14 +12077,27 @@ packages: typescript: optional: true - viem@2.16.5: - resolution: {integrity: sha512-QDESALYDyLSP+pIr7adH3QPZ+3is16aOVMXXZE0X1GVbgL7PDMZQ8xIF1X/B1hgyqkBl2HhMpUaq6ksUdBV/YA==} + viem@2.21.7: + resolution: {integrity: sha512-PFgppakInuHX31wHDx1dzAjhj4t6Po6WrWtutDi33z2vabIT0Wv8qT6tl7DLqfLy2NkTqfN2mdshYLeoI5ZHvQ==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + viem@2.9.29: + resolution: {integrity: sha512-LWvDSyB2tftKuSMAyZTXk3pDYj3c0aaOdr2JbDZEsPJw5zVbqg3FpoPHnUkHai8KcZI8aPWRKV31TYV1cBse9A==} peerDependencies: typescript: '>=5.0.4' peerDependenciesMeta: typescript: optional: true + vite-node@1.5.0: + resolution: {integrity: sha512-tV8h6gMj6vPzVCa7l+VGq9lwoJjW8Y79vst8QZZGiuRAfijU+EEWuc0kFpmndQrWhMMhet1jdSF+40KSZUqIIw==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + vite-node@1.6.0: resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==} engines: {node: ^18.0.0 || >=20.0.0} @@ -11061,8 +12139,8 @@ packages: terser: optional: true - vite@5.3.2: - resolution: {integrity: sha512-6lA7OBHBlXUxiJxbO5aAY2fsHHzDr1q7DvXYnyZycRs2Dz+dXBWuhpWHvmljTRTpQC2uvGmUFFkSHF2vGo90MA==} + vite@5.1.3: + resolution: {integrity: sha512-UfmUD36DKkqhi/F75RrxvPpry+9+tTkrXfMNZD+SboZqBCMsxKtO52XeGzzuh7ioz+Eo/SYDBbdb0Z7vgcDJew==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -11089,8 +12167,8 @@ packages: terser: optional: true - vite@5.4.0: - resolution: {integrity: sha512-5xokfMX0PIiwCMCMb9ZJcMyh5wbBun0zUzKib+L65vAZ8GY9ePZMXxFrHbr/Kyll2+LSCY7xtERPpxkBDKngwg==} + vite@5.2.11: + resolution: {integrity: sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -11098,7 +12176,6 @@ packages: less: '*' lightningcss: ^1.21.0 sass: '*' - sass-embedded: '*' stylus: '*' sugarss: '*' terser: ^5.4.0 @@ -11111,8 +12188,6 @@ packages: optional: true sass: optional: true - sass-embedded: - optional: true stylus: optional: true sugarss: @@ -11120,11 +12195,50 @@ packages: terser: optional: true - vitefu@0.2.5: - resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} + vite@5.4.5: + resolution: {integrity: sha512-pXqR0qtb2bTwLkev4SE3r4abCNioP3GkjvIDLlzziPpXtHgiJIjuKl+1GN6ESOT3wMjG3JTeARopj2SwYaHTOA==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true peerDependencies: - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 - peerDependenciesMeta: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + vitefu@0.2.5: + resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + vite: + optional: true + + vitefu@1.0.2: + resolution: {integrity: sha512-0/iAvbXyM3RiPPJ4lyD4w6Mjgtf4ejTK6TPvTNG3H32PLwuT0N/ZjJLiXug7ETE/LWtTeHw9WRv7uX/tIKYyKg==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: vite: optional: true @@ -11140,6 +12254,31 @@ packages: typescript: 3.x || 4.x || 5.x vitest: '>=0.31.1' + vitest@1.5.0: + resolution: {integrity: sha512-d8UKgR0m2kjdxDWX6911uwxout6GHS0XaGH1cksSIVVG8kRlE7G7aBw7myKQCvDI5dT4j7ZMa+l706BIORMDLw==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/node': ^18.0.0 || >=20.0.0 + '@vitest/browser': 1.5.0 + '@vitest/ui': 1.5.0 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + vitest@1.6.0: resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==} engines: {node: ^18.0.0 || >=20.0.0} @@ -11172,34 +12311,34 @@ packages: resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} engines: {node: '>=0.10.0'} - volar-service-css@0.0.59: - resolution: {integrity: sha512-gLNjJnECbalPvQB7qeJjhkDN8sR5M3ItbVYjnyio61aHaWptIiXm/HfDahcQ2ApwmvWidkMWWegjGq5L0BENDA==} + volar-service-css@0.0.61: + resolution: {integrity: sha512-Ct9L/w+IB1JU8F4jofcNCGoHy6TF83aiapfZq9A0qYYpq+Kk5dH+ONS+rVZSsuhsunq8UvAuF8Gk6B8IFLfniw==} peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 + '@volar/language-service': ~2.4.0 peerDependenciesMeta: '@volar/language-service': optional: true - volar-service-emmet@0.0.59: - resolution: {integrity: sha512-6EynHcuMwMBETpK29TbZvIMmvzdVG+Tkokk9VWfZeI+SwDptk2tgdhEqiXXvIkqYNgbuu73Itp66lpH76cAU+Q==} + volar-service-emmet@0.0.61: + resolution: {integrity: sha512-iiYqBxjjcekqrRruw4COQHZME6EZYWVbkHjHDbULpml3g8HGJHzpAMkj9tXNCPxf36A+f1oUYjsvZt36qPg4cg==} peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 + '@volar/language-service': ~2.4.0 peerDependenciesMeta: '@volar/language-service': optional: true - volar-service-html@0.0.59: - resolution: {integrity: sha512-hEXOsYpILDlITZxnqRLV9OepVWD63GZBsyjMxszwdzlxvGZjzbGcBBinJGGJRwFIV8djdJwnt91bkdg1V5tj6Q==} + volar-service-html@0.0.61: + resolution: {integrity: sha512-yFE+YmmgqIL5HI4ORqP++IYb1QaGcv+xBboI0WkCxJJ/M35HZj7f5rbT3eQ24ECLXFbFCFanckwyWJVz5KmN3Q==} peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 + '@volar/language-service': ~2.4.0 peerDependenciesMeta: '@volar/language-service': optional: true - volar-service-prettier@0.0.59: - resolution: {integrity: sha512-FmBR4lsgFRGR3V0LnxZZal0WqdOJjuLL6mQSj4p57M15APtQwuocG/FiF+ONGFnwRXMOIBDBTCARdth+TKgL3A==} + volar-service-prettier@0.0.61: + resolution: {integrity: sha512-F612nql5I0IS8HxXemCGvOR2Uxd4XooIwqYVUvk7WSBxP/+xu1jYvE3QJ7EVpl8Ty3S4SxPXYiYTsG3bi+gzIQ==} peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 + '@volar/language-service': ~2.4.0 prettier: ^2.2 || ^3.0 peerDependenciesMeta: '@volar/language-service': @@ -11207,41 +12346,73 @@ packages: prettier: optional: true - volar-service-typescript-twoslash-queries@0.0.59: - resolution: {integrity: sha512-skm8e6yhCIkqLwJB6S9MqT5lO9LNFuMD3dYxKpmOZs1CKbXmCZZTmLfEaD5VkJae1xdleEDZFFTHl2O5HLjOGQ==} + volar-service-typescript-twoslash-queries@0.0.61: + resolution: {integrity: sha512-99FICGrEF0r1E2tV+SvprHPw9Knyg7BdW2fUch0tf59kG+KG+Tj4tL6tUg+cy8f23O/VXlmsWFMIE+bx1dXPnQ==} + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + + volar-service-typescript@0.0.61: + resolution: {integrity: sha512-4kRHxVbW7wFBHZWRU6yWxTgiKETBDIJNwmJUAWeP0mHaKpnDGj/astdRFKqGFRYVeEYl45lcUPhdJyrzanjsdQ==} peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 + '@volar/language-service': ~2.4.0 peerDependenciesMeta: '@volar/language-service': optional: true - volar-service-typescript@0.0.59: - resolution: {integrity: sha512-VCOpfiu+lUo5lapWLB5L5vmQGtwzmNWn5MueV915eku7blpphmE+Z7hCNcL1NApn7AetXWhiblv8ZhmUx/dGIA==} + volar-service-yaml@0.0.61: + resolution: {integrity: sha512-L+gbDiLDQQ1rZUbJ3mf3doDsoQUa8OZM/xdpk/unMg1Vz24Zmi2Ign8GrZyBD7bRoIQDwOH9gdktGDKzRPpUNw==} peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 + '@volar/language-service': ~2.4.0 peerDependenciesMeta: '@volar/language-service': optional: true - vscode-css-languageservice@6.3.0: - resolution: {integrity: sha512-nU92imtkgzpCL0xikrIb8WvedV553F2BENzgz23wFuok/HLN5BeQmroMy26pUwFxV2eV8oNRmYCUv8iO7kSMhw==} + vscode-css-languageservice@6.3.1: + resolution: {integrity: sha512-1BzTBuJfwMc3A0uX4JBdJgoxp74cjj4q2mDJdp49yD/GuAq4X0k5WtK6fNcMYr+FfJ9nqgR6lpfCSZDkARJ5qQ==} + + vscode-html-languageservice@5.2.0: + resolution: {integrity: sha512-cdNMhyw57/SQzgUUGSIMQ66jikqEN6nBNyhx5YuOyj9310+eY9zw8Q0cXpiKzDX8aHYFewQEXRnigl06j/TVwQ==} - vscode-html-languageservice@5.3.0: - resolution: {integrity: sha512-C4Z3KsP5Ih+fjHpiBc5jxmvCl+4iEwvXegIrzu2F5pktbWvQaBT3YkVPk8N+QlSSMk8oCG6PKtZ/Sq2YHb5e8g==} + vscode-html-languageservice@5.3.1: + resolution: {integrity: sha512-ysUh4hFeW/WOWz/TO9gm08xigiSsV/FOAZ+DolgJfeLftna54YdmZ4A+lIn46RbdO3/Qv5QHTn1ZGqmrXQhZyA==} + + vscode-json-languageservice@4.1.8: + resolution: {integrity: sha512-0vSpg6Xd9hfV+eZAaYN63xVVMOTmJ4GgHxXnkLCh+9RsQBkWKIghzLhW2B9ebfG+LQQg8uLtsQ2aUKjTgE+QOg==} + engines: {npm: '>=7.0.0'} + + vscode-jsonrpc@6.0.0: + resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==} + engines: {node: '>=8.0.0 || >=10.0.0'} vscode-jsonrpc@8.2.0: resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} engines: {node: '>=14.0.0'} + vscode-languageserver-protocol@3.16.0: + resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==} + vscode-languageserver-protocol@3.17.5: resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} vscode-languageserver-textdocument@1.0.11: resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==} + vscode-languageserver-textdocument@1.0.12: + resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} + + vscode-languageserver-types@3.16.0: + resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==} + vscode-languageserver-types@3.17.5: resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} + vscode-languageserver@7.0.0: + resolution: {integrity: sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==} + hasBin: true + vscode-languageserver@9.0.1: resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} hasBin: true @@ -11262,27 +12433,109 @@ packages: walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} - watchpack@2.4.1: - resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} - engines: {node: '>=10.13.0'} - wcwidth@1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} web-namespaces@2.0.1: resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + web3-bzz@1.10.4: + resolution: {integrity: sha512-ZZ/X4sJ0Uh2teU9lAGNS8EjveEppoHNQiKlOXAjedsrdWuaMErBPdLQjXfcrYvN6WM6Su9PMsAxf3FXXZ+HwQw==} + engines: {node: '>=8.0.0'} + + web3-core-helpers@1.10.4: + resolution: {integrity: sha512-r+L5ylA17JlD1vwS8rjhWr0qg7zVoVMDvWhajWA5r5+USdh91jRUYosp19Kd1m2vE034v7Dfqe1xYRoH2zvG0g==} + engines: {node: '>=8.0.0'} + + web3-core-method@1.10.4: + resolution: {integrity: sha512-uZTb7flr+Xl6LaDsyTeE2L1TylokCJwTDrIVfIfnrGmnwLc6bmTWCCrm71sSrQ0hqs6vp/MKbQYIYqUN0J8WyA==} + engines: {node: '>=8.0.0'} + + web3-core-promievent@1.10.4: + resolution: {integrity: sha512-2de5WnJQ72YcIhYwV/jHLc4/cWJnznuoGTJGD29ncFQHAfwW/MItHFSVKPPA5v8AhJe+r6y4Y12EKvZKjQVBvQ==} + engines: {node: '>=8.0.0'} + + web3-core-requestmanager@1.10.4: + resolution: {integrity: sha512-vqP6pKH8RrhT/2MoaU+DY/OsYK9h7HmEBNCdoMj+4ZwujQtw/Mq2JifjwsJ7gits7Q+HWJwx8q6WmQoVZAWugg==} + engines: {node: '>=8.0.0'} + + web3-core-subscriptions@1.10.4: + resolution: {integrity: sha512-o0lSQo/N/f7/L76C0HV63+S54loXiE9fUPfHFcTtpJRQNDBVsSDdWRdePbWwR206XlsBqD5VHApck1//jEafTw==} + engines: {node: '>=8.0.0'} + + web3-core@1.10.4: + resolution: {integrity: sha512-B6elffYm81MYZDTrat7aEhnhdtVE3lDBUZft16Z8awYMZYJDbnykEbJVS+l3mnA7AQTnSDr/1MjWofGDLBJPww==} + engines: {node: '>=8.0.0'} + web3-eth-abi@1.10.4: resolution: {integrity: sha512-cZ0q65eJIkd/jyOlQPDjr8X4fU6CRL1eWgdLwbWEpo++MPU/2P4PFk5ZLAdye9T5Sdp+MomePPJ/gHjLMj2VfQ==} engines: {node: '>=8.0.0'} + web3-eth-accounts@1.10.4: + resolution: {integrity: sha512-ysy5sVTg9snYS7tJjxVoQAH6DTOTkRGR8emEVCWNGLGiB9txj+qDvSeT0izjurS/g7D5xlMAgrEHLK1Vi6I3yg==} + engines: {node: '>=8.0.0'} + + web3-eth-contract@1.10.4: + resolution: {integrity: sha512-Q8PfolOJ4eV9TvnTj1TGdZ4RarpSLmHnUnzVxZ/6/NiTfe4maJz99R0ISgwZkntLhLRtw0C7LRJuklzGYCNN3A==} + engines: {node: '>=8.0.0'} + + web3-eth-ens@1.10.4: + resolution: {integrity: sha512-LLrvxuFeVooRVZ9e5T6OWKVflHPFgrVjJ/jtisRWcmI7KN/b64+D/wJzXqgmp6CNsMQcE7rpmf4CQmJCrTdsgg==} + engines: {node: '>=8.0.0'} + + web3-eth-iban@1.10.4: + resolution: {integrity: sha512-0gE5iNmOkmtBmbKH2aTodeompnNE8jEyvwFJ6s/AF6jkw9ky9Op9cqfzS56AYAbrqEFuClsqB/AoRves7LDELw==} + engines: {node: '>=8.0.0'} + + web3-eth-personal@1.10.4: + resolution: {integrity: sha512-BRa/hs6jU1hKHz+AC/YkM71RP3f0Yci1dPk4paOic53R4ZZG4MgwKRkJhgt3/GPuPliwS46f/i5A7fEGBT4F9w==} + engines: {node: '>=8.0.0'} + + web3-eth@1.10.4: + resolution: {integrity: sha512-Sql2kYKmgt+T/cgvg7b9ce24uLS7xbFrxE4kuuor1zSCGrjhTJ5rRNG8gTJUkAJGKJc7KgnWmgW+cOfMBPUDSA==} + engines: {node: '>=8.0.0'} + + web3-net@1.10.4: + resolution: {integrity: sha512-mKINnhOOnZ4koA+yV2OT5s5ztVjIx7IY9a03w6s+yao/BUn+Luuty0/keNemZxTr1E8Ehvtn28vbOtW7Ids+Ow==} + engines: {node: '>=8.0.0'} + + web3-providers-http@1.10.4: + resolution: {integrity: sha512-m2P5Idc8hdiO0l60O6DSCPw0kw64Zgi0pMjbEFRmxKIck2Py57RQMu4bxvkxJwkF06SlGaEQF8rFZBmuX7aagQ==} + engines: {node: '>=8.0.0'} + + web3-providers-ipc@1.10.4: + resolution: {integrity: sha512-YRF/bpQk9z3WwjT+A6FI/GmWRCASgd+gC0si7f9zbBWLXjwzYAKG73bQBaFRAHex1hl4CVcM5WUMaQXf3Opeuw==} + engines: {node: '>=8.0.0'} + + web3-providers-ws@1.10.4: + resolution: {integrity: sha512-j3FBMifyuFFmUIPVQR4pj+t5ILhAexAui0opgcpu9R5LxQrLRUZxHSnU+YO25UycSOa/NAX8A+qkqZNpcFAlxA==} + engines: {node: '>=8.0.0'} + + web3-shh@1.10.4: + resolution: {integrity: sha512-cOH6iFFM71lCNwSQrC3niqDXagMqrdfFW85hC9PFUrAr3PUrIem8TNstTc3xna2bwZeWG6OBy99xSIhBvyIACw==} + engines: {node: '>=8.0.0'} + web3-utils@1.10.4: resolution: {integrity: sha512-tsu8FiKJLk2PzhDl9fXbGUWTkkVXYhtTA+SmEFkKft+9BgwLxfCRpU96sWv7ICC8zixBNd3JURVoiR3dUXgP8A==} engines: {node: '>=8.0.0'} + web3@1.10.4: + resolution: {integrity: sha512-kgJvQZjkmjOEKimx/tJQsqWfRDPTTcBfYPa9XletxuHLpHcXdx67w8EFn5AW3eVxCutE9dTVHgGa9VYe8vgsEA==} + engines: {node: '>=8.0.0'} + + webauthn-p256@0.0.5: + resolution: {integrity: sha512-drMGNWKdaixZNobeORVIqq7k5DsRC9FnG201K2QjeOoQLmtSDaSsVZdkg6n5jUALJKcAG++zBPJXmv6hy0nWFg==} + + webextension-polyfill-ts@0.25.0: + resolution: {integrity: sha512-ikQhwwHYkpBu00pFaUzIKY26I6L87DeRI+Q6jBT1daZUNuu8dSrg5U9l/ZbqdaQ1M/TTSPKeAa3kolP5liuedw==} + deprecated: This project has moved to @types/webextension-polyfill + webextension-polyfill@0.10.0: resolution: {integrity: sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g==} + webextension-polyfill@0.7.0: + resolution: {integrity: sha512-su48BkMLxqzTTvPSE1eWxKToPS2Tv5DLGxKexLEVpwFd6Po6N8hhSLIvG6acPAg7qERoEaDL+Y5HQJeJeml5Aw==} + webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} @@ -11290,13 +12543,13 @@ packages: resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} engines: {node: '>=12'} - webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} - webpack-virtual-modules@0.6.2: resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} + websocket@1.0.35: + resolution: {integrity: sha512-/REy6amwPZl44DDzvRCkaI1q1bIiQB0mEFQLUrhz3z2EK91cp3n72rAjUlrTP0zV22HJIUOVHQGPxhFRjxjt+Q==} + engines: {node: '>=4.0.0'} + whatwg-encoding@3.1.1: resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} engines: {node: '>=18'} @@ -11325,16 +12578,12 @@ packages: resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} engines: {node: '>=4'} - which-pm@2.0.0: - resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} - engines: {node: '>=8.15'} - which-pm@3.0.0: resolution: {integrity: sha512-ysVYmw6+ZBhx3+ZkcPwRuJi38ZOTLJJ33PSHaitLxSKUMsh0LkKd0nC69zZCwt5D+AYUcMK2hhw4yWny20vSGg==} engines: {node: '>=18.12'} - which-typed-array@1.1.15: - resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} + which-typed-array@1.1.13: + resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} engines: {node: '>= 0.4'} which@1.3.1: @@ -11360,12 +12609,9 @@ packages: resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} engines: {node: '>=12'} - word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} - engines: {node: '>=0.10.0'} - - wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + winston@2.4.7: + resolution: {integrity: sha512-vLB4BqzCKDnnZH9PHGoS2ycawueX4HLqENXQitvFHczhgW2vFpSOn31LZtVr1KU8YTw7DS4tM+cqyovxo8taVg==} + engines: {node: '>= 0.10.0'} wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} @@ -11385,8 +12631,19 @@ packages: write-file-atomic@2.4.3: resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} - ws@6.2.3: - resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} + ws@3.3.3: + resolution: {integrity: sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@6.2.2: + resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -11408,8 +12665,8 @@ packages: utf-8-validate: optional: true - ws@7.5.10: - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + ws@7.5.9: + resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 @@ -11420,6 +12677,18 @@ packages: utf-8-validate: optional: true + ws@8.11.0: + resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + ws@8.13.0: resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} engines: {node: '>=10.0.0'} @@ -11432,6 +12701,18 @@ packages: utf-8-validate: optional: true + ws@8.16.0: + resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + ws@8.17.1: resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} engines: {node: '>=10.0.0'} @@ -11444,10 +12725,27 @@ packages: utf-8-validate: optional: true + xhr-request-promise@0.1.3: + resolution: {integrity: sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==} + + xhr-request@1.1.0: + resolution: {integrity: sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==} + + xhr@2.6.0: + resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==} + xml-name-validator@5.0.0: resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} engines: {node: '>=18'} + xml2js@0.6.2: + resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==} + engines: {node: '>=4.0.0'} + + xmlbuilder@11.0.1: + resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} + engines: {node: '>=4.0'} + xmlchars@2.2.0: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} @@ -11459,6 +12757,9 @@ packages: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} + xxhash-wasm@1.0.2: + resolution: {integrity: sha512-ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A==} + y18n@4.0.3: resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} @@ -11466,6 +12767,10 @@ packages: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} + yaeti@0.0.6: + resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==} + engines: {node: '>=0.10.32'} + yallist@2.1.2: resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} @@ -11475,12 +12780,24 @@ packages: yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + yaml-language-server@1.15.0: + resolution: {integrity: sha512-N47AqBDCMQmh6mBLmI6oqxryHRzi33aPFPsJhYy3VTUGCdLHYjGh4FZzpUjRlphaADBBkDmnkM/++KNIOHi5Rw==} + hasBin: true + yaml@1.10.2: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} - yaml@2.4.5: - resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==} + yaml@2.2.2: + resolution: {integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==} + engines: {node: '>= 14'} + + yaml@2.3.4: + resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} + engines: {node: '>= 14'} + + yaml@2.5.1: + resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==} engines: {node: '>= 14'} hasBin: true @@ -11508,15 +12825,25 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} + yocto-queue@1.0.0: + resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} + engines: {node: '>=12.20'} + yocto-queue@1.1.1: resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} engines: {node: '>=12.20'} - zod-to-json-schema@3.23.2: - resolution: {integrity: sha512-uSt90Gzc/tUfyNqxnjlfBs8W6WSGpNBv0rVsNxP/BVSMHMKGdthPYff4xtCHYloJGM0CFxFsb3NbC0eqPhfImw==} + zod-to-json-schema@3.23.3: + resolution: {integrity: sha512-TYWChTxKQbRJp5ST22o/Irt9KC5nj7CdBKYB/AosCRdj/wxEMvv4NNaj9XVUHDOIp53ZxArGhnw5HMZziPFjog==} peerDependencies: zod: ^3.23.3 + zod-to-ts@1.2.0: + resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} + peerDependencies: + typescript: ^4.9.4 || ^5.0.2 + zod: ^3 + zod@3.22.4: resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} @@ -11543,57 +12870,64 @@ packages: snapshots: + '@aashutoshrathi/word-wrap@1.2.6': {} + '@adobe/css-tools@4.4.0': {} '@adraffy/ens-normalize@1.10.0': {} + '@adraffy/ens-normalize@1.10.1': {} + '@alloc/quick-lru@5.2.0': {} - '@ampproject/remapping@2.3.0': + '@ampproject/remapping@2.2.1': dependencies: - '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.25 '@apidevtools/openapi-schemas@2.1.0': {} '@apidevtools/swagger-methods@3.0.2': {} - '@astrojs/check@0.8.3(prettier@3.3.2)(typescript@5.5.3)': + '@astrojs/check@0.8.3(prettier@3.2.5)(typescript@5.4.5)': dependencies: - '@astrojs/language-server': 2.13.2(prettier@3.3.2)(typescript@5.5.3) + '@astrojs/language-server': 2.14.2(prettier@3.2.5)(typescript@5.4.5) chokidar: 3.6.0 fast-glob: 3.3.2 kleur: 4.1.5 - typescript: 5.5.3 + typescript: 5.4.5 yargs: 17.7.2 transitivePeerDependencies: - prettier - prettier-plugin-astro - '@astrojs/compiler@2.10.2': {} + '@astrojs/compiler@2.10.3': {} '@astrojs/internal-helpers@0.4.1': {} - '@astrojs/language-server@2.13.2(prettier@3.3.2)(typescript@5.5.3)': + '@astrojs/language-server@2.14.2(prettier@3.2.5)(typescript@5.4.5)': dependencies: - '@astrojs/compiler': 2.10.2 + '@astrojs/compiler': 2.10.3 + '@astrojs/yaml2ts': 0.2.1 '@jridgewell/sourcemap-codec': 1.4.15 - '@volar/kit': 2.4.0-alpha.18(typescript@5.5.3) - '@volar/language-core': 2.4.0-alpha.18 - '@volar/language-server': 2.4.0-alpha.18 - '@volar/language-service': 2.4.0-alpha.18 - '@volar/typescript': 2.4.0-alpha.18 + '@volar/kit': 2.4.5(typescript@5.4.5) + '@volar/language-core': 2.4.5 + '@volar/language-server': 2.4.5 + '@volar/language-service': 2.4.5 + '@volar/typescript': 2.4.5 fast-glob: 3.3.2 muggle-string: 0.4.1 - prettier: 3.3.2 - volar-service-css: 0.0.59(@volar/language-service@2.4.0-alpha.18) - volar-service-emmet: 0.0.59(@volar/language-service@2.4.0-alpha.18) - volar-service-html: 0.0.59(@volar/language-service@2.4.0-alpha.18) - volar-service-prettier: 0.0.59(@volar/language-service@2.4.0-alpha.18)(prettier@3.3.2) - volar-service-typescript: 0.0.59(@volar/language-service@2.4.0-alpha.18) - volar-service-typescript-twoslash-queries: 0.0.59(@volar/language-service@2.4.0-alpha.18) - vscode-html-languageservice: 5.3.0 + volar-service-css: 0.0.61(@volar/language-service@2.4.5) + volar-service-emmet: 0.0.61(@volar/language-service@2.4.5) + volar-service-html: 0.0.61(@volar/language-service@2.4.5) + volar-service-prettier: 0.0.61(@volar/language-service@2.4.5)(prettier@3.2.5) + volar-service-typescript: 0.0.61(@volar/language-service@2.4.5) + volar-service-typescript-twoslash-queries: 0.0.61(@volar/language-service@2.4.5) + volar-service-yaml: 0.0.61(@volar/language-service@2.4.5) + vscode-html-languageservice: 5.2.0 vscode-uri: 3.0.8 + optionalDependencies: + prettier: 3.2.5 transitivePeerDependencies: - typescript @@ -11611,33 +12945,32 @@ snapshots: remark-parse: 11.0.0 remark-rehype: 11.1.0 remark-smartypants: 3.0.2 - shiki: 1.12.1 + shiki: 1.17.6 unified: 11.0.5 unist-util-remove-position: 5.0.0 unist-util-visit: 5.0.0 unist-util-visit-parents: 6.0.1 - vfile: 6.0.2 + vfile: 6.0.3 transitivePeerDependencies: - supports-color - '@astrojs/mdx@3.1.3(astro@4.13.3)': + '@astrojs/mdx@3.1.6(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5))': dependencies: '@astrojs/markdown-remark': 5.2.0 '@mdx-js/mdx': 3.0.1 acorn: 8.12.1 - astro: 4.13.3(typescript@5.5.3) + astro: 4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5) es-module-lexer: 1.5.4 estree-util-visit: 2.0.0 - github-slugger: 2.0.0 gray-matter: 4.0.3 - hast-util-to-html: 9.0.1 + hast-util-to-html: 9.0.2 kleur: 4.1.5 rehype-raw: 7.0.0 remark-gfm: 4.0.0 remark-smartypants: 3.0.2 source-map: 0.7.4 unist-util-visit: 5.0.0 - vfile: 6.0.2 + vfile: 6.0.3 transitivePeerDependencies: - supports-color @@ -11651,15 +12984,15 @@ snapshots: stream-replace-string: 2.0.0 zod: 3.23.8 - '@astrojs/starlight@0.25.4(astro@4.13.3)': + '@astrojs/starlight@0.25.5(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5))': dependencies: - '@astrojs/mdx': 3.1.3(astro@4.13.3) + '@astrojs/mdx': 3.1.6(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)) '@astrojs/sitemap': 3.1.6 '@pagefind/default-ui': 1.1.0 '@types/hast': 3.0.4 '@types/mdast': 4.0.4 - astro: 4.13.3(typescript@5.5.3) - astro-expressive-code: 0.35.6(astro@4.13.3) + astro: 4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5) + astro-expressive-code: 0.35.6(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)) bcp-47: 2.1.0 hast-util-from-html: 2.0.1 hast-util-select: 6.0.2 @@ -11674,14 +13007,14 @@ snapshots: remark-directive: 3.0.0 unified: 11.0.5 unist-util-visit: 5.0.0 - vfile: 6.0.2 + vfile: 6.0.3 transitivePeerDependencies: - supports-color '@astrojs/telemetry@3.1.0': dependencies: ci-info: 4.0.0 - debug: 4.3.6 + debug: 4.3.7 dlv: 1.1.3 dset: 3.1.3 is-docker: 3.0.0 @@ -11690,917 +13023,791 @@ snapshots: transitivePeerDependencies: - supports-color - '@aw-web-design/x-default-browser@1.4.126': + '@astrojs/yaml2ts@0.2.1': dependencies: - default-browser-id: 3.0.0 + yaml: 2.5.1 + + '@aws-crypto/crc32@3.0.0': + dependencies: + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.577.0 + tslib: 1.14.1 - '@aws-crypto/crc32@5.2.0': + '@aws-crypto/crc32c@3.0.0': dependencies: - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.598.0 - tslib: 2.6.3 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.577.0 + tslib: 1.14.1 - '@aws-crypto/crc32c@5.2.0': + '@aws-crypto/ie11-detection@3.0.0': dependencies: - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.598.0 - tslib: 2.6.3 + tslib: 1.14.1 - '@aws-crypto/sha1-browser@5.2.0': + '@aws-crypto/sha1-browser@3.0.0': dependencies: - '@aws-crypto/supports-web-crypto': 5.2.0 - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.598.0 + '@aws-crypto/ie11-detection': 3.0.0 + '@aws-crypto/supports-web-crypto': 3.0.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.577.0 '@aws-sdk/util-locate-window': 3.568.0 - '@smithy/util-utf8': 2.3.0 - tslib: 2.6.3 + '@aws-sdk/util-utf8-browser': 3.259.0 + tslib: 1.14.1 - '@aws-crypto/sha256-browser@5.2.0': + '@aws-crypto/sha256-browser@3.0.0': dependencies: - '@aws-crypto/sha256-js': 5.2.0 - '@aws-crypto/supports-web-crypto': 5.2.0 - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.598.0 + '@aws-crypto/ie11-detection': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-crypto/supports-web-crypto': 3.0.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.577.0 '@aws-sdk/util-locate-window': 3.568.0 - '@smithy/util-utf8': 2.3.0 - tslib: 2.6.3 - - '@aws-crypto/sha256-js@5.2.0': - dependencies: - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.598.0 - tslib: 2.6.3 - - '@aws-crypto/supports-web-crypto@5.2.0': - dependencies: - tslib: 2.6.3 - - '@aws-crypto/util@5.2.0': - dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/util-utf8': 2.3.0 - tslib: 2.6.3 - - '@aws-sdk/client-s3@3.608.0': - dependencies: - '@aws-crypto/sha1-browser': 5.2.0 - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.606.0(@aws-sdk/client-sts@3.606.0) - '@aws-sdk/client-sts': 3.606.0 - '@aws-sdk/core': 3.598.0 - '@aws-sdk/credential-provider-node': 3.600.0(@aws-sdk/client-sso-oidc@3.606.0)(@aws-sdk/client-sts@3.606.0) - '@aws-sdk/middleware-bucket-endpoint': 3.598.0 - '@aws-sdk/middleware-expect-continue': 3.598.0 - '@aws-sdk/middleware-flexible-checksums': 3.598.0 - '@aws-sdk/middleware-host-header': 3.598.0 - '@aws-sdk/middleware-location-constraint': 3.598.0 - '@aws-sdk/middleware-logger': 3.598.0 - '@aws-sdk/middleware-recursion-detection': 3.598.0 - '@aws-sdk/middleware-sdk-s3': 3.598.0 - '@aws-sdk/middleware-signing': 3.598.0 - '@aws-sdk/middleware-ssec': 3.598.0 - '@aws-sdk/middleware-user-agent': 3.598.0 - '@aws-sdk/region-config-resolver': 3.598.0 - '@aws-sdk/signature-v4-multi-region': 3.598.0 - '@aws-sdk/types': 3.598.0 - '@aws-sdk/util-endpoints': 3.598.0 - '@aws-sdk/util-user-agent-browser': 3.598.0 - '@aws-sdk/util-user-agent-node': 3.598.0 - '@aws-sdk/xml-builder': 3.598.0 - '@smithy/config-resolver': 3.0.4 - '@smithy/core': 2.2.4 - '@smithy/eventstream-serde-browser': 3.0.4 - '@smithy/eventstream-serde-config-resolver': 3.0.3 - '@smithy/eventstream-serde-node': 3.0.4 - '@smithy/fetch-http-handler': 3.2.0 - '@smithy/hash-blob-browser': 3.1.2 - '@smithy/hash-node': 3.0.3 - '@smithy/hash-stream-node': 3.1.2 - '@smithy/invalid-dependency': 3.0.3 - '@smithy/md5-js': 3.0.3 - '@smithy/middleware-content-length': 3.0.3 - '@smithy/middleware-endpoint': 3.0.4 - '@smithy/middleware-retry': 3.0.7 - '@smithy/middleware-serde': 3.0.3 - '@smithy/middleware-stack': 3.0.3 - '@smithy/node-config-provider': 3.1.3 - '@smithy/node-http-handler': 3.1.1 - '@smithy/protocol-http': 4.0.3 - '@smithy/smithy-client': 3.1.5 - '@smithy/types': 3.3.0 - '@smithy/url-parser': 3.0.3 + '@aws-sdk/util-utf8-browser': 3.259.0 + tslib: 1.14.1 + + '@aws-crypto/sha256-js@1.2.2': + dependencies: + '@aws-crypto/util': 1.2.2 + '@aws-sdk/types': 3.577.0 + tslib: 1.14.1 + + '@aws-crypto/sha256-js@3.0.0': + dependencies: + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.577.0 + tslib: 1.14.1 + + '@aws-crypto/supports-web-crypto@3.0.0': + dependencies: + tslib: 1.14.1 + + '@aws-crypto/util@1.2.2': + dependencies: + '@aws-sdk/types': 3.577.0 + '@aws-sdk/util-utf8-browser': 3.259.0 + tslib: 1.14.1 + + '@aws-crypto/util@3.0.0': + dependencies: + '@aws-sdk/types': 3.577.0 + '@aws-sdk/util-utf8-browser': 3.259.0 + tslib: 1.14.1 + + '@aws-sdk/client-s3@3.577.0': + dependencies: + '@aws-crypto/sha1-browser': 3.0.0 + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sso-oidc': 3.577.0 + '@aws-sdk/client-sts': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0) + '@aws-sdk/core': 3.576.0 + '@aws-sdk/credential-provider-node': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)(@aws-sdk/client-sts@3.577.0) + '@aws-sdk/middleware-bucket-endpoint': 3.577.0 + '@aws-sdk/middleware-expect-continue': 3.577.0 + '@aws-sdk/middleware-flexible-checksums': 3.577.0 + '@aws-sdk/middleware-host-header': 3.577.0 + '@aws-sdk/middleware-location-constraint': 3.577.0 + '@aws-sdk/middleware-logger': 3.577.0 + '@aws-sdk/middleware-recursion-detection': 3.577.0 + '@aws-sdk/middleware-sdk-s3': 3.577.0 + '@aws-sdk/middleware-signing': 3.577.0 + '@aws-sdk/middleware-ssec': 3.577.0 + '@aws-sdk/middleware-user-agent': 3.577.0 + '@aws-sdk/region-config-resolver': 3.577.0 + '@aws-sdk/signature-v4-multi-region': 3.577.0 + '@aws-sdk/types': 3.577.0 + '@aws-sdk/util-endpoints': 3.577.0 + '@aws-sdk/util-user-agent-browser': 3.577.0 + '@aws-sdk/util-user-agent-node': 3.577.0 + '@aws-sdk/xml-builder': 3.575.0 + '@smithy/config-resolver': 3.0.0 + '@smithy/core': 2.0.1 + '@smithy/eventstream-serde-browser': 3.0.0 + '@smithy/eventstream-serde-config-resolver': 3.0.0 + '@smithy/eventstream-serde-node': 3.0.0 + '@smithy/fetch-http-handler': 3.0.1 + '@smithy/hash-blob-browser': 3.0.0 + '@smithy/hash-node': 3.0.0 + '@smithy/hash-stream-node': 3.0.0 + '@smithy/invalid-dependency': 3.0.0 + '@smithy/md5-js': 3.0.0 + '@smithy/middleware-content-length': 3.0.0 + '@smithy/middleware-endpoint': 3.0.0 + '@smithy/middleware-retry': 3.0.1 + '@smithy/middleware-serde': 3.0.0 + '@smithy/middleware-stack': 3.0.0 + '@smithy/node-config-provider': 3.0.0 + '@smithy/node-http-handler': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/smithy-client': 3.0.1 + '@smithy/types': 3.0.0 + '@smithy/url-parser': 3.0.0 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.7 - '@smithy/util-defaults-mode-node': 3.0.7 - '@smithy/util-endpoints': 2.0.4 - '@smithy/util-retry': 3.0.3 - '@smithy/util-stream': 3.0.5 + '@smithy/util-defaults-mode-browser': 3.0.1 + '@smithy/util-defaults-mode-node': 3.0.1 + '@smithy/util-endpoints': 2.0.0 + '@smithy/util-retry': 3.0.0 + '@smithy/util-stream': 3.0.1 '@smithy/util-utf8': 3.0.0 - '@smithy/util-waiter': 3.1.2 - tslib: 2.6.3 + '@smithy/util-waiter': 3.0.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt - '@aws-sdk/client-sso-oidc@3.606.0(@aws-sdk/client-sts@3.606.0)': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sts': 3.606.0 - '@aws-sdk/core': 3.598.0 - '@aws-sdk/credential-provider-node': 3.600.0(@aws-sdk/client-sso-oidc@3.606.0)(@aws-sdk/client-sts@3.606.0) - '@aws-sdk/middleware-host-header': 3.598.0 - '@aws-sdk/middleware-logger': 3.598.0 - '@aws-sdk/middleware-recursion-detection': 3.598.0 - '@aws-sdk/middleware-user-agent': 3.598.0 - '@aws-sdk/region-config-resolver': 3.598.0 - '@aws-sdk/types': 3.598.0 - '@aws-sdk/util-endpoints': 3.598.0 - '@aws-sdk/util-user-agent-browser': 3.598.0 - '@aws-sdk/util-user-agent-node': 3.598.0 - '@smithy/config-resolver': 3.0.4 - '@smithy/core': 2.2.4 - '@smithy/fetch-http-handler': 3.2.0 - '@smithy/hash-node': 3.0.3 - '@smithy/invalid-dependency': 3.0.3 - '@smithy/middleware-content-length': 3.0.3 - '@smithy/middleware-endpoint': 3.0.4 - '@smithy/middleware-retry': 3.0.7 - '@smithy/middleware-serde': 3.0.3 - '@smithy/middleware-stack': 3.0.3 - '@smithy/node-config-provider': 3.1.3 - '@smithy/node-http-handler': 3.1.1 - '@smithy/protocol-http': 4.0.3 - '@smithy/smithy-client': 3.1.5 - '@smithy/types': 3.3.0 - '@smithy/url-parser': 3.0.3 + '@aws-sdk/client-sso-oidc@3.577.0': + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0) + '@aws-sdk/core': 3.576.0 + '@aws-sdk/credential-provider-node': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)(@aws-sdk/client-sts@3.577.0) + '@aws-sdk/middleware-host-header': 3.577.0 + '@aws-sdk/middleware-logger': 3.577.0 + '@aws-sdk/middleware-recursion-detection': 3.577.0 + '@aws-sdk/middleware-user-agent': 3.577.0 + '@aws-sdk/region-config-resolver': 3.577.0 + '@aws-sdk/types': 3.577.0 + '@aws-sdk/util-endpoints': 3.577.0 + '@aws-sdk/util-user-agent-browser': 3.577.0 + '@aws-sdk/util-user-agent-node': 3.577.0 + '@smithy/config-resolver': 3.0.0 + '@smithy/core': 2.0.1 + '@smithy/fetch-http-handler': 3.0.1 + '@smithy/hash-node': 3.0.0 + '@smithy/invalid-dependency': 3.0.0 + '@smithy/middleware-content-length': 3.0.0 + '@smithy/middleware-endpoint': 3.0.0 + '@smithy/middleware-retry': 3.0.1 + '@smithy/middleware-serde': 3.0.0 + '@smithy/middleware-stack': 3.0.0 + '@smithy/node-config-provider': 3.0.0 + '@smithy/node-http-handler': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/smithy-client': 3.0.1 + '@smithy/types': 3.0.0 + '@smithy/url-parser': 3.0.0 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.7 - '@smithy/util-defaults-mode-node': 3.0.7 - '@smithy/util-endpoints': 2.0.4 - '@smithy/util-middleware': 3.0.3 - '@smithy/util-retry': 3.0.3 + '@smithy/util-defaults-mode-browser': 3.0.1 + '@smithy/util-defaults-mode-node': 3.0.1 + '@smithy/util-endpoints': 2.0.0 + '@smithy/util-middleware': 3.0.0 + '@smithy/util-retry': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt - '@aws-sdk/client-sso@3.598.0': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.598.0 - '@aws-sdk/middleware-host-header': 3.598.0 - '@aws-sdk/middleware-logger': 3.598.0 - '@aws-sdk/middleware-recursion-detection': 3.598.0 - '@aws-sdk/middleware-user-agent': 3.598.0 - '@aws-sdk/region-config-resolver': 3.598.0 - '@aws-sdk/types': 3.598.0 - '@aws-sdk/util-endpoints': 3.598.0 - '@aws-sdk/util-user-agent-browser': 3.598.0 - '@aws-sdk/util-user-agent-node': 3.598.0 - '@smithy/config-resolver': 3.0.4 - '@smithy/core': 2.2.4 - '@smithy/fetch-http-handler': 3.2.0 - '@smithy/hash-node': 3.0.3 - '@smithy/invalid-dependency': 3.0.3 - '@smithy/middleware-content-length': 3.0.3 - '@smithy/middleware-endpoint': 3.0.4 - '@smithy/middleware-retry': 3.0.7 - '@smithy/middleware-serde': 3.0.3 - '@smithy/middleware-stack': 3.0.3 - '@smithy/node-config-provider': 3.1.3 - '@smithy/node-http-handler': 3.1.1 - '@smithy/protocol-http': 4.0.3 - '@smithy/smithy-client': 3.1.5 - '@smithy/types': 3.3.0 - '@smithy/url-parser': 3.0.3 + '@aws-sdk/client-sso@3.577.0': + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/core': 3.576.0 + '@aws-sdk/middleware-host-header': 3.577.0 + '@aws-sdk/middleware-logger': 3.577.0 + '@aws-sdk/middleware-recursion-detection': 3.577.0 + '@aws-sdk/middleware-user-agent': 3.577.0 + '@aws-sdk/region-config-resolver': 3.577.0 + '@aws-sdk/types': 3.577.0 + '@aws-sdk/util-endpoints': 3.577.0 + '@aws-sdk/util-user-agent-browser': 3.577.0 + '@aws-sdk/util-user-agent-node': 3.577.0 + '@smithy/config-resolver': 3.0.0 + '@smithy/core': 2.0.1 + '@smithy/fetch-http-handler': 3.0.1 + '@smithy/hash-node': 3.0.0 + '@smithy/invalid-dependency': 3.0.0 + '@smithy/middleware-content-length': 3.0.0 + '@smithy/middleware-endpoint': 3.0.0 + '@smithy/middleware-retry': 3.0.1 + '@smithy/middleware-serde': 3.0.0 + '@smithy/middleware-stack': 3.0.0 + '@smithy/node-config-provider': 3.0.0 + '@smithy/node-http-handler': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/smithy-client': 3.0.1 + '@smithy/types': 3.0.0 + '@smithy/url-parser': 3.0.0 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.7 - '@smithy/util-defaults-mode-node': 3.0.7 - '@smithy/util-endpoints': 2.0.4 - '@smithy/util-middleware': 3.0.3 - '@smithy/util-retry': 3.0.3 + '@smithy/util-defaults-mode-browser': 3.0.1 + '@smithy/util-defaults-mode-node': 3.0.1 + '@smithy/util-endpoints': 2.0.0 + '@smithy/util-middleware': 3.0.0 + '@smithy/util-retry': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt - '@aws-sdk/client-sts@3.606.0': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.606.0(@aws-sdk/client-sts@3.606.0) - '@aws-sdk/core': 3.598.0 - '@aws-sdk/credential-provider-node': 3.600.0(@aws-sdk/client-sso-oidc@3.606.0)(@aws-sdk/client-sts@3.606.0) - '@aws-sdk/middleware-host-header': 3.598.0 - '@aws-sdk/middleware-logger': 3.598.0 - '@aws-sdk/middleware-recursion-detection': 3.598.0 - '@aws-sdk/middleware-user-agent': 3.598.0 - '@aws-sdk/region-config-resolver': 3.598.0 - '@aws-sdk/types': 3.598.0 - '@aws-sdk/util-endpoints': 3.598.0 - '@aws-sdk/util-user-agent-browser': 3.598.0 - '@aws-sdk/util-user-agent-node': 3.598.0 - '@smithy/config-resolver': 3.0.4 - '@smithy/core': 2.2.4 - '@smithy/fetch-http-handler': 3.2.0 - '@smithy/hash-node': 3.0.3 - '@smithy/invalid-dependency': 3.0.3 - '@smithy/middleware-content-length': 3.0.3 - '@smithy/middleware-endpoint': 3.0.4 - '@smithy/middleware-retry': 3.0.7 - '@smithy/middleware-serde': 3.0.3 - '@smithy/middleware-stack': 3.0.3 - '@smithy/node-config-provider': 3.1.3 - '@smithy/node-http-handler': 3.1.1 - '@smithy/protocol-http': 4.0.3 - '@smithy/smithy-client': 3.1.5 - '@smithy/types': 3.3.0 - '@smithy/url-parser': 3.0.3 + '@aws-sdk/client-sts@3.577.0(@aws-sdk/client-sso-oidc@3.577.0)': + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sso-oidc': 3.577.0 + '@aws-sdk/core': 3.576.0 + '@aws-sdk/credential-provider-node': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)(@aws-sdk/client-sts@3.577.0) + '@aws-sdk/middleware-host-header': 3.577.0 + '@aws-sdk/middleware-logger': 3.577.0 + '@aws-sdk/middleware-recursion-detection': 3.577.0 + '@aws-sdk/middleware-user-agent': 3.577.0 + '@aws-sdk/region-config-resolver': 3.577.0 + '@aws-sdk/types': 3.577.0 + '@aws-sdk/util-endpoints': 3.577.0 + '@aws-sdk/util-user-agent-browser': 3.577.0 + '@aws-sdk/util-user-agent-node': 3.577.0 + '@smithy/config-resolver': 3.0.0 + '@smithy/core': 2.0.1 + '@smithy/fetch-http-handler': 3.0.1 + '@smithy/hash-node': 3.0.0 + '@smithy/invalid-dependency': 3.0.0 + '@smithy/middleware-content-length': 3.0.0 + '@smithy/middleware-endpoint': 3.0.0 + '@smithy/middleware-retry': 3.0.1 + '@smithy/middleware-serde': 3.0.0 + '@smithy/middleware-stack': 3.0.0 + '@smithy/node-config-provider': 3.0.0 + '@smithy/node-http-handler': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/smithy-client': 3.0.1 + '@smithy/types': 3.0.0 + '@smithy/url-parser': 3.0.0 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.7 - '@smithy/util-defaults-mode-node': 3.0.7 - '@smithy/util-endpoints': 2.0.4 - '@smithy/util-middleware': 3.0.3 - '@smithy/util-retry': 3.0.3 + '@smithy/util-defaults-mode-browser': 3.0.1 + '@smithy/util-defaults-mode-node': 3.0.1 + '@smithy/util-endpoints': 2.0.0 + '@smithy/util-middleware': 3.0.0 + '@smithy/util-retry': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 transitivePeerDependencies: + - '@aws-sdk/client-sso-oidc' - aws-crt - '@aws-sdk/core@3.598.0': + '@aws-sdk/core@3.576.0': dependencies: - '@smithy/core': 2.2.4 - '@smithy/protocol-http': 4.0.3 - '@smithy/signature-v4': 3.1.2 - '@smithy/smithy-client': 3.1.5 - '@smithy/types': 3.3.0 + '@smithy/core': 2.0.1 + '@smithy/protocol-http': 4.0.0 + '@smithy/signature-v4': 3.0.0 + '@smithy/smithy-client': 3.0.1 + '@smithy/types': 3.0.0 fast-xml-parser: 4.2.5 - tslib: 2.6.3 - - '@aws-sdk/credential-provider-env@3.598.0': - dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/property-provider': 3.1.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 - - '@aws-sdk/credential-provider-http@3.598.0': - dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/fetch-http-handler': 3.2.0 - '@smithy/node-http-handler': 3.1.1 - '@smithy/property-provider': 3.1.3 - '@smithy/protocol-http': 4.0.3 - '@smithy/smithy-client': 3.1.5 - '@smithy/types': 3.3.0 - '@smithy/util-stream': 3.0.5 - tslib: 2.6.3 - - '@aws-sdk/credential-provider-ini@3.598.0(@aws-sdk/client-sso-oidc@3.606.0)(@aws-sdk/client-sts@3.606.0)': - dependencies: - '@aws-sdk/client-sts': 3.606.0 - '@aws-sdk/credential-provider-env': 3.598.0 - '@aws-sdk/credential-provider-http': 3.598.0 - '@aws-sdk/credential-provider-process': 3.598.0 - '@aws-sdk/credential-provider-sso': 3.598.0(@aws-sdk/client-sso-oidc@3.606.0) - '@aws-sdk/credential-provider-web-identity': 3.598.0(@aws-sdk/client-sts@3.606.0) - '@aws-sdk/types': 3.598.0 - '@smithy/credential-provider-imds': 3.1.3 - '@smithy/property-provider': 3.1.3 - '@smithy/shared-ini-file-loader': 3.1.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.6.2 + + '@aws-sdk/credential-provider-env@3.577.0': + dependencies: + '@aws-sdk/types': 3.577.0 + '@smithy/property-provider': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 + + '@aws-sdk/credential-provider-http@3.577.0': + dependencies: + '@aws-sdk/types': 3.577.0 + '@smithy/fetch-http-handler': 3.0.1 + '@smithy/node-http-handler': 3.0.0 + '@smithy/property-provider': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/smithy-client': 3.0.1 + '@smithy/types': 3.0.0 + '@smithy/util-stream': 3.0.1 + tslib: 2.6.2 + + '@aws-sdk/credential-provider-ini@3.577.0(@aws-sdk/client-sso-oidc@3.577.0)(@aws-sdk/client-sts@3.577.0)': + dependencies: + '@aws-sdk/client-sts': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0) + '@aws-sdk/credential-provider-env': 3.577.0 + '@aws-sdk/credential-provider-process': 3.577.0 + '@aws-sdk/credential-provider-sso': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0) + '@aws-sdk/credential-provider-web-identity': 3.577.0(@aws-sdk/client-sts@3.577.0) + '@aws-sdk/types': 3.577.0 + '@smithy/credential-provider-imds': 3.0.0 + '@smithy/property-provider': 3.0.0 + '@smithy/shared-ini-file-loader': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - '@aws-sdk/credential-provider-node@3.600.0(@aws-sdk/client-sso-oidc@3.606.0)(@aws-sdk/client-sts@3.606.0)': - dependencies: - '@aws-sdk/credential-provider-env': 3.598.0 - '@aws-sdk/credential-provider-http': 3.598.0 - '@aws-sdk/credential-provider-ini': 3.598.0(@aws-sdk/client-sso-oidc@3.606.0)(@aws-sdk/client-sts@3.606.0) - '@aws-sdk/credential-provider-process': 3.598.0 - '@aws-sdk/credential-provider-sso': 3.598.0(@aws-sdk/client-sso-oidc@3.606.0) - '@aws-sdk/credential-provider-web-identity': 3.598.0(@aws-sdk/client-sts@3.606.0) - '@aws-sdk/types': 3.598.0 - '@smithy/credential-provider-imds': 3.1.3 - '@smithy/property-provider': 3.1.3 - '@smithy/shared-ini-file-loader': 3.1.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/credential-provider-node@3.577.0(@aws-sdk/client-sso-oidc@3.577.0)(@aws-sdk/client-sts@3.577.0)': + dependencies: + '@aws-sdk/credential-provider-env': 3.577.0 + '@aws-sdk/credential-provider-http': 3.577.0 + '@aws-sdk/credential-provider-ini': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)(@aws-sdk/client-sts@3.577.0) + '@aws-sdk/credential-provider-process': 3.577.0 + '@aws-sdk/credential-provider-sso': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0) + '@aws-sdk/credential-provider-web-identity': 3.577.0(@aws-sdk/client-sts@3.577.0) + '@aws-sdk/types': 3.577.0 + '@smithy/credential-provider-imds': 3.0.0 + '@smithy/property-provider': 3.0.0 + '@smithy/shared-ini-file-loader': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - '@aws-sdk/client-sts' - aws-crt - '@aws-sdk/credential-provider-process@3.598.0': + '@aws-sdk/credential-provider-process@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/property-provider': 3.1.3 - '@smithy/shared-ini-file-loader': 3.1.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.577.0 + '@smithy/property-provider': 3.0.0 + '@smithy/shared-ini-file-loader': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/credential-provider-sso@3.598.0(@aws-sdk/client-sso-oidc@3.606.0)': + '@aws-sdk/credential-provider-sso@3.577.0(@aws-sdk/client-sso-oidc@3.577.0)': dependencies: - '@aws-sdk/client-sso': 3.598.0 - '@aws-sdk/token-providers': 3.598.0(@aws-sdk/client-sso-oidc@3.606.0) - '@aws-sdk/types': 3.598.0 - '@smithy/property-provider': 3.1.3 - '@smithy/shared-ini-file-loader': 3.1.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/client-sso': 3.577.0 + '@aws-sdk/token-providers': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0) + '@aws-sdk/types': 3.577.0 + '@smithy/property-provider': 3.0.0 + '@smithy/shared-ini-file-loader': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - '@aws-sdk/credential-provider-web-identity@3.598.0(@aws-sdk/client-sts@3.606.0)': + '@aws-sdk/credential-provider-web-identity@3.577.0(@aws-sdk/client-sts@3.577.0)': dependencies: - '@aws-sdk/client-sts': 3.606.0 - '@aws-sdk/types': 3.598.0 - '@smithy/property-provider': 3.1.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/client-sts': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0) + '@aws-sdk/types': 3.577.0 + '@smithy/property-provider': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/lib-storage@3.608.0(@aws-sdk/client-s3@3.608.0)': + '@aws-sdk/lib-storage@3.578.0(@aws-sdk/client-s3@3.577.0)': dependencies: - '@aws-sdk/client-s3': 3.608.0 - '@smithy/abort-controller': 3.1.1 - '@smithy/middleware-endpoint': 3.0.4 - '@smithy/smithy-client': 3.1.5 + '@aws-sdk/client-s3': 3.577.0 + '@smithy/abort-controller': 3.0.0 + '@smithy/middleware-endpoint': 3.0.0 + '@smithy/smithy-client': 3.0.1 buffer: 5.6.0 events: 3.3.0 stream-browserify: 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@aws-sdk/middleware-bucket-endpoint@3.598.0': + '@aws-sdk/middleware-bucket-endpoint@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 + '@aws-sdk/types': 3.577.0 '@aws-sdk/util-arn-parser': 3.568.0 - '@smithy/node-config-provider': 3.1.3 - '@smithy/protocol-http': 4.0.3 - '@smithy/types': 3.3.0 + '@smithy/node-config-provider': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/types': 3.0.0 '@smithy/util-config-provider': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@aws-sdk/middleware-expect-continue@3.598.0': + '@aws-sdk/middleware-expect-continue@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/protocol-http': 4.0.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.577.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/middleware-flexible-checksums@3.598.0': + '@aws-sdk/middleware-flexible-checksums@3.577.0': dependencies: - '@aws-crypto/crc32': 5.2.0 - '@aws-crypto/crc32c': 5.2.0 - '@aws-sdk/types': 3.598.0 + '@aws-crypto/crc32': 3.0.0 + '@aws-crypto/crc32c': 3.0.0 + '@aws-sdk/types': 3.577.0 '@smithy/is-array-buffer': 3.0.0 - '@smithy/protocol-http': 4.0.3 - '@smithy/types': 3.3.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/types': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@aws-sdk/middleware-host-header@3.598.0': + '@aws-sdk/middleware-host-header@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/protocol-http': 4.0.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.577.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/middleware-location-constraint@3.598.0': + '@aws-sdk/middleware-location-constraint@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.577.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/middleware-logger@3.598.0': + '@aws-sdk/middleware-logger@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.577.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/middleware-recursion-detection@3.598.0': + '@aws-sdk/middleware-recursion-detection@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/protocol-http': 4.0.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.577.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/middleware-sdk-s3@3.598.0': + '@aws-sdk/middleware-sdk-s3@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 + '@aws-sdk/types': 3.577.0 '@aws-sdk/util-arn-parser': 3.568.0 - '@smithy/node-config-provider': 3.1.3 - '@smithy/protocol-http': 4.0.3 - '@smithy/signature-v4': 3.1.2 - '@smithy/smithy-client': 3.1.5 - '@smithy/types': 3.3.0 + '@smithy/node-config-provider': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/signature-v4': 3.0.0 + '@smithy/smithy-client': 3.0.1 + '@smithy/types': 3.0.0 '@smithy/util-config-provider': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@aws-sdk/middleware-signing@3.598.0': + '@aws-sdk/middleware-signing@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/property-provider': 3.1.3 - '@smithy/protocol-http': 4.0.3 - '@smithy/signature-v4': 3.1.2 - '@smithy/types': 3.3.0 - '@smithy/util-middleware': 3.0.3 - tslib: 2.6.3 + '@aws-sdk/types': 3.577.0 + '@smithy/property-provider': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/signature-v4': 3.0.0 + '@smithy/types': 3.0.0 + '@smithy/util-middleware': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/middleware-ssec@3.598.0': + '@aws-sdk/middleware-ssec@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.577.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/middleware-user-agent@3.598.0': + '@aws-sdk/middleware-user-agent@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@aws-sdk/util-endpoints': 3.598.0 - '@smithy/protocol-http': 4.0.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.577.0 + '@aws-sdk/util-endpoints': 3.577.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/region-config-resolver@3.598.0': + '@aws-sdk/region-config-resolver@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/node-config-provider': 3.1.3 - '@smithy/types': 3.3.0 + '@aws-sdk/types': 3.577.0 + '@smithy/node-config-provider': 3.0.0 + '@smithy/types': 3.0.0 '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.3 - tslib: 2.6.3 + '@smithy/util-middleware': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/signature-v4-multi-region@3.598.0': + '@aws-sdk/signature-v4-multi-region@3.577.0': dependencies: - '@aws-sdk/middleware-sdk-s3': 3.598.0 - '@aws-sdk/types': 3.598.0 - '@smithy/protocol-http': 4.0.3 - '@smithy/signature-v4': 3.1.2 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/middleware-sdk-s3': 3.577.0 + '@aws-sdk/types': 3.577.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/signature-v4': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/token-providers@3.598.0(@aws-sdk/client-sso-oidc@3.606.0)': + '@aws-sdk/token-providers@3.577.0(@aws-sdk/client-sso-oidc@3.577.0)': dependencies: - '@aws-sdk/client-sso-oidc': 3.606.0(@aws-sdk/client-sts@3.606.0) - '@aws-sdk/types': 3.598.0 - '@smithy/property-provider': 3.1.3 - '@smithy/shared-ini-file-loader': 3.1.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/client-sso-oidc': 3.577.0 + '@aws-sdk/types': 3.577.0 + '@smithy/property-provider': 3.0.0 + '@smithy/shared-ini-file-loader': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/types@3.598.0': + '@aws-sdk/types@3.577.0': dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 '@aws-sdk/util-arn-parser@3.568.0': dependencies: - tslib: 2.6.3 + tslib: 2.6.2 - '@aws-sdk/util-endpoints@3.598.0': + '@aws-sdk/util-endpoints@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/types': 3.3.0 - '@smithy/util-endpoints': 2.0.4 - tslib: 2.6.3 + '@aws-sdk/types': 3.577.0 + '@smithy/types': 3.0.0 + '@smithy/util-endpoints': 2.0.0 + tslib: 2.6.2 '@aws-sdk/util-locate-window@3.568.0': dependencies: - tslib: 2.6.3 + tslib: 2.6.2 - '@aws-sdk/util-user-agent-browser@3.598.0': + '@aws-sdk/util-user-agent-browser@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/types': 3.3.0 + '@aws-sdk/types': 3.577.0 + '@smithy/types': 3.0.0 bowser: 2.11.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@aws-sdk/util-user-agent-node@3.598.0': + '@aws-sdk/util-user-agent-node@3.577.0': dependencies: - '@aws-sdk/types': 3.598.0 - '@smithy/node-config-provider': 3.1.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.577.0 + '@smithy/node-config-provider': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@aws-sdk/xml-builder@3.598.0': + '@aws-sdk/util-utf8-browser@3.259.0': dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@babel/code-frame@7.24.7': + '@aws-sdk/xml-builder@3.575.0': dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.0.1 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@babel/compat-data@7.24.7': {} + '@babel/code-frame@7.23.5': + dependencies: + '@babel/highlight': 7.23.4 + chalk: 2.4.2 - '@babel/compat-data@7.25.2': {} + '@babel/code-frame@7.24.2': + dependencies: + '@babel/highlight': 7.24.5 + picocolors: 1.0.0 - '@babel/core@7.24.7': + '@babel/code-frame@7.24.7': dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) - '@babel/helpers': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - convert-source-map: 2.0.0 - debug: 4.3.5 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@babel/highlight': 7.24.7 + picocolors: 1.0.0 + + '@babel/compat-data@7.25.4': {} '@babel/core@7.25.2': dependencies: - '@ampproject/remapping': 2.3.0 + '@ampproject/remapping': 2.2.1 '@babel/code-frame': 7.24.7 - '@babel/generator': 7.25.0 + '@babel/generator': 7.25.6 '@babel/helper-compilation-targets': 7.25.2 '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) - '@babel/helpers': 7.25.0 - '@babel/parser': 7.25.3 + '@babel/helpers': 7.25.6 + '@babel/parser': 7.25.6 '@babel/template': 7.25.0 - '@babel/traverse': 7.25.3 - '@babel/types': 7.25.2 + '@babel/traverse': 7.25.6 + '@babel/types': 7.25.6 convert-source-map: 2.0.0 - debug: 4.3.6 + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/generator@7.24.7': + '@babel/generator@7.25.6': dependencies: - '@babel/types': 7.24.7 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 - - '@babel/generator@7.25.0': - dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.25.6 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 '@babel/helper-annotate-as-pure@7.24.7': dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/types': 7.25.6 - '@babel/helper-compilation-targets@7.24.7': + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': dependencies: - '@babel/compat-data': 7.24.7 - '@babel/helper-validator-option': 7.24.7 - browserslist: 4.23.1 - lru-cache: 5.1.1 - semver: 6.3.1 + '@babel/types': 7.25.6 '@babel/helper-compilation-targets@7.25.2': dependencies: - '@babel/compat-data': 7.25.2 + '@babel/compat-data': 7.25.4 '@babel/helper-validator-option': 7.24.8 - browserslist: 4.23.1 + browserslist: 4.23.3 lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.25.2)': + '@babel/helper-create-class-features-plugin@7.23.10(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.25.2) - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - regexpu-core: 5.3.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.25.2) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.24.5 semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.25.2)': + '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 '@babel/helper-annotate-as-pure': 7.24.7 regexpu-core: 5.3.2 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - debug: 4.3.5 - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - - '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2)': + '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - debug: 4.3.5 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + debug: 4.3.7 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: - supports-color - '@babel/helper-environment-visitor@7.24.7': + '@babel/helper-environment-visitor@7.22.20': {} + + '@babel/helper-function-name@7.23.0': dependencies: - '@babel/types': 7.24.7 + '@babel/template': 7.25.0 + '@babel/types': 7.25.6 - '@babel/helper-function-name@7.24.7': + '@babel/helper-hoist-variables@7.22.5': dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.7 + '@babel/types': 7.25.6 - '@babel/helper-hoist-variables@7.24.7': + '@babel/helper-member-expression-to-functions@7.23.0': dependencies: - '@babel/types': 7.24.7 + '@babel/types': 7.25.6 - '@babel/helper-member-expression-to-functions@7.24.7': + '@babel/helper-module-imports@7.22.15': dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/types': 7.23.9 '@babel/helper-module-imports@7.24.7': dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 + '@babel/traverse': 7.25.6 + '@babel/types': 7.25.6 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)': + '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 + '@babel/core': 7.25.2 '@babel/helper-module-imports': 7.24.7 '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 '@babel/helper-validator-identifier': 7.24.7 + '@babel/traverse': 7.25.6 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.24.7(@babel/core@7.25.2)': + '@babel/helper-optimise-call-expression@7.22.5': dependencies: - '@babel/core': 7.25.2 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - '@babel/traverse': 7.25.3 - transitivePeerDependencies: - - supports-color - - '@babel/helper-optimise-call-expression@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-plugin-utils@7.24.7': {} + '@babel/types': 7.25.6 '@babel/helper-plugin-utils@7.24.8': {} - '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-wrap-function': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.25.2)': + '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-wrap-function': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 - '@babel/helper-replace-supers@7.24.7(@babel/core@7.25.2)': + '@babel/helper-replace-supers@7.22.20(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-simple-access@7.24.7': dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 + '@babel/traverse': 7.25.6 + '@babel/types': 7.25.6 transitivePeerDependencies: - supports-color - '@babel/helper-skip-transparent-expression-wrappers@7.24.7': + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/types': 7.25.6 - '@babel/helper-split-export-declaration@7.24.7': + '@babel/helper-split-export-declaration@7.24.5': dependencies: - '@babel/types': 7.24.7 + '@babel/types': 7.25.6 - '@babel/helper-string-parser@7.24.7': {} + '@babel/helper-string-parser@7.23.4': {} '@babel/helper-string-parser@7.24.8': {} - '@babel/helper-validator-identifier@7.24.7': {} + '@babel/helper-validator-identifier@7.22.20': {} - '@babel/helper-validator-option@7.24.7': {} + '@babel/helper-validator-identifier@7.24.5': {} - '@babel/helper-validator-option@7.24.8': {} + '@babel/helper-validator-identifier@7.24.7': {} - '@babel/helper-wrap-function@7.24.7': - dependencies: - '@babel/helper-function-name': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/helper-validator-option@7.24.8': {} - '@babel/helpers@7.24.7': + '@babel/helper-wrap-function@7.22.20': dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.7 + '@babel/helper-function-name': 7.23.0 + '@babel/template': 7.25.0 + '@babel/types': 7.25.6 - '@babel/helpers@7.25.0': + '@babel/helpers@7.25.6': dependencies: '@babel/template': 7.25.0 - '@babel/types': 7.25.2 + '@babel/types': 7.25.6 - '@babel/highlight@7.24.7': + '@babel/highlight@7.23.4': dependencies: - '@babel/helper-validator-identifier': 7.24.7 + '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 - picocolors: 1.0.1 - '@babel/parser@7.24.7': + '@babel/highlight@7.24.5': dependencies: - '@babel/types': 7.24.7 + '@babel/helper-validator-identifier': 7.24.5 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.0 - '@babel/parser@7.25.3': + '@babel/highlight@7.24.7': dependencies: - '@babel/types': 7.25.2 + '@babel/helper-validator-identifier': 7.24.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.0 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)': + '@babel/parser@7.23.9': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/types': 7.23.9 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.25.2)': + '@babel/parser@7.24.5': dependencies: - '@babel/core': 7.25.2 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/types': 7.25.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)': + '@babel/parser@7.25.6': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/types': 7.25.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.25.2) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.25.2) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.25.2) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.25.2) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2) - transitivePeerDependencies: - - supports-color '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.8 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 + '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.25.2) '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.25.2)': + '@babel/plugin-proposal-export-default-from@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2) + '@babel/plugin-syntax-export-default-from': 7.23.3(@babel/core@7.25.2) '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.2)': dependencies: @@ -12616,12 +13823,12 @@ snapshots: '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.25.2)': dependencies: - '@babel/compat-data': 7.25.2 + '@babel/compat-data': 7.25.4 '@babel/core': 7.25.2 '@babel/helper-compilation-targets': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.25.2) '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.25.2)': dependencies: @@ -12633,781 +13840,383 @@ snapshots: dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-syntax-export-default-from@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.25.2) + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.25.2) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2) - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.2 '@babel/helper-module-imports': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.25.2) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.25.2) - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/core': 7.25.2 + '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2) - '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-classes@7.23.8(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.25.2) + '@babel/helper-split-export-declaration': 7.24.5 + globals: 11.12.0 - '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/template': 7.25.0 - '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color + '@babel/core': 7.25.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2) - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) - '@babel/helper-split-export-declaration': 7.24.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2) - '@babel/plugin-transform-classes@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.25.2) - '@babel/helper-split-export-declaration': 7.24.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/template': 7.24.7 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2) - '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/template': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.25.2) - '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2) - '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-literals@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2) - '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) + '@babel/core': 7.25.2 + '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2) + '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-simple-access': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/core': 7.25.2 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-validator-identifier': 7.24.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7) + '@babel/core': 7.25.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7) + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2) - '@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2) - '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/compat-data': 7.25.4 + '@babel/core': 7.25.2 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.25.2) - '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.25.2) - '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2) - '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2) - '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7) + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2) + '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/core': 7.25.2 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2) - '@babel/plugin-transform-literals@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)': + '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2) - - '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-hoist-variables': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-hoist-variables': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - - '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2) - - '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7) - - '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2) - - '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - - '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2) - - '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.25.2) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7) - - '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2) - - '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.8 - - '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 @@ -13419,272 +14228,108 @@ snapshots: '@babel/helper-module-imports': 7.24.7 '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) - '@babel/types': 7.25.2 + '@babel/types': 7.25.6 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - regenerator-transform: 0.15.2 - - '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-runtime@7.23.9(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 '@babel/helper-module-imports': 7.24.7 '@babel/helper-plugin-utils': 7.24.8 - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.25.2) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2) + babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.25.2) + babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.25.2) + babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.25.2) semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-spread@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-typescript@7.23.6(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.2) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.25.2) - '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/preset-env@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/compat-data': 7.24.7 - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-validator-option': 7.24.7 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.7) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.7) - '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-classes': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-destructuring': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-typeof-symbol': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.7) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.7) - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.7) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7) - core-js-compat: 3.37.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 - '@babel/preset-env@7.24.7(@babel/core@7.25.2)': + '@babel/preset-env@7.23.9(@babel/core@7.25.2)': dependencies: - '@babel/compat-data': 7.24.7 + '@babel/compat-data': 7.25.4 '@babel/core': 7.25.2 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-validator-option': 7.24.7 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.25.2) + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-validator-option': 7.24.8 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.25.2) '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2) '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2) '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2) '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2) - '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.25.2) '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2) '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2) '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2) @@ -13696,123 +14341,89 @@ snapshots: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2) '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2) - '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-classes': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-destructuring': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-typeof-symbol': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.25.2) + '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.25.2) + '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.25.2) + '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.25.2) + '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.25.2) + '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.25.2) '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2) - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.25.2) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2) - core-js-compat: 3.37.1 + babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.25.2) + babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.25.2) + babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.25.2) + core-js-compat: 3.36.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/preset-flow@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-validator-option': 7.24.7 - '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.24.7) - - '@babel/preset-flow@7.24.7(@babel/core@7.25.2)': + '@babel/preset-flow@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-validator-option': 7.24.7 - '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.25.2) - - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/types': 7.24.7 - esutils: 2.0.3 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-validator-option': 7.24.8 + '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.25.2) '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/types': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/types': 7.25.6 esutils: 2.0.3 - '@babel/preset-typescript@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-validator-option': 7.24.7 - '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - - '@babel/preset-typescript@7.24.7(@babel/core@7.25.2)': + '@babel/preset-typescript@7.23.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-validator-option': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-validator-option': 7.24.8 '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.25.2) transitivePeerDependencies: - supports-color - '@babel/register@7.24.6(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - clone-deep: 4.0.1 - find-cache-dir: 2.1.0 - make-dir: 2.1.0 - pirates: 4.0.6 - source-map-support: 0.5.21 - - '@babel/register@7.24.6(@babel/core@7.25.2)': + '@babel/register@7.23.7(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 clone-deep: 4.0.1 @@ -13823,56 +14434,35 @@ snapshots: '@babel/regjsgen@0.8.0': {} - '@babel/runtime@7.24.7': + '@babel/runtime@7.23.9': dependencies: regenerator-runtime: 0.14.1 - '@babel/template@7.24.7': - dependencies: - '@babel/code-frame': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/types': 7.24.7 - '@babel/template@7.25.0': dependencies: '@babel/code-frame': 7.24.7 - '@babel/parser': 7.25.3 - '@babel/types': 7.25.2 - - '@babel/traverse@7.24.7': - dependencies: - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-hoist-variables': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/types': 7.24.7 - debug: 4.3.5 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@babel/parser': 7.25.6 + '@babel/types': 7.25.6 - '@babel/traverse@7.25.3': + '@babel/traverse@7.25.6': dependencies: '@babel/code-frame': 7.24.7 - '@babel/generator': 7.25.0 - '@babel/parser': 7.25.3 + '@babel/generator': 7.25.6 + '@babel/parser': 7.25.6 '@babel/template': 7.25.0 - '@babel/types': 7.25.2 - debug: 4.3.6 + '@babel/types': 7.25.6 + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.24.7': + '@babel/types@7.23.9': dependencies: - '@babel/helper-string-parser': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 + '@babel/helper-string-parser': 7.23.4 + '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 - '@babel/types@7.25.2': + '@babel/types@7.25.6': dependencies: '@babel/helper-string-parser': 7.24.8 '@babel/helper-validator-identifier': 7.24.7 @@ -13886,13 +14476,12 @@ snapshots: dependencies: '@chainsafe/is-ip': 2.0.2 - '@changesets/apply-release-plan@7.0.4': + '@changesets/apply-release-plan@7.0.5': dependencies: - '@babel/runtime': 7.24.7 - '@changesets/config': 3.0.2 + '@changesets/config': 3.0.3 '@changesets/get-version-range-type': 0.4.0 - '@changesets/git': 3.0.0 - '@changesets/should-skip-package': 0.1.0 + '@changesets/git': 3.0.1 + '@changesets/should-skip-package': 0.1.1 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 detect-indent: 6.1.0 @@ -13901,132 +14490,122 @@ snapshots: outdent: 0.5.0 prettier: 2.8.8 resolve-from: 5.0.0 - semver: 7.6.3 + semver: 7.6.2 - '@changesets/assemble-release-plan@6.0.3': + '@changesets/assemble-release-plan@6.0.4': dependencies: - '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.1 - '@changesets/should-skip-package': 0.1.0 + '@changesets/get-dependents-graph': 2.1.2 + '@changesets/should-skip-package': 0.1.1 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 - semver: 7.6.3 + semver: 7.6.2 '@changesets/changelog-git@0.2.0': dependencies: '@changesets/types': 6.0.0 - '@changesets/cli@2.27.7': + '@changesets/cli@2.27.8': dependencies: - '@babel/runtime': 7.24.7 - '@changesets/apply-release-plan': 7.0.4 - '@changesets/assemble-release-plan': 6.0.3 + '@changesets/apply-release-plan': 7.0.5 + '@changesets/assemble-release-plan': 6.0.4 '@changesets/changelog-git': 0.2.0 - '@changesets/config': 3.0.2 + '@changesets/config': 3.0.3 '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.1 - '@changesets/get-release-plan': 4.0.3 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 - '@changesets/should-skip-package': 0.1.0 + '@changesets/get-dependents-graph': 2.1.2 + '@changesets/get-release-plan': 4.0.4 + '@changesets/git': 3.0.1 + '@changesets/logger': 0.1.1 + '@changesets/pre': 2.0.1 + '@changesets/read': 0.6.1 + '@changesets/should-skip-package': 0.1.1 '@changesets/types': 6.0.0 - '@changesets/write': 0.3.1 + '@changesets/write': 0.3.2 '@manypkg/get-packages': 1.1.3 - '@types/semver': 7.5.8 + '@types/semver': 7.5.7 ansi-colors: 4.1.3 - chalk: 2.4.2 ci-info: 3.9.0 enquirer: 2.4.1 external-editor: 3.1.0 fs-extra: 7.0.1 - human-id: 1.0.2 mri: 1.2.0 outdent: 0.5.0 p-limit: 2.3.0 - preferred-pm: 3.1.3 + package-manager-detector: 0.2.0 + picocolors: 1.1.0 resolve-from: 5.0.0 semver: 7.6.2 spawndamnit: 2.0.0 term-size: 2.2.1 - '@changesets/config@3.0.2': + '@changesets/config@3.0.3': dependencies: '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.1 - '@changesets/logger': 0.1.0 + '@changesets/get-dependents-graph': 2.1.2 + '@changesets/logger': 0.1.1 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 - micromatch: 4.0.7 + micromatch: 4.0.5 '@changesets/errors@0.2.0': dependencies: extendable-error: 0.1.7 - '@changesets/get-dependents-graph@2.1.1': + '@changesets/get-dependents-graph@2.1.2': dependencies: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 - chalk: 2.4.2 - fs-extra: 7.0.1 - semver: 7.6.3 + picocolors: 1.1.0 + semver: 7.6.2 - '@changesets/get-release-plan@4.0.3': + '@changesets/get-release-plan@4.0.4': dependencies: - '@babel/runtime': 7.24.7 - '@changesets/assemble-release-plan': 6.0.3 - '@changesets/config': 3.0.2 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 + '@changesets/assemble-release-plan': 6.0.4 + '@changesets/config': 3.0.3 + '@changesets/pre': 2.0.1 + '@changesets/read': 0.6.1 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 '@changesets/get-version-range-type@0.4.0': {} - '@changesets/git@3.0.0': + '@changesets/git@3.0.1': dependencies: - '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 - '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 - micromatch: 4.0.7 + micromatch: 4.0.5 spawndamnit: 2.0.0 - '@changesets/logger@0.1.0': + '@changesets/logger@0.1.1': dependencies: - chalk: 2.4.2 + picocolors: 1.1.0 '@changesets/parse@0.4.0': dependencies: '@changesets/types': 6.0.0 js-yaml: 3.14.1 - '@changesets/pre@2.0.0': + '@changesets/pre@2.0.1': dependencies: - '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 - '@changesets/read@0.6.0': + '@changesets/read@0.6.1': dependencies: - '@babel/runtime': 7.24.7 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 + '@changesets/git': 3.0.1 + '@changesets/logger': 0.1.1 '@changesets/parse': 0.4.0 '@changesets/types': 6.0.0 - chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 + picocolors: 1.1.0 - '@changesets/should-skip-package@0.1.0': + '@changesets/should-skip-package@0.1.1': dependencies: - '@babel/runtime': 7.24.7 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 @@ -14034,20 +14613,31 @@ snapshots: '@changesets/types@6.0.0': {} - '@changesets/write@0.3.1': + '@changesets/write@0.3.2': dependencies: - '@babel/runtime': 7.24.7 '@changesets/types': 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 - '@chromatic-com/storybook@1.6.0(react@18.3.1)': + '@chromatic-com/storybook@1.3.3(react@18.2.0)': + dependencies: + chromatic: 11.3.0 + filesize: 10.1.1 + jsonfile: 6.1.0 + react-confetti: 6.1.0(react@18.2.0) + strip-ansi: 7.1.0 + transitivePeerDependencies: + - '@chromatic-com/cypress' + - '@chromatic-com/playwright' + - react + + '@chromatic-com/storybook@1.9.0(react@18.2.0)': dependencies: - chromatic: 11.5.4 - filesize: 10.1.2 + chromatic: 11.10.2 + filesize: 10.1.1 jsonfile: 6.1.0 - react-confetti: 6.1.0(react@18.3.1) + react-confetti: 6.1.0(react@18.2.0) strip-ansi: 7.1.0 transitivePeerDependencies: - '@chromatic-com/cypress' @@ -14063,7 +14653,7 @@ snapshots: eth-json-rpc-filters: 6.0.1 eventemitter3: 5.0.1 keccak: 3.0.4 - preact: 10.22.1 + preact: 10.19.5 sha.js: 2.4.11 transitivePeerDependencies: - supports-color @@ -14077,7 +14667,7 @@ snapshots: eth-json-rpc-filters: 6.0.1 eventemitter3: 5.0.1 keccak: 3.0.4 - preact: 10.22.1 + preact: 10.19.5 sha.js: 2.4.11 transitivePeerDependencies: - supports-color @@ -14088,28 +14678,25 @@ snapshots: clsx: 1.2.1 eventemitter3: 5.0.1 keccak: 3.0.4 - preact: 10.22.1 + preact: 10.19.5 sha.js: 2.4.11 - '@colors/colors@1.5.0': - optional: true + '@colors/colors@1.5.0': {} '@cspotcode/source-map-support@0.8.1': dependencies: '@jridgewell/trace-mapping': 0.3.9 - '@csstools/selector-resolve-nested@1.1.0(postcss-selector-parser@6.1.0)': + '@csstools/selector-resolve-nested@1.1.0(postcss-selector-parser@6.0.15)': dependencies: - postcss-selector-parser: 6.1.0 + postcss-selector-parser: 6.0.15 - '@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.0)': + '@csstools/selector-specificity@3.0.2(postcss-selector-parser@6.0.15)': dependencies: - postcss-selector-parser: 6.1.0 + postcss-selector-parser: 6.0.15 '@ctrl/tinycolor@4.1.0': {} - '@discoveryjs/json-ext@0.5.7': {} - '@emmetio/abbreviation@2.3.3': dependencies: '@emmetio/scanner': 1.0.4 @@ -14133,26 +14720,102 @@ snapshots: '@emmetio/stream-reader@2.2.0': {} - '@emnapi/runtime@1.2.0': + '@emnapi/runtime@1.1.1': dependencies: - tslib: 2.6.3 + tslib: 2.6.2 optional: true - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': + '@emotion/babel-plugin@11.11.0': dependencies: - react: 18.3.1 + '@babel/helper-module-imports': 7.22.15 + '@babel/runtime': 7.23.9 + '@emotion/hash': 0.9.1 + '@emotion/memoize': 0.8.1 + '@emotion/serialize': 1.1.3 + babel-plugin-macros: 3.1.0 + convert-source-map: 1.9.0 + escape-string-regexp: 4.0.0 + find-root: 1.1.0 + source-map: 0.5.7 + stylis: 4.2.0 - '@esbuild/aix-ppc64@0.19.12': - optional: true + '@emotion/cache@11.11.0': + dependencies: + '@emotion/memoize': 0.8.1 + '@emotion/sheet': 1.2.2 + '@emotion/utils': 1.2.1 + '@emotion/weak-memoize': 0.3.1 + stylis: 4.2.0 - '@esbuild/aix-ppc64@0.20.2': - optional: true + '@emotion/hash@0.9.1': {} - '@esbuild/aix-ppc64@0.21.5': - optional: true + '@emotion/is-prop-valid@1.2.1': + dependencies: + '@emotion/memoize': 0.8.1 - '@esbuild/android-arm64@0.18.20': - optional: true + '@emotion/memoize@0.8.1': {} + + '@emotion/react@11.11.3(@types/react@18.3.5)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.9 + '@emotion/babel-plugin': 11.11.0 + '@emotion/cache': 11.11.0 + '@emotion/serialize': 1.1.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@emotion/utils': 1.2.1 + '@emotion/weak-memoize': 0.3.1 + hoist-non-react-statics: 3.3.2 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.3.5 + + '@emotion/serialize@1.1.3': + dependencies: + '@emotion/hash': 0.9.1 + '@emotion/memoize': 0.8.1 + '@emotion/unitless': 0.8.1 + '@emotion/utils': 1.2.1 + csstype: 3.1.3 + + '@emotion/sheet@1.2.2': {} + + '@emotion/styled@11.11.0(@emotion/react@11.11.3(@types/react@18.3.5)(react@18.2.0))(@types/react@18.3.5)(react@18.2.0)': + dependencies: + '@babel/runtime': 7.23.9 + '@emotion/babel-plugin': 11.11.0 + '@emotion/is-prop-valid': 1.2.1 + '@emotion/react': 11.11.3(@types/react@18.3.5)(react@18.2.0) + '@emotion/serialize': 1.1.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@emotion/utils': 1.2.1 + react: 18.2.0 + optionalDependencies: + '@types/react': 18.3.5 + + '@emotion/unitless@0.8.1': {} + + '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)': + dependencies: + react: 18.2.0 + + '@emotion/utils@1.2.1': {} + + '@emotion/weak-memoize@0.3.1': {} + + '@esbuild/aix-ppc64@0.19.12': + optional: true + + '@esbuild/aix-ppc64@0.20.2': + optional: true + + '@esbuild/aix-ppc64@0.21.3': + optional: true + + '@esbuild/aix-ppc64@0.21.5': + optional: true + + '@esbuild/android-arm64@0.18.20': + optional: true '@esbuild/android-arm64@0.19.12': optional: true @@ -14160,6 +14823,9 @@ snapshots: '@esbuild/android-arm64@0.20.2': optional: true + '@esbuild/android-arm64@0.21.3': + optional: true + '@esbuild/android-arm64@0.21.5': optional: true @@ -14172,6 +14838,9 @@ snapshots: '@esbuild/android-arm@0.20.2': optional: true + '@esbuild/android-arm@0.21.3': + optional: true + '@esbuild/android-arm@0.21.5': optional: true @@ -14184,6 +14853,9 @@ snapshots: '@esbuild/android-x64@0.20.2': optional: true + '@esbuild/android-x64@0.21.3': + optional: true + '@esbuild/android-x64@0.21.5': optional: true @@ -14196,6 +14868,9 @@ snapshots: '@esbuild/darwin-arm64@0.20.2': optional: true + '@esbuild/darwin-arm64@0.21.3': + optional: true + '@esbuild/darwin-arm64@0.21.5': optional: true @@ -14208,6 +14883,9 @@ snapshots: '@esbuild/darwin-x64@0.20.2': optional: true + '@esbuild/darwin-x64@0.21.3': + optional: true + '@esbuild/darwin-x64@0.21.5': optional: true @@ -14220,6 +14898,9 @@ snapshots: '@esbuild/freebsd-arm64@0.20.2': optional: true + '@esbuild/freebsd-arm64@0.21.3': + optional: true + '@esbuild/freebsd-arm64@0.21.5': optional: true @@ -14232,6 +14913,9 @@ snapshots: '@esbuild/freebsd-x64@0.20.2': optional: true + '@esbuild/freebsd-x64@0.21.3': + optional: true + '@esbuild/freebsd-x64@0.21.5': optional: true @@ -14244,6 +14928,9 @@ snapshots: '@esbuild/linux-arm64@0.20.2': optional: true + '@esbuild/linux-arm64@0.21.3': + optional: true + '@esbuild/linux-arm64@0.21.5': optional: true @@ -14256,6 +14943,9 @@ snapshots: '@esbuild/linux-arm@0.20.2': optional: true + '@esbuild/linux-arm@0.21.3': + optional: true + '@esbuild/linux-arm@0.21.5': optional: true @@ -14268,6 +14958,9 @@ snapshots: '@esbuild/linux-ia32@0.20.2': optional: true + '@esbuild/linux-ia32@0.21.3': + optional: true + '@esbuild/linux-ia32@0.21.5': optional: true @@ -14280,6 +14973,9 @@ snapshots: '@esbuild/linux-loong64@0.20.2': optional: true + '@esbuild/linux-loong64@0.21.3': + optional: true + '@esbuild/linux-loong64@0.21.5': optional: true @@ -14292,6 +14988,9 @@ snapshots: '@esbuild/linux-mips64el@0.20.2': optional: true + '@esbuild/linux-mips64el@0.21.3': + optional: true + '@esbuild/linux-mips64el@0.21.5': optional: true @@ -14304,6 +15003,9 @@ snapshots: '@esbuild/linux-ppc64@0.20.2': optional: true + '@esbuild/linux-ppc64@0.21.3': + optional: true + '@esbuild/linux-ppc64@0.21.5': optional: true @@ -14316,6 +15018,9 @@ snapshots: '@esbuild/linux-riscv64@0.20.2': optional: true + '@esbuild/linux-riscv64@0.21.3': + optional: true + '@esbuild/linux-riscv64@0.21.5': optional: true @@ -14328,6 +15033,9 @@ snapshots: '@esbuild/linux-s390x@0.20.2': optional: true + '@esbuild/linux-s390x@0.21.3': + optional: true + '@esbuild/linux-s390x@0.21.5': optional: true @@ -14340,6 +15048,9 @@ snapshots: '@esbuild/linux-x64@0.20.2': optional: true + '@esbuild/linux-x64@0.21.3': + optional: true + '@esbuild/linux-x64@0.21.5': optional: true @@ -14352,6 +15063,9 @@ snapshots: '@esbuild/netbsd-x64@0.20.2': optional: true + '@esbuild/netbsd-x64@0.21.3': + optional: true + '@esbuild/netbsd-x64@0.21.5': optional: true @@ -14364,6 +15078,9 @@ snapshots: '@esbuild/openbsd-x64@0.20.2': optional: true + '@esbuild/openbsd-x64@0.21.3': + optional: true + '@esbuild/openbsd-x64@0.21.5': optional: true @@ -14376,6 +15093,9 @@ snapshots: '@esbuild/sunos-x64@0.20.2': optional: true + '@esbuild/sunos-x64@0.21.3': + optional: true + '@esbuild/sunos-x64@0.21.5': optional: true @@ -14388,6 +15108,9 @@ snapshots: '@esbuild/win32-arm64@0.20.2': optional: true + '@esbuild/win32-arm64@0.21.3': + optional: true + '@esbuild/win32-arm64@0.21.5': optional: true @@ -14400,6 +15123,9 @@ snapshots: '@esbuild/win32-ia32@0.20.2': optional: true + '@esbuild/win32-ia32@0.21.3': + optional: true + '@esbuild/win32-ia32@0.21.5': optional: true @@ -14412,20 +15138,28 @@ snapshots: '@esbuild/win32-x64@0.20.2': optional: true + '@esbuild/win32-x64@0.21.3': + optional: true + '@esbuild/win32-x64@0.21.5': optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': + '@eslint-community/eslint-utils@4.4.0(eslint@8.55.0)': dependencies: - eslint: 8.57.0 + eslint: 8.55.0 eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.11.0': {} + '@eslint-community/eslint-utils@4.4.0(eslint@8.56.0)': + dependencies: + eslint: 8.56.0 + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.10.0': {} '@eslint/eslintrc@1.4.1': dependencies: ajv: 6.12.6 - debug: 4.3.5 + debug: 4.3.4 espree: 9.6.1 globals: 13.24.0 ignore: 5.3.1 @@ -14439,7 +15173,7 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.3.5 + debug: 4.3.4 espree: 9.6.1 globals: 13.24.0 ignore: 5.3.1 @@ -14450,7 +15184,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@8.57.0': {} + '@eslint/js@8.55.0': {} + + '@eslint/js@8.56.0': {} + + '@ethereumjs/common@2.6.5': + dependencies: + crc-32: 1.2.2 + ethereumjs-util: 7.1.5 '@ethereumjs/common@3.2.0': dependencies: @@ -14459,17 +15200,22 @@ snapshots: '@ethereumjs/rlp@4.0.1': {} + '@ethereumjs/tx@3.5.2': + dependencies: + '@ethereumjs/common': 2.6.5 + ethereumjs-util: 7.1.5 + '@ethereumjs/tx@4.2.0': dependencies: '@ethereumjs/common': 3.2.0 '@ethereumjs/rlp': 4.0.1 '@ethereumjs/util': 8.1.0 - ethereum-cryptography: 2.2.1 + ethereum-cryptography: 2.1.3 '@ethereumjs/util@8.1.0': dependencies: '@ethereumjs/rlp': 4.0.1 - ethereum-cryptography: 2.2.1 + ethereum-cryptography: 2.1.3 micro-ftch: 0.3.1 '@ethersproject/abi@5.7.0': @@ -14609,7 +15355,7 @@ snapshots: dependencies: '@ethersproject/logger': 5.7.0 - '@ethersproject/providers@5.7.2': + '@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@ethersproject/abstract-provider': 5.7.0 '@ethersproject/abstract-signer': 5.7.0 @@ -14630,7 +15376,7 @@ snapshots: '@ethersproject/transactions': 5.7.0 '@ethersproject/web': 5.7.1 bech32: 1.1.4 - ws: 7.4.6 + ws: 7.4.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate @@ -14734,8 +15480,8 @@ snapshots: hast-util-to-html: 9.0.1 hast-util-to-text: 4.0.2 hastscript: 9.0.0 - postcss: 8.4.39 - postcss-nested: 6.0.1(postcss@8.4.39) + postcss: 8.4.38 + postcss-nested: 6.0.1(postcss@8.4.38) unist-util-visit: 5.0.0 unist-util-visit-parents: 6.0.1 @@ -14746,39 +15492,37 @@ snapshots: '@expressive-code/plugin-shiki@0.35.6': dependencies: '@expressive-code/core': 0.35.6 - shiki: 1.10.0 + shiki: 1.5.2 '@expressive-code/plugin-text-markers@0.35.6': dependencies: '@expressive-code/core': 0.35.6 - '@fal-works/esbuild-plugin-global-externals@2.1.2': {} + '@fastify/busboy@2.1.0': {} - '@fastify/busboy@2.1.1': {} - - '@formatjs/ecma402-abstract@2.0.0': + '@formatjs/ecma402-abstract@1.18.2': dependencies: '@formatjs/intl-localematcher': 0.5.4 - tslib: 2.6.3 + tslib: 2.6.2 '@formatjs/fast-memoize@2.2.0': dependencies: - tslib: 2.6.3 + tslib: 2.6.2 - '@formatjs/icu-messageformat-parser@2.7.8': + '@formatjs/icu-messageformat-parser@2.7.6': dependencies: - '@formatjs/ecma402-abstract': 2.0.0 - '@formatjs/icu-skeleton-parser': 1.8.2 - tslib: 2.6.3 + '@formatjs/ecma402-abstract': 1.18.2 + '@formatjs/icu-skeleton-parser': 1.8.0 + tslib: 2.6.2 - '@formatjs/icu-skeleton-parser@1.8.2': + '@formatjs/icu-skeleton-parser@1.8.0': dependencies: - '@formatjs/ecma402-abstract': 2.0.0 - tslib: 2.6.3 + '@formatjs/ecma402-abstract': 1.18.2 + tslib: 2.6.2 '@formatjs/intl-localematcher@0.5.4': dependencies: - tslib: 2.6.3 + tslib: 2.6.2 '@hapi/hoek@9.3.0': {} @@ -14786,10 +15530,18 @@ snapshots: dependencies: '@hapi/hoek': 9.3.0 + '@humanwhocodes/config-array@0.11.13': + dependencies: + '@humanwhocodes/object-schema': 2.0.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + '@humanwhocodes/config-array@0.11.14': dependencies: - '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.5 + '@humanwhocodes/object-schema': 2.0.2 + debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -14797,7 +15549,7 @@ snapshots: '@humanwhocodes/config-array@0.9.5': dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.5 + debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -14808,14 +15560,16 @@ snapshots: '@humanwhocodes/object-schema@1.2.1': {} - '@humanwhocodes/object-schema@2.0.3': {} + '@humanwhocodes/object-schema@2.0.1': {} - '@img/sharp-darwin-arm64@0.33.4': + '@humanwhocodes/object-schema@2.0.2': {} + + '@img/sharp-darwin-arm64@0.33.3': optionalDependencies: '@img/sharp-libvips-darwin-arm64': 1.0.2 optional: true - '@img/sharp-darwin-x64@0.33.4': + '@img/sharp-darwin-x64@0.33.3': optionalDependencies: '@img/sharp-libvips-darwin-x64': 1.0.2 optional: true @@ -14844,60 +15598,62 @@ snapshots: '@img/sharp-libvips-linuxmusl-x64@1.0.2': optional: true - '@img/sharp-linux-arm64@0.33.4': + '@img/sharp-linux-arm64@0.33.3': optionalDependencies: '@img/sharp-libvips-linux-arm64': 1.0.2 optional: true - '@img/sharp-linux-arm@0.33.4': + '@img/sharp-linux-arm@0.33.3': optionalDependencies: '@img/sharp-libvips-linux-arm': 1.0.2 optional: true - '@img/sharp-linux-s390x@0.33.4': + '@img/sharp-linux-s390x@0.33.3': optionalDependencies: '@img/sharp-libvips-linux-s390x': 1.0.2 optional: true - '@img/sharp-linux-x64@0.33.4': + '@img/sharp-linux-x64@0.33.3': optionalDependencies: '@img/sharp-libvips-linux-x64': 1.0.2 optional: true - '@img/sharp-linuxmusl-arm64@0.33.4': + '@img/sharp-linuxmusl-arm64@0.33.3': optionalDependencies: '@img/sharp-libvips-linuxmusl-arm64': 1.0.2 optional: true - '@img/sharp-linuxmusl-x64@0.33.4': + '@img/sharp-linuxmusl-x64@0.33.3': optionalDependencies: '@img/sharp-libvips-linuxmusl-x64': 1.0.2 optional: true - '@img/sharp-wasm32@0.33.4': + '@img/sharp-wasm32@0.33.3': dependencies: - '@emnapi/runtime': 1.2.0 + '@emnapi/runtime': 1.1.1 optional: true - '@img/sharp-win32-ia32@0.33.4': + '@img/sharp-win32-ia32@0.33.3': optional: true - '@img/sharp-win32-x64@0.33.4': + '@img/sharp-win32-x64@0.33.3': optional: true - '@ipld/dag-cbor@9.2.1': + '@ioredis/commands@1.2.0': {} + + '@ipld/dag-cbor@9.2.0': dependencies: - cborg: 4.2.2 - multiformats: 13.1.3 + cborg: 4.2.0 + multiformats: 13.1.0 - '@ipld/dag-json@10.2.2': + '@ipld/dag-json@10.2.0': dependencies: - cborg: 4.2.2 - multiformats: 13.1.3 + cborg: 4.2.0 + multiformats: 13.1.0 - '@ipld/dag-pb@4.1.2': + '@ipld/dag-pb@4.1.0': dependencies: - multiformats: 13.1.3 + multiformats: 13.1.0 '@isaacs/cliui@8.0.2': dependencies: @@ -14920,7 +15676,7 @@ snapshots: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.9 + '@types/node': 20.12.7 jest-mock: 29.7.0 '@jest/expect-utils@29.7.0': @@ -14931,7 +15687,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 20.14.9 + '@types/node': 20.12.7 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -14944,7 +15700,7 @@ snapshots: dependencies: '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 20.14.9 + '@types/node': 20.12.7 '@types/yargs': 15.0.19 chalk: 4.1.2 @@ -14953,10 +15709,16 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 20.14.9 + '@types/node': 20.12.7 '@types/yargs': 17.0.32 chalk: 4.1.2 + '@jridgewell/gen-mapping@0.3.3': + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/gen-mapping@0.3.5': dependencies: '@jridgewell/set-array': 1.2.1 @@ -14965,9 +15727,11 @@ snapshots: '@jridgewell/resolve-uri@3.1.2': {} + '@jridgewell/set-array@1.1.2': {} + '@jridgewell/set-array@1.2.1': {} - '@jridgewell/source-map@0.3.6': + '@jridgewell/source-map@0.3.5': dependencies: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 @@ -14994,7 +15758,7 @@ snapshots: dependencies: '@libp2p/interface-peer-id': 2.0.2 '@libp2p/interfaces': 3.3.2 - '@multiformats/multiaddr': 12.3.0 + '@multiformats/multiaddr': 12.2.1 it-stream-types: 1.0.5 uint8arraylist: 2.4.8 @@ -15010,7 +15774,7 @@ snapshots: '@libp2p/interface-peer-info@1.0.10': dependencies: '@libp2p/interface-peer-id': 2.0.2 - '@multiformats/multiaddr': 12.3.0 + '@multiformats/multiaddr': 12.2.1 '@libp2p/interface-pubsub@3.0.7': dependencies: @@ -15020,12 +15784,12 @@ snapshots: it-pushable: 3.2.3 uint8arraylist: 2.4.8 - '@libp2p/interface@1.5.0': + '@libp2p/interface@1.3.0': dependencies: - '@multiformats/multiaddr': 12.3.0 + '@multiformats/multiaddr': 12.2.1 it-pushable: 3.2.3 it-stream-types: 2.0.1 - multiformats: 13.1.3 + multiformats: 13.1.0 progress-events: 1.0.0 uint8arraylist: 2.4.8 @@ -15034,8 +15798,8 @@ snapshots: '@libp2p/logger@2.1.1': dependencies: '@libp2p/interface-peer-id': 2.0.2 - '@multiformats/multiaddr': 12.3.0 - debug: 4.3.5 + '@multiformats/multiaddr': 12.2.1 + debug: 4.3.4 interface-datastore: 8.2.11 multiformats: 11.0.2 transitivePeerDependencies: @@ -15060,14 +15824,14 @@ snapshots: '@manypkg/find-root@1.1.0': dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.9 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 '@manypkg/get-packages@1.1.3': dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.9 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -15098,41 +15862,64 @@ snapshots: unist-util-position-from-estree: 2.0.0 unist-util-stringify-position: 4.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.2 + vfile: 6.0.3 transitivePeerDependencies: - supports-color - '@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.3.1)': + '@mdx-js/react@3.0.1(@types/react@18.3.5)(react@18.2.0)': dependencies: '@types/mdx': 2.0.13 - '@types/react': 18.3.3 - react: 18.3.1 + '@types/react': 18.3.5 + react: 18.2.0 '@metamask/eth-json-rpc-provider@1.0.1': dependencies: - '@metamask/json-rpc-engine': 7.3.3 - '@metamask/safe-event-emitter': 3.1.1 + '@metamask/json-rpc-engine': 7.3.2 + '@metamask/safe-event-emitter': 3.0.0 '@metamask/utils': 5.0.2 transitivePeerDependencies: - supports-color - '@metamask/json-rpc-engine@7.3.3': + '@metamask/json-rpc-engine@7.3.2': + dependencies: + '@metamask/rpc-errors': 6.1.0 + '@metamask/safe-event-emitter': 3.0.0 + '@metamask/utils': 8.3.0 + transitivePeerDependencies: + - supports-color + + '@metamask/json-rpc-engine@8.0.2': dependencies: - '@metamask/rpc-errors': 6.3.0 + '@metamask/rpc-errors': 6.2.1 '@metamask/safe-event-emitter': 3.1.1 - '@metamask/utils': 8.5.0 + '@metamask/utils': 8.3.0 transitivePeerDependencies: - supports-color '@metamask/json-rpc-middleware-stream@6.0.2': dependencies: - '@metamask/json-rpc-engine': 7.3.3 + '@metamask/json-rpc-engine': 7.3.2 + '@metamask/safe-event-emitter': 3.0.0 + '@metamask/utils': 8.3.0 + readable-stream: 3.6.2 + transitivePeerDependencies: + - supports-color + + '@metamask/json-rpc-middleware-stream@7.0.2': + dependencies: + '@metamask/json-rpc-engine': 8.0.2 '@metamask/safe-event-emitter': 3.1.1 - '@metamask/utils': 8.5.0 + '@metamask/utils': 8.3.0 readable-stream: 3.6.2 transitivePeerDependencies: - supports-color + '@metamask/object-multiplex@1.3.0': + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + readable-stream: 2.3.8 + '@metamask/object-multiplex@2.0.0': dependencies: once: 1.4.0 @@ -15142,14 +15929,53 @@ snapshots: dependencies: bowser: 2.11.0 + '@metamask/post-message-stream@6.2.0': + dependencies: + '@metamask/utils': 5.0.2 + readable-stream: 2.3.3 + transitivePeerDependencies: + - supports-color + + '@metamask/providers@10.2.1': + dependencies: + '@metamask/object-multiplex': 1.3.0 + '@metamask/safe-event-emitter': 2.0.0 + '@types/chrome': 0.0.136 + detect-browser: 5.3.0 + eth-rpc-errors: 4.0.3 + extension-port-stream: 2.1.1 + fast-deep-equal: 2.0.1 + is-stream: 2.0.1 + json-rpc-engine: 6.1.0 + json-rpc-middleware-stream: 4.2.3 + pump: 3.0.0 + webextension-polyfill-ts: 0.25.0 + '@metamask/providers@15.0.0': dependencies: - '@metamask/json-rpc-engine': 7.3.3 + '@metamask/json-rpc-engine': 7.3.2 '@metamask/json-rpc-middleware-stream': 6.0.2 '@metamask/object-multiplex': 2.0.0 - '@metamask/rpc-errors': 6.3.0 + '@metamask/rpc-errors': 6.2.1 + '@metamask/safe-event-emitter': 3.0.0 + '@metamask/utils': 8.3.0 + detect-browser: 5.3.0 + extension-port-stream: 3.0.0 + fast-deep-equal: 3.1.3 + is-stream: 2.0.1 + readable-stream: 3.6.2 + webextension-polyfill: 0.10.0 + transitivePeerDependencies: + - supports-color + + '@metamask/providers@16.1.0': + dependencies: + '@metamask/json-rpc-engine': 8.0.2 + '@metamask/json-rpc-middleware-stream': 7.0.2 + '@metamask/object-multiplex': 2.0.0 + '@metamask/rpc-errors': 6.2.1 '@metamask/safe-event-emitter': 3.1.1 - '@metamask/utils': 8.5.0 + '@metamask/utils': 8.3.0 detect-browser: 5.3.0 extension-port-stream: 3.0.0 fast-deep-equal: 3.1.3 @@ -15159,73 +15985,152 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/rpc-errors@6.3.0': + '@metamask/rpc-errors@6.1.0': + dependencies: + '@metamask/utils': 8.3.0 + fast-safe-stringify: 2.1.1 + transitivePeerDependencies: + - supports-color + + '@metamask/rpc-errors@6.2.1': dependencies: - '@metamask/utils': 8.5.0 + '@metamask/utils': 8.3.0 fast-safe-stringify: 2.1.1 transitivePeerDependencies: - supports-color '@metamask/safe-event-emitter@2.0.0': {} + '@metamask/safe-event-emitter@3.0.0': {} + '@metamask/safe-event-emitter@3.1.1': {} - '@metamask/sdk-communication-layer@0.20.2(cross-fetch@4.0.0)(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5)': + '@metamask/sdk-communication-layer@0.14.3(encoding@0.1.13)': + dependencies: + bufferutil: 4.0.8 + cross-fetch: 3.1.8(encoding@0.1.13) + date-fns: 2.30.0 + eciesjs: 0.3.18 + eventemitter2: 6.4.9 + socket.io-client: 4.7.4(bufferutil@4.0.8)(utf-8-validate@6.0.3) + utf-8-validate: 6.0.3 + uuid: 8.3.2 + transitivePeerDependencies: + - encoding + - supports-color + + '@metamask/sdk-communication-layer@0.20.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))': dependencies: bufferutil: 4.0.8 - cross-fetch: 4.0.0 + cross-fetch: 4.0.0(encoding@0.1.13) date-fns: 2.30.0 - debug: 4.3.5 - eciesjs: 0.3.19 + debug: 4.3.4 + eciesjs: 0.3.18 eventemitter2: 6.4.9 readable-stream: 3.6.2 - socket.io-client: 4.7.5 - utf-8-validate: 6.0.4 + socket.io-client: 4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + utf-8-validate: 6.0.3 uuid: 8.3.2 transitivePeerDependencies: - supports-color - '@metamask/sdk-communication-layer@0.26.4(cross-fetch@4.0.0)(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5)': + '@metamask/sdk-communication-layer@0.28.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))': dependencies: bufferutil: 4.0.8 - cross-fetch: 4.0.0 + cross-fetch: 4.0.0(encoding@0.1.13) date-fns: 2.30.0 - debug: 4.3.5 - eciesjs: 0.3.19 + debug: 4.3.4 + eciesjs: 0.3.18 eventemitter2: 6.4.9 readable-stream: 3.6.2 - socket.io-client: 4.7.5 + socket.io-client: 4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) utf-8-validate: 5.0.10 uuid: 8.3.2 transitivePeerDependencies: - supports-color - '@metamask/sdk-install-modal-web@0.20.2(i18next@22.5.1)(react-i18next@13.5.0)(react-native@0.74.3)(react@18.3.1)': + '@metamask/sdk-install-modal-web@0.14.1(@types/react@18.3.5)(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))': + dependencies: + '@emotion/react': 11.11.3(@types/react@18.3.5)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.3(@types/react@18.3.5)(react@18.2.0))(@types/react@18.3.5)(react@18.2.0) + i18next: 22.5.1 + qr-code-styling: 1.6.0-rc.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-i18next: 13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + transitivePeerDependencies: + - '@types/react' + - react-native + + '@metamask/sdk-install-modal-web@0.20.2(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': dependencies: i18next: 22.5.1 qr-code-styling: 1.6.0-rc.1 - react: 18.3.1 - react-i18next: 13.5.0(i18next@22.5.1)(react-native@0.74.3)(react@18.3.1) - react-native: 0.74.3(@babel/core@7.25.2)(@babel/preset-env@7.24.7)(react@18.3.1) + react-i18next: 13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + optionalDependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-native: 0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) - '@metamask/sdk-install-modal-web@0.26.4(i18next@23.11.5)(react-native@0.74.3)(react@18.3.1)': + '@metamask/sdk-install-modal-web@0.28.1(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': dependencies: i18next: 23.11.5 qr-code-styling: 1.6.0-rc.1 - react: 18.3.1 - react-native: 0.74.3(@babel/core@7.25.2)(@babel/preset-env@7.24.7)(react@18.3.1) + optionalDependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-native: 0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + + '@metamask/sdk@0.14.3(@types/react@18.3.5)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(utf-8-validate@5.0.10)': + dependencies: + '@metamask/onboarding': 1.0.1 + '@metamask/post-message-stream': 6.2.0 + '@metamask/providers': 10.2.1 + '@metamask/sdk-communication-layer': 0.14.3(encoding@0.1.13) + '@metamask/sdk-install-modal-web': 0.14.1(@types/react@18.3.5)(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)) + '@react-native-async-storage/async-storage': 1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)) + '@types/dom-screen-wake-lock': 1.0.3 + bowser: 2.11.0 + cross-fetch: 4.0.0(encoding@0.1.13) + eciesjs: 0.3.18 + eth-rpc-errors: 4.0.3 + eventemitter2: 6.4.9 + extension-port-stream: 2.1.1 + i18next: 22.5.1 + i18next-browser-languagedetector: 7.2.0 + obj-multiplex: 1.0.0 + pump: 3.0.0 + qrcode-terminal-nooctal: 0.12.1 + react-i18next: 13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + react-native-webview: 11.26.1(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + readable-stream: 2.3.8 + rollup-plugin-visualizer: 5.12.0(rollup@4.21.3) + socket.io-client: 4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + util: 0.12.5 + uuid: 8.3.2 + optionalDependencies: + react: 18.2.0 + react-native: 0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - '@types/react' + - bufferutil + - encoding + - react-dom + - rollup + - supports-color + - utf-8-validate - '@metamask/sdk@0.20.3(react-i18next@13.5.0)(react-native@0.74.3)(react@18.3.1)': + '@metamask/sdk@0.20.3(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(utf-8-validate@5.0.10)': dependencies: '@metamask/onboarding': 1.0.1 '@metamask/providers': 15.0.0 - '@metamask/sdk-communication-layer': 0.20.2(cross-fetch@4.0.0)(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5) - '@metamask/sdk-install-modal-web': 0.20.2(i18next@22.5.1)(react-i18next@13.5.0)(react-native@0.74.3)(react@18.3.1) + '@metamask/sdk-communication-layer': 0.20.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@metamask/sdk-install-modal-web': 0.20.2(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) '@types/dom-screen-wake-lock': 1.0.3 bowser: 2.11.0 - cross-fetch: 4.0.0 - debug: 4.3.5 - eciesjs: 0.3.19 + cross-fetch: 4.0.0(encoding@0.1.13) + debug: 4.3.4 + eciesjs: 0.3.18 eth-rpc-errors: 4.0.3 eventemitter2: 6.4.9 i18next: 22.5.1 @@ -15233,13 +16138,15 @@ snapshots: obj-multiplex: 1.0.0 pump: 3.0.0 qrcode-terminal-nooctal: 0.12.1 - react: 18.3.1 - react-native-webview: 11.26.1(react-native@0.74.3)(react@18.3.1) + react-native-webview: 11.26.1(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) readable-stream: 3.6.2 - rollup-plugin-visualizer: 5.12.0 - socket.io-client: 4.7.5 + rollup-plugin-visualizer: 5.12.0(rollup@4.21.3) + socket.io-client: 4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) util: 0.12.5 uuid: 8.3.2 + optionalDependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - bufferutil - encoding @@ -15249,17 +16156,18 @@ snapshots: - supports-color - utf-8-validate - '@metamask/sdk@0.26.4(react-native@0.74.3)(react@18.3.1)': + '@metamask/sdk@0.28.2(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(utf-8-validate@5.0.10)': dependencies: '@metamask/onboarding': 1.0.1 - '@metamask/providers': 15.0.0 - '@metamask/sdk-communication-layer': 0.26.4(cross-fetch@4.0.0)(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5) - '@metamask/sdk-install-modal-web': 0.26.4(i18next@23.11.5)(react-native@0.74.3)(react@18.3.1) + '@metamask/providers': 16.1.0 + '@metamask/sdk-communication-layer': 0.28.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@metamask/sdk-install-modal-web': 0.28.1(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) '@types/dom-screen-wake-lock': 1.0.3 + '@types/uuid': 10.0.0 bowser: 2.11.0 - cross-fetch: 4.0.0 - debug: 4.3.5 - eciesjs: 0.3.19 + cross-fetch: 4.0.0(encoding@0.1.13) + debug: 4.3.4 + eciesjs: 0.3.18 eth-rpc-errors: 4.0.3 eventemitter2: 6.4.9 i18next: 23.11.5 @@ -15267,13 +16175,15 @@ snapshots: obj-multiplex: 1.0.0 pump: 3.0.0 qrcode-terminal-nooctal: 0.12.1 - react: 18.3.1 - react-native-webview: 11.26.1(react-native@0.74.3)(react@18.3.1) + react-native-webview: 11.26.1(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) readable-stream: 3.6.2 - rollup-plugin-visualizer: 5.12.0 - socket.io-client: 4.7.5 + rollup-plugin-visualizer: 5.12.0(rollup@4.21.3) + socket.io-client: 4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) util: 0.12.5 uuid: 8.3.2 + optionalDependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - bufferutil - encoding @@ -15282,189 +16192,186 @@ snapshots: - supports-color - utf-8-validate - '@metamask/superstruct@3.1.0': {} - '@metamask/utils@5.0.2': dependencies: '@ethereumjs/tx': 4.2.0 '@types/debug': 4.1.12 - debug: 4.3.5 - semver: 7.6.3 - superstruct: 1.0.4 + debug: 4.3.4 + semver: 7.6.2 + superstruct: 1.0.3 transitivePeerDependencies: - supports-color - '@metamask/utils@8.5.0': + '@metamask/utils@8.3.0': dependencies: '@ethereumjs/tx': 4.2.0 - '@metamask/superstruct': 3.1.0 - '@noble/hashes': 1.4.0 - '@scure/base': 1.1.7 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.5 '@types/debug': 4.1.12 - debug: 4.3.5 - pony-cause: 2.1.11 - semver: 7.6.3 - uuid: 9.0.1 + debug: 4.3.4 + pony-cause: 2.1.10 + semver: 7.6.0 + superstruct: 1.0.3 transitivePeerDependencies: - supports-color - '@moralisweb3/api-utils@2.26.7(debug@4.3.5)': + '@moralisweb3/api-utils@2.26.2(debug@4.3.4)': dependencies: - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) - '@moralisweb3/common-evm-utils': 2.26.7(debug@4.3.5) - axios: 1.7.2(debug@4.3.5) + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) + '@moralisweb3/common-evm-utils': 2.26.2(debug@4.3.4) + axios: 1.6.7(debug@4.3.4) transitivePeerDependencies: - debug - '@moralisweb3/aptos-api@2.26.7(debug@4.3.5)': + '@moralisweb3/aptos-api@2.26.2(debug@4.3.4)': dependencies: - '@moralisweb3/api-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-aptos-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) + '@moralisweb3/api-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-aptos-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) transitivePeerDependencies: - debug - '@moralisweb3/auth@2.26.7(debug@4.3.5)': + '@moralisweb3/auth@2.26.2(debug@4.3.4)': dependencies: - '@moralisweb3/api-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-aptos-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-auth-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) - '@moralisweb3/common-evm-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-sol-utils': 2.26.7(debug@4.3.5) + '@moralisweb3/api-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-aptos-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-auth-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) + '@moralisweb3/common-evm-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-sol-utils': 2.26.2(debug@4.3.4) transitivePeerDependencies: - debug - '@moralisweb3/common-aptos-utils@2.26.7(debug@4.3.5)': + '@moralisweb3/common-aptos-utils@2.26.2(debug@4.3.4)': dependencies: - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) - '@noble/hashes': 1.4.0 + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) + '@noble/hashes': 1.3.3 transitivePeerDependencies: - debug - '@moralisweb3/common-auth-utils@2.26.7(debug@4.3.5)': + '@moralisweb3/common-auth-utils@2.26.2(debug@4.3.4)': dependencies: '@ethersproject/abi': 5.7.0 - '@moralisweb3/common-aptos-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) - '@moralisweb3/common-evm-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-sol-utils': 2.26.7(debug@4.3.5) + '@moralisweb3/common-aptos-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) + '@moralisweb3/common-evm-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-sol-utils': 2.26.2(debug@4.3.4) '@moralisweb3/streams-typings': 1.0.7 transitivePeerDependencies: - debug - '@moralisweb3/common-core@2.26.7(debug@4.3.5)': + '@moralisweb3/common-core@2.26.2(debug@4.3.4)': dependencies: - axios: 1.7.2(debug@4.3.5) + axios: 1.6.7(debug@4.3.4) transitivePeerDependencies: - debug - '@moralisweb3/common-evm-utils@2.26.7(debug@4.3.5)': + '@moralisweb3/common-evm-utils@2.26.2(debug@4.3.4)': dependencies: '@ethersproject/address': 5.7.0 '@ethersproject/bytes': 5.7.0 '@ethersproject/transactions': 5.7.0 - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) transitivePeerDependencies: - debug - '@moralisweb3/common-sol-utils@2.26.7(debug@4.3.5)': + '@moralisweb3/common-sol-utils@2.26.2(debug@4.3.4)': dependencies: - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) bn.js: 5.2.1 bs58: 5.0.0 buffer: 6.0.3 transitivePeerDependencies: - debug - '@moralisweb3/common-streams-utils@2.26.7(debug@4.3.5)': + '@moralisweb3/common-streams-utils@2.26.2(debug@4.3.4)': dependencies: '@ethersproject/abi': 5.7.0 - '@moralisweb3/common-aptos-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) - '@moralisweb3/common-evm-utils': 2.26.7(debug@4.3.5) + '@moralisweb3/common-aptos-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) + '@moralisweb3/common-evm-utils': 2.26.2(debug@4.3.4) '@moralisweb3/streams-typings': 1.0.7 transitivePeerDependencies: - debug - '@moralisweb3/evm-api@2.26.7(debug@4.3.5)': + '@moralisweb3/evm-api@2.26.2(debug@4.3.4)': dependencies: - '@moralisweb3/api-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) - '@moralisweb3/common-evm-utils': 2.26.7(debug@4.3.5) + '@moralisweb3/api-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) + '@moralisweb3/common-evm-utils': 2.26.2(debug@4.3.4) transitivePeerDependencies: - debug - '@moralisweb3/sol-api@2.26.7(debug@4.3.5)': + '@moralisweb3/sol-api@2.26.2(debug@4.3.4)': dependencies: - '@moralisweb3/api-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) - '@moralisweb3/common-sol-utils': 2.26.7(debug@4.3.5) + '@moralisweb3/api-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) + '@moralisweb3/common-sol-utils': 2.26.2(debug@4.3.4) transitivePeerDependencies: - debug '@moralisweb3/streams-typings@1.0.7': {} - '@moralisweb3/streams@2.26.7(debug@4.3.5)': + '@moralisweb3/streams@2.26.2(debug@4.3.4)': dependencies: '@ethersproject/abi': 5.7.0 '@ethersproject/bignumber': 5.7.0 '@ethersproject/sha2': 5.7.0 '@ethersproject/strings': 5.7.0 - '@moralisweb3/api-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) - '@moralisweb3/common-evm-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-streams-utils': 2.26.7(debug@4.3.5) + '@moralisweb3/api-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) + '@moralisweb3/common-evm-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-streams-utils': 2.26.2(debug@4.3.4) '@moralisweb3/streams-typings': 1.0.7 ethereumjs-util: 7.1.5 web3-eth-abi: 1.10.4 transitivePeerDependencies: - debug - '@motionone/animation@10.18.0': + '@motionone/animation@10.16.3': dependencies: - '@motionone/easing': 10.18.0 - '@motionone/types': 10.17.1 - '@motionone/utils': 10.18.0 - tslib: 2.6.3 + '@motionone/easing': 10.16.3 + '@motionone/types': 10.16.3 + '@motionone/utils': 10.16.3 + tslib: 2.6.2 - '@motionone/dom@10.18.0': + '@motionone/dom@10.16.4': dependencies: - '@motionone/animation': 10.18.0 - '@motionone/generators': 10.18.0 - '@motionone/types': 10.17.1 - '@motionone/utils': 10.18.0 + '@motionone/animation': 10.16.3 + '@motionone/generators': 10.16.4 + '@motionone/types': 10.16.3 + '@motionone/utils': 10.16.3 hey-listen: 1.0.8 - tslib: 2.6.3 + tslib: 2.6.2 - '@motionone/easing@10.18.0': + '@motionone/easing@10.16.3': dependencies: - '@motionone/utils': 10.18.0 - tslib: 2.6.3 + '@motionone/utils': 10.16.3 + tslib: 2.6.2 - '@motionone/generators@10.18.0': + '@motionone/generators@10.16.4': dependencies: - '@motionone/types': 10.17.1 - '@motionone/utils': 10.18.0 - tslib: 2.6.3 + '@motionone/types': 10.16.3 + '@motionone/utils': 10.16.3 + tslib: 2.6.2 '@motionone/svelte@10.16.4': dependencies: - '@motionone/dom': 10.18.0 - tslib: 2.6.3 + '@motionone/dom': 10.16.4 + tslib: 2.6.2 - '@motionone/types@10.17.1': {} + '@motionone/types@10.16.3': {} - '@motionone/utils@10.18.0': + '@motionone/utils@10.16.3': dependencies: - '@motionone/types': 10.17.1 + '@motionone/types': 10.16.3 hey-listen: 1.0.8 - tslib: 2.6.3 + tslib: 2.6.2 '@motionone/vue@10.16.4': dependencies: - '@motionone/dom': 10.18.0 - tslib: 2.6.3 + '@motionone/dom': 10.16.4 + tslib: 2.6.2 '@multiformats/dns@1.0.6': dependencies: @@ -15474,11 +16381,11 @@ snapshots: hashlru: 2.3.0 p-queue: 8.0.1 progress-events: 1.0.0 - uint8arrays: 5.1.0 + uint8arrays: 5.0.3 '@multiformats/multiaddr-to-uri@9.0.8': dependencies: - '@multiformats/multiaddr': 12.3.0 + '@multiformats/multiaddr': 12.2.1 '@multiformats/multiaddr@11.6.1': dependencies: @@ -15491,31 +16398,25 @@ snapshots: transitivePeerDependencies: - supports-color - '@multiformats/multiaddr@12.3.0': + '@multiformats/multiaddr@12.2.1': dependencies: '@chainsafe/is-ip': 2.0.2 '@chainsafe/netmask': 2.0.0 - '@libp2p/interface': 1.5.0 + '@libp2p/interface': 1.3.0 '@multiformats/dns': 1.0.6 - multiformats: 13.1.3 + multiformats: 13.1.0 uint8-varint: 2.0.4 - uint8arrays: 5.1.0 - - '@ndelangen/get-tarball@3.0.9': - dependencies: - gunzip-maybe: 1.4.2 - pump: 3.0.0 - tar-fs: 2.1.1 + uint8arrays: 5.0.3 '@noble/curves@1.2.0': dependencies: '@noble/hashes': 1.3.2 - '@noble/curves@1.4.0': + '@noble/curves@1.3.0': dependencies: - '@noble/hashes': 1.4.0 + '@noble/hashes': 1.3.3 - '@noble/curves@1.4.2': + '@noble/curves@1.4.0': dependencies: '@noble/hashes': 1.4.0 @@ -15523,8 +16424,12 @@ snapshots: '@noble/hashes@1.3.2': {} + '@noble/hashes@1.3.3': {} + '@noble/hashes@1.4.0': {} + '@noble/hashes@1.5.0': {} + '@noble/secp256k1@1.7.1': {} '@nodelib/fs.scandir@2.1.5': @@ -15549,98 +16454,267 @@ snapshots: '@openzeppelin/contracts@5.0.2': {} - '@openzeppelin/merkle-tree@1.0.6': + '@openzeppelin/defender-as-code@3.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)(web3-core-helpers@1.10.4)(web3-core@1.10.4(encoding@0.1.13))(web3-utils@1.10.4)(web3@1.10.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))': dependencies: - '@ethersproject/abi': 5.7.0 - ethereum-cryptography: 1.2.0 + '@openzeppelin/defender-sdk': 1.14.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)(web3-core-helpers@1.10.4)(web3-core@1.10.4(encoding@0.1.13))(web3-utils@1.10.4)(web3@1.10.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) + keccak256: 1.0.6 + lodash: 4.17.21 + prompt: 1.3.0 + transitivePeerDependencies: + - bufferutil + - debug + - encoding + - utf-8-validate + - web3 + - web3-core + - web3-core-helpers + - web3-utils - '@pagefind/darwin-arm64@1.1.0': - optional: true + '@openzeppelin/defender-sdk-account-client@1.14.4(encoding@0.1.13)': + dependencies: + '@openzeppelin/defender-sdk-base-client': 1.14.4(encoding@0.1.13) + axios: 1.7.7 + lodash: 4.17.21 + transitivePeerDependencies: + - debug + - encoding - '@pagefind/darwin-x64@1.1.0': - optional: true + '@openzeppelin/defender-sdk-action-client@1.14.4(encoding@0.1.13)': + dependencies: + '@openzeppelin/defender-sdk-base-client': 1.14.4(encoding@0.1.13) + axios: 1.7.7 + dotenv: 16.4.5 + glob: 11.0.0 + jszip: 3.10.1 + lodash: 4.17.21 + transitivePeerDependencies: + - debug + - encoding - '@pagefind/default-ui@1.1.0': {} + '@openzeppelin/defender-sdk-base-client@1.14.4(encoding@0.1.13)': + dependencies: + amazon-cognito-identity-js: 6.3.12(encoding@0.1.13) + async-retry: 1.3.3 + transitivePeerDependencies: + - encoding - '@pagefind/linux-arm64@1.1.0': - optional: true + '@openzeppelin/defender-sdk-deploy-client@1.14.4(encoding@0.1.13)': + dependencies: + '@openzeppelin/defender-sdk-base-client': 1.14.4(encoding@0.1.13) + axios: 1.7.7 + lodash: 4.17.21 + transitivePeerDependencies: + - debug + - encoding - '@pagefind/linux-x64@1.1.0': - optional: true + '@openzeppelin/defender-sdk-key-value-store-client@1.14.4(encoding@0.1.13)': + dependencies: + '@openzeppelin/defender-sdk-base-client': 1.14.4(encoding@0.1.13) + axios: 1.7.7 + fs-extra: 11.2.0 + lodash: 4.17.21 + transitivePeerDependencies: + - debug + - encoding - '@pagefind/windows-x64@1.1.0': + '@openzeppelin/defender-sdk-monitor-client@1.14.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + dependencies: + '@openzeppelin/defender-sdk-base-client': 1.14.4(encoding@0.1.13) + axios: 1.7.7 + ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + lodash: 4.17.21 + transitivePeerDependencies: + - bufferutil + - debug + - encoding + - utf-8-validate + + '@openzeppelin/defender-sdk-network-client@1.14.4(encoding@0.1.13)': + dependencies: + '@openzeppelin/defender-sdk-base-client': 1.14.4(encoding@0.1.13) + axios: 1.7.7 + lodash: 4.17.21 + transitivePeerDependencies: + - debug + - encoding + + '@openzeppelin/defender-sdk-notification-channel-client@1.14.4(encoding@0.1.13)': + dependencies: + '@openzeppelin/defender-sdk-base-client': 1.14.4(encoding@0.1.13) + axios: 1.7.7 + lodash: 4.17.21 + transitivePeerDependencies: + - debug + - encoding + + '@openzeppelin/defender-sdk-proposal-client@1.14.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + dependencies: + '@openzeppelin/defender-sdk-base-client': 1.14.4(encoding@0.1.13) + axios: 1.7.7 + ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + lodash: 4.17.21 + transitivePeerDependencies: + - bufferutil + - debug + - encoding + - utf-8-validate + + '@openzeppelin/defender-sdk-relay-client@1.14.4(encoding@0.1.13)': + dependencies: + '@openzeppelin/defender-sdk-base-client': 1.14.4(encoding@0.1.13) + axios: 1.7.7 + lodash: 4.17.21 + transitivePeerDependencies: + - debug + - encoding + + '@openzeppelin/defender-sdk-relay-signer-client@1.14.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)(web3-core-helpers@1.10.4)(web3-core@1.10.4(encoding@0.1.13))(web3-utils@1.10.4)(web3@1.10.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))': + dependencies: + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/networks': 5.7.1 + '@ethersproject/properties': 5.7.0 + '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@ethersproject/strings': 5.7.0 + '@openzeppelin/defender-sdk-base-client': 1.14.4(encoding@0.1.13) + amazon-cognito-identity-js: 6.3.12(encoding@0.1.13) + axios: 1.7.7 + ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + lodash: 4.17.21 + web3: 1.10.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-core: 1.10.4(encoding@0.1.13) + web3-core-helpers: 1.10.4 + web3-utils: 1.10.4 + transitivePeerDependencies: + - bufferutil + - debug + - encoding + - utf-8-validate + + '@openzeppelin/defender-sdk@1.14.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)(web3-core-helpers@1.10.4)(web3-core@1.10.4(encoding@0.1.13))(web3-utils@1.10.4)(web3@1.10.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))': + dependencies: + '@openzeppelin/defender-sdk-account-client': 1.14.4(encoding@0.1.13) + '@openzeppelin/defender-sdk-action-client': 1.14.4(encoding@0.1.13) + '@openzeppelin/defender-sdk-base-client': 1.14.4(encoding@0.1.13) + '@openzeppelin/defender-sdk-deploy-client': 1.14.4(encoding@0.1.13) + '@openzeppelin/defender-sdk-key-value-store-client': 1.14.4(encoding@0.1.13) + '@openzeppelin/defender-sdk-monitor-client': 1.14.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@openzeppelin/defender-sdk-network-client': 1.14.4(encoding@0.1.13) + '@openzeppelin/defender-sdk-notification-channel-client': 1.14.4(encoding@0.1.13) + '@openzeppelin/defender-sdk-proposal-client': 1.14.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@openzeppelin/defender-sdk-relay-client': 1.14.4(encoding@0.1.13) + '@openzeppelin/defender-sdk-relay-signer-client': 1.14.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)(web3-core-helpers@1.10.4)(web3-core@1.10.4(encoding@0.1.13))(web3-utils@1.10.4)(web3@1.10.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) + transitivePeerDependencies: + - bufferutil + - debug + - encoding + - utf-8-validate + - web3 + - web3-core + - web3-core-helpers + - web3-utils + + '@openzeppelin/merkle-tree@1.0.6': + dependencies: + '@ethersproject/abi': 5.7.0 + ethereum-cryptography: 1.2.0 + + '@oslojs/encoding@0.4.1': {} + + '@pagefind/darwin-arm64@1.1.0': + optional: true + + '@pagefind/darwin-x64@1.1.0': + optional: true + + '@pagefind/default-ui@1.1.0': {} + + '@pagefind/linux-arm64@1.1.0': + optional: true + + '@pagefind/linux-x64@1.1.0': + optional: true + + '@pagefind/windows-x64@1.1.0': optional: true - '@parcel/watcher-android-arm64@2.4.1': + '@parcel/watcher-android-arm64@2.4.0': optional: true - '@parcel/watcher-darwin-arm64@2.4.1': + '@parcel/watcher-darwin-arm64@2.4.0': optional: true - '@parcel/watcher-darwin-x64@2.4.1': + '@parcel/watcher-darwin-x64@2.4.0': optional: true - '@parcel/watcher-freebsd-x64@2.4.1': + '@parcel/watcher-freebsd-x64@2.4.0': optional: true - '@parcel/watcher-linux-arm-glibc@2.4.1': + '@parcel/watcher-linux-arm-glibc@2.4.0': optional: true - '@parcel/watcher-linux-arm64-glibc@2.4.1': + '@parcel/watcher-linux-arm64-glibc@2.4.0': optional: true - '@parcel/watcher-linux-arm64-musl@2.4.1': + '@parcel/watcher-linux-arm64-musl@2.4.0': optional: true - '@parcel/watcher-linux-x64-glibc@2.4.1': + '@parcel/watcher-linux-x64-glibc@2.4.0': optional: true - '@parcel/watcher-linux-x64-musl@2.4.1': + '@parcel/watcher-linux-x64-musl@2.4.0': optional: true - '@parcel/watcher-wasm@2.4.1': + '@parcel/watcher-wasm@2.4.0': dependencies: is-glob: 4.0.3 - micromatch: 4.0.7 - napi-wasm: 1.1.0 + micromatch: 4.0.5 - '@parcel/watcher-win32-arm64@2.4.1': + '@parcel/watcher-win32-arm64@2.4.0': optional: true - '@parcel/watcher-win32-ia32@2.4.1': + '@parcel/watcher-win32-ia32@2.4.0': optional: true - '@parcel/watcher-win32-x64@2.4.1': + '@parcel/watcher-win32-x64@2.4.0': optional: true - '@parcel/watcher@2.4.1': + '@parcel/watcher@2.4.0': dependencies: detect-libc: 1.0.3 is-glob: 4.0.3 - micromatch: 4.0.7 + micromatch: 4.0.5 node-addon-api: 7.1.0 optionalDependencies: - '@parcel/watcher-android-arm64': 2.4.1 - '@parcel/watcher-darwin-arm64': 2.4.1 - '@parcel/watcher-darwin-x64': 2.4.1 - '@parcel/watcher-freebsd-x64': 2.4.1 - '@parcel/watcher-linux-arm-glibc': 2.4.1 - '@parcel/watcher-linux-arm64-glibc': 2.4.1 - '@parcel/watcher-linux-arm64-musl': 2.4.1 - '@parcel/watcher-linux-x64-glibc': 2.4.1 - '@parcel/watcher-linux-x64-musl': 2.4.1 - '@parcel/watcher-win32-arm64': 2.4.1 - '@parcel/watcher-win32-ia32': 2.4.1 - '@parcel/watcher-win32-x64': 2.4.1 + '@parcel/watcher-android-arm64': 2.4.0 + '@parcel/watcher-darwin-arm64': 2.4.0 + '@parcel/watcher-darwin-x64': 2.4.0 + '@parcel/watcher-freebsd-x64': 2.4.0 + '@parcel/watcher-linux-arm-glibc': 2.4.0 + '@parcel/watcher-linux-arm64-glibc': 2.4.0 + '@parcel/watcher-linux-arm64-musl': 2.4.0 + '@parcel/watcher-linux-x64-glibc': 2.4.0 + '@parcel/watcher-linux-x64-musl': 2.4.0 + '@parcel/watcher-win32-arm64': 2.4.0 + '@parcel/watcher-win32-ia32': 2.4.0 + '@parcel/watcher-win32-x64': 2.4.0 '@pkgjs/parseargs@0.11.0': optional: true - '@pkgr/core@0.1.1': {} + '@pkgr/utils@2.4.2': + dependencies: + cross-spawn: 7.0.3 + fast-glob: 3.3.2 + is-glob: 4.0.3 + open: 9.1.0 + picocolors: 1.0.0 + tslib: 2.6.2 - '@playwright/test@1.45.0': + '@playwright/test@1.43.1': dependencies: - playwright: 1.45.0 + playwright: 1.43.1 '@pnpm/config.env-replace@1.1.0': {} @@ -15654,7 +16728,7 @@ snapshots: '@pnpm/network.ca-file': 1.0.2 config-chain: 1.1.13 - '@polka/url@1.0.0-next.25': {} + '@polka/url@1.0.0-next.24': {} '@protobufjs/aspromise@1.1.2': {} @@ -15679,230 +16753,116 @@ snapshots: '@protobufjs/utf8@1.1.0': {} - '@radix-ui/primitive@1.1.0': {} - - '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - - '@radix-ui/react-context@1.1.0(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - - '@radix-ui/react-dialog@1.1.1(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-portal': 1.1.1(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-presence': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - aria-hidden: 1.2.4 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-remove-scroll: 2.5.7(@types/react@18.3.3)(react@18.3.1) - - '@radix-ui/react-dismissable-layer@1.1.0(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@radix-ui/react-focus-guards@1.1.0(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - - '@radix-ui/react-focus-scope@1.1.0(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1)': - dependencies: - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@radix-ui/react-id@1.1.0(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - - '@radix-ui/react-portal@1.1.1(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1)': + '@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))': dependencies: - '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@radix-ui/react-presence@1.1.0(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1)': - dependencies: - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@radix-ui/react-primitive@2.0.0(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1)': - dependencies: - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@radix-ui/react-slot@1.1.0(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - - '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - - '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - - '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - react: 18.3.1 - - '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@types/react': 18.3.3 - react: 18.3.1 + merge-options: 3.0.4 + react-native: 0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) - '@react-native-community/cli-clean@13.6.9': + '@react-native-community/cli-clean@12.3.2(encoding@0.1.13)': dependencies: - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-tools': 12.3.2(encoding@0.1.13) chalk: 4.1.2 execa: 5.1.1 - fast-glob: 3.3.2 transitivePeerDependencies: - encoding - '@react-native-community/cli-config@13.6.9': + '@react-native-community/cli-config@12.3.2(encoding@0.1.13)': dependencies: - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-tools': 12.3.2(encoding@0.1.13) chalk: 4.1.2 cosmiconfig: 5.2.1 deepmerge: 4.3.1 - fast-glob: 3.3.2 - joi: 17.13.3 + glob: 7.2.3 + joi: 17.12.1 transitivePeerDependencies: - encoding - '@react-native-community/cli-debugger-ui@13.6.9': + '@react-native-community/cli-debugger-ui@12.3.2': dependencies: - serve-static: 1.15.0 + serve-static: 1.16.2 transitivePeerDependencies: - supports-color - '@react-native-community/cli-doctor@13.6.9': + '@react-native-community/cli-doctor@12.3.2(encoding@0.1.13)': dependencies: - '@react-native-community/cli-config': 13.6.9 - '@react-native-community/cli-platform-android': 13.6.9 - '@react-native-community/cli-platform-apple': 13.6.9 - '@react-native-community/cli-platform-ios': 13.6.9 - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-config': 12.3.2(encoding@0.1.13) + '@react-native-community/cli-platform-android': 12.3.2(encoding@0.1.13) + '@react-native-community/cli-platform-ios': 12.3.2(encoding@0.1.13) + '@react-native-community/cli-tools': 12.3.2(encoding@0.1.13) chalk: 4.1.2 command-exists: 1.2.9 deepmerge: 4.3.1 - envinfo: 7.13.0 + envinfo: 7.11.1 execa: 5.1.1 hermes-profile-transformer: 0.0.6 + ip: 1.1.9 node-stream-zip: 1.15.0 ora: 5.4.1 semver: 7.6.3 strip-ansi: 5.2.0 wcwidth: 1.0.1 - yaml: 2.4.5 + yaml: 2.5.1 transitivePeerDependencies: - encoding - '@react-native-community/cli-hermes@13.6.9': + '@react-native-community/cli-hermes@12.3.2(encoding@0.1.13)': dependencies: - '@react-native-community/cli-platform-android': 13.6.9 - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-platform-android': 12.3.2(encoding@0.1.13) + '@react-native-community/cli-tools': 12.3.2(encoding@0.1.13) chalk: 4.1.2 hermes-profile-transformer: 0.0.6 + ip: 1.1.9 transitivePeerDependencies: - encoding - '@react-native-community/cli-platform-android@13.6.9': + '@react-native-community/cli-platform-android@12.3.2(encoding@0.1.13)': dependencies: - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-tools': 12.3.2(encoding@0.1.13) chalk: 4.1.2 execa: 5.1.1 - fast-glob: 3.3.2 - fast-xml-parser: 4.4.0 + fast-xml-parser: 4.3.4 + glob: 7.2.3 logkitty: 0.7.1 transitivePeerDependencies: - encoding - '@react-native-community/cli-platform-apple@13.6.9': + '@react-native-community/cli-platform-ios@12.3.2(encoding@0.1.13)': dependencies: - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-tools': 12.3.2(encoding@0.1.13) chalk: 4.1.2 execa: 5.1.1 - fast-glob: 3.3.2 - fast-xml-parser: 4.4.0 + fast-xml-parser: 4.3.4 + glob: 7.2.3 ora: 5.4.1 transitivePeerDependencies: - encoding - '@react-native-community/cli-platform-ios@13.6.9': - dependencies: - '@react-native-community/cli-platform-apple': 13.6.9 - transitivePeerDependencies: - - encoding + '@react-native-community/cli-plugin-metro@12.3.2': {} - '@react-native-community/cli-server-api@13.6.9': + '@react-native-community/cli-server-api@12.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@react-native-community/cli-debugger-ui': 13.6.9 - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-debugger-ui': 12.3.2 + '@react-native-community/cli-tools': 12.3.2(encoding@0.1.13) compression: 1.7.4 connect: 3.7.0 errorhandler: 1.5.1 nocache: 3.0.4 pretty-format: 26.6.2 - serve-static: 1.15.0 - ws: 6.2.3 + serve-static: 1.16.2 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - encoding - supports-color - utf-8-validate - '@react-native-community/cli-tools@13.6.9': + '@react-native-community/cli-tools@12.3.2(encoding@0.1.13)': dependencies: appdirsjs: 1.2.7 chalk: 4.1.2 - execa: 5.1.1 find-up: 5.0.0 mime: 2.6.0 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) open: 6.4.0 ora: 5.4.1 semver: 7.6.3 @@ -15911,20 +16871,21 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-types@13.6.9': + '@react-native-community/cli-types@12.3.2': dependencies: - joi: 17.13.3 + joi: 17.12.1 - '@react-native-community/cli@13.6.9': + '@react-native-community/cli@12.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@react-native-community/cli-clean': 13.6.9 - '@react-native-community/cli-config': 13.6.9 - '@react-native-community/cli-debugger-ui': 13.6.9 - '@react-native-community/cli-doctor': 13.6.9 - '@react-native-community/cli-hermes': 13.6.9 - '@react-native-community/cli-server-api': 13.6.9 - '@react-native-community/cli-tools': 13.6.9 - '@react-native-community/cli-types': 13.6.9 + '@react-native-community/cli-clean': 12.3.2(encoding@0.1.13) + '@react-native-community/cli-config': 12.3.2(encoding@0.1.13) + '@react-native-community/cli-debugger-ui': 12.3.2 + '@react-native-community/cli-doctor': 12.3.2(encoding@0.1.13) + '@react-native-community/cli-hermes': 12.3.2(encoding@0.1.13) + '@react-native-community/cli-plugin-metro': 12.3.2 + '@react-native-community/cli-server-api': 12.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native-community/cli-tools': 12.3.2(encoding@0.1.13) + '@react-native-community/cli-types': 12.3.2 chalk: 4.1.2 commander: 9.5.0 deepmerge: 4.3.1 @@ -15940,90 +16901,88 @@ snapshots: - supports-color - utf-8-validate - '@react-native/assets-registry@0.74.85': {} + '@react-native/assets-registry@0.73.1': {} - '@react-native/babel-plugin-codegen@0.74.85(@babel/preset-env@7.24.7)': + '@react-native/babel-plugin-codegen@0.73.4(@babel/preset-env@7.23.9(@babel/core@7.25.2))': dependencies: - '@react-native/codegen': 0.74.85(@babel/preset-env@7.24.7) + '@react-native/codegen': 0.73.3(@babel/preset-env@7.23.9(@babel/core@7.25.2)) transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/babel-preset@0.74.85(@babel/core@7.25.2)(@babel/preset-env@7.24.7)': + '@react-native/babel-preset@0.73.21(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))': dependencies: '@babel/core': 7.25.2 '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.25.2) '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.2) - '@babel/plugin-proposal-export-default-from': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.25.2) + '@babel/plugin-proposal-export-default-from': 7.23.3(@babel/core@7.25.2) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.2) '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.25.2) '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.2) '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.25.2) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.2) '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2) - '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-syntax-export-default-from': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.25.2) '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2) - '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-classes': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-destructuring': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.25.2) + '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.25.2) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.25.2) + '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.25.2) '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2) - '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-runtime': 7.23.9(@babel/core@7.25.2) + '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.25.2) + '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.25.2) + '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.25.2) '@babel/template': 7.25.0 - '@react-native/babel-plugin-codegen': 0.74.85(@babel/preset-env@7.24.7) + '@react-native/babel-plugin-codegen': 0.73.4(@babel/preset-env@7.23.9(@babel/core@7.25.2)) babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.25.2) - react-refresh: 0.14.2 + react-refresh: 0.14.0 transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/codegen@0.74.85(@babel/preset-env@7.24.7)': + '@react-native/codegen@0.73.3(@babel/preset-env@7.23.9(@babel/core@7.25.2))': dependencies: - '@babel/parser': 7.25.3 - '@babel/preset-env': 7.24.7(@babel/core@7.25.2) + '@babel/parser': 7.25.6 + '@babel/preset-env': 7.23.9(@babel/core@7.25.2) + flow-parser: 0.206.0 glob: 7.2.3 - hermes-parser: 0.19.1 invariant: 2.2.4 - jscodeshift: 0.14.0(@babel/preset-env@7.24.7) + jscodeshift: 0.14.0(@babel/preset-env@7.23.9(@babel/core@7.25.2)) mkdirp: 0.5.6 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - '@react-native/community-cli-plugin@0.74.85(@babel/core@7.25.2)(@babel/preset-env@7.24.7)': + '@react-native/community-cli-plugin@0.73.16(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@react-native-community/cli-server-api': 13.6.9 - '@react-native-community/cli-tools': 13.6.9 - '@react-native/dev-middleware': 0.74.85 - '@react-native/metro-babel-transformer': 0.74.85(@babel/core@7.25.2)(@babel/preset-env@7.24.7) + '@react-native-community/cli-server-api': 12.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native-community/cli-tools': 12.3.2(encoding@0.1.13) + '@react-native/dev-middleware': 0.73.7(encoding@0.1.13) + '@react-native/metro-babel-transformer': 0.73.15(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2)) chalk: 4.1.2 execa: 5.1.1 - metro: 0.80.9 - metro-config: 0.80.9 - metro-core: 0.80.9 - node-fetch: 2.7.0 - querystring: 0.2.1 + metro: 0.80.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + metro-config: 0.80.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + metro-core: 0.80.6 + node-fetch: 2.7.0(encoding@0.1.13) readline: 1.3.0 transitivePeerDependencies: - '@babel/core' @@ -16033,58 +16992,52 @@ snapshots: - supports-color - utf-8-validate - '@react-native/debugger-frontend@0.74.85': {} + '@react-native/debugger-frontend@0.73.3': {} - '@react-native/dev-middleware@0.74.85': + '@react-native/dev-middleware@0.73.7(encoding@0.1.13)': dependencies: '@isaacs/ttlcache': 1.4.1 - '@react-native/debugger-frontend': 0.74.85 - '@rnx-kit/chromium-edge-launcher': 1.0.0 + '@react-native/debugger-frontend': 0.73.3 chrome-launcher: 0.15.2 + chromium-edge-launcher: 1.0.0 connect: 3.7.0 debug: 2.6.9 - node-fetch: 2.7.0 - nullthrows: 1.1.1 + node-fetch: 2.7.0(encoding@0.1.13) open: 7.4.2 - selfsigned: 2.4.1 - serve-static: 1.15.0 + serve-static: 1.16.2 temp-dir: 2.0.0 - ws: 6.2.3 transitivePeerDependencies: - - bufferutil - encoding - supports-color - - utf-8-validate - '@react-native/gradle-plugin@0.74.85': {} + '@react-native/gradle-plugin@0.73.4': {} - '@react-native/js-polyfills@0.74.85': {} + '@react-native/js-polyfills@0.73.1': {} - '@react-native/metro-babel-transformer@0.74.85(@babel/core@7.25.2)(@babel/preset-env@7.24.7)': + '@react-native/metro-babel-transformer@0.73.15(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))': dependencies: '@babel/core': 7.25.2 - '@react-native/babel-preset': 0.74.85(@babel/core@7.25.2)(@babel/preset-env@7.24.7) - hermes-parser: 0.19.1 + '@react-native/babel-preset': 0.73.21(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2)) + hermes-parser: 0.15.0 nullthrows: 1.1.1 transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/normalize-colors@0.74.85': {} + '@react-native/normalize-colors@0.73.2': {} - '@react-native/virtualized-lists@0.74.85(react-native@0.74.3)(react@18.3.1)': + '@react-native/virtualized-lists@0.73.4(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react: 18.3.1 - react-native: 0.74.3(@babel/core@7.25.2)(@babel/preset-env@7.24.7)(react@18.3.1) + react-native: 0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) - '@readme/better-ajv-errors@1.6.0(ajv@8.16.0)': + '@readme/better-ajv-errors@1.6.0(ajv@8.12.0)': dependencies: - '@babel/code-frame': 7.24.7 - '@babel/runtime': 7.24.7 + '@babel/code-frame': 7.23.5 + '@babel/runtime': 7.23.9 '@humanwhocodes/momoa': 2.0.4 - ajv: 8.16.0 + ajv: 8.12.0 chalk: 4.1.2 json-to-ast: 2.1.0 jsonpointer: 5.0.1 @@ -16102,75 +17055,179 @@ snapshots: '@apidevtools/openapi-schemas': 2.1.0 '@apidevtools/swagger-methods': 3.0.2 '@jsdevtools/ono': 7.1.3 - '@readme/better-ajv-errors': 1.6.0(ajv@8.16.0) + '@readme/better-ajv-errors': 1.6.0(ajv@8.12.0) '@readme/json-schema-ref-parser': 1.2.0 - ajv: 8.16.0 - ajv-draft-04: 1.0.0(ajv@8.16.0) + ajv: 8.12.0 + ajv-draft-04: 1.0.0(ajv@8.12.0) call-me-maybe: 1.0.2 openapi-types: 12.1.3 - '@rnx-kit/chromium-edge-launcher@1.0.0': + '@rollup/pluginutils@5.1.0(rollup@4.21.3)': dependencies: - '@types/node': 18.19.39 - escape-string-regexp: 4.0.0 - is-wsl: 2.2.0 - lighthouse-logger: 1.4.2 - mkdirp: 1.0.4 - rimraf: 3.0.2 - transitivePeerDependencies: - - supports-color + '@types/estree': 1.0.5 + estree-walker: 2.0.2 + picomatch: 2.3.1 + optionalDependencies: + rollup: 4.21.3 + + '@rollup/rollup-android-arm-eabi@4.12.0': + optional: true + + '@rollup/rollup-android-arm-eabi@4.17.2': + optional: true + + '@rollup/rollup-android-arm-eabi@4.21.3': + optional: true + + '@rollup/rollup-android-arm64@4.12.0': + optional: true + + '@rollup/rollup-android-arm64@4.17.2': + optional: true + + '@rollup/rollup-android-arm64@4.21.3': + optional: true + + '@rollup/rollup-darwin-arm64@4.12.0': + optional: true + + '@rollup/rollup-darwin-arm64@4.17.2': + optional: true + + '@rollup/rollup-darwin-arm64@4.21.3': + optional: true + + '@rollup/rollup-darwin-x64@4.12.0': + optional: true + + '@rollup/rollup-darwin-x64@4.17.2': + optional: true + + '@rollup/rollup-darwin-x64@4.21.3': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.12.0': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.17.2': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.21.3': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.17.2': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.21.3': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.12.0': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.17.2': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.21.3': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.12.0': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.17.2': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.21.3': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.21.3': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.12.0': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.17.2': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.21.3': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.17.2': + optional: true - '@rollup/rollup-android-arm-eabi@4.18.0': + '@rollup/rollup-linux-s390x-gnu@4.21.3': optional: true - '@rollup/rollup-android-arm64@4.18.0': + '@rollup/rollup-linux-x64-gnu@4.12.0': optional: true - '@rollup/rollup-darwin-arm64@4.18.0': + '@rollup/rollup-linux-x64-gnu@4.17.2': optional: true - '@rollup/rollup-darwin-x64@4.18.0': + '@rollup/rollup-linux-x64-gnu@4.21.3': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.18.0': + '@rollup/rollup-linux-x64-musl@4.12.0': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.18.0': + '@rollup/rollup-linux-x64-musl@4.17.2': optional: true - '@rollup/rollup-linux-arm64-gnu@4.18.0': + '@rollup/rollup-linux-x64-musl@4.21.3': optional: true - '@rollup/rollup-linux-arm64-musl@4.18.0': + '@rollup/rollup-win32-arm64-msvc@4.12.0': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.18.0': + '@rollup/rollup-win32-arm64-msvc@4.17.2': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.18.0': + '@rollup/rollup-win32-arm64-msvc@4.21.3': optional: true - '@rollup/rollup-linux-s390x-gnu@4.18.0': + '@rollup/rollup-win32-ia32-msvc@4.12.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.18.0': + '@rollup/rollup-win32-ia32-msvc@4.17.2': optional: true - '@rollup/rollup-linux-x64-musl@4.18.0': + '@rollup/rollup-win32-ia32-msvc@4.21.3': optional: true - '@rollup/rollup-win32-arm64-msvc@4.18.0': + '@rollup/rollup-win32-x64-msvc@4.12.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.18.0': + '@rollup/rollup-win32-x64-msvc@4.17.2': optional: true - '@rollup/rollup-win32-x64-msvc@4.18.0': + '@rollup/rollup-win32-x64-msvc@4.21.3': optional: true - '@safe-global/safe-apps-provider@0.18.1(typescript@5.5.3)': + '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + dependencies: + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + events: 3.3.0 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + + '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8)': + dependencies: + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8) + events: 3.3.0 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + + '@safe-global/safe-apps-provider@0.18.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: - '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.5.3) + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) events: 3.3.0 transitivePeerDependencies: - bufferutil @@ -16178,59 +17235,114 @@ snapshots: - utf-8-validate - zod - '@safe-global/safe-apps-sdk@8.1.0(typescript@5.5.3)': + '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + dependencies: + '@safe-global/safe-gateway-typescript-sdk': 3.15.0 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + + '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8)': + dependencies: + '@safe-global/safe-gateway-typescript-sdk': 3.15.0 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + + '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.21.8 - viem: 1.21.4(typescript@5.5.3) + '@safe-global/safe-gateway-typescript-sdk': 3.15.0 + viem: 2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) transitivePeerDependencies: - bufferutil - typescript - utf-8-validate - zod - '@safe-global/safe-gateway-typescript-sdk@3.21.8': {} + '@safe-global/safe-gateway-typescript-sdk@3.15.0': {} + + '@scure/base@1.1.5': {} - '@scure/base@1.1.7': {} + '@scure/base@1.1.8': {} '@scure/bip32@1.1.5': dependencies: '@noble/hashes': 1.2.0 '@noble/secp256k1': 1.7.1 - '@scure/base': 1.1.7 + '@scure/base': 1.1.5 '@scure/bip32@1.3.2': dependencies: '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.2 - '@scure/base': 1.1.7 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.5 + + '@scure/bip32@1.3.3': + dependencies: + '@noble/curves': 1.3.0 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.8 '@scure/bip32@1.4.0': dependencies: '@noble/curves': 1.4.0 '@noble/hashes': 1.4.0 - '@scure/base': 1.1.7 + '@scure/base': 1.1.8 '@scure/bip39@1.1.1': dependencies: '@noble/hashes': 1.2.0 - '@scure/base': 1.1.7 + '@scure/base': 1.1.5 '@scure/bip39@1.2.1': dependencies: - '@noble/hashes': 1.3.2 - '@scure/base': 1.1.7 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.5 - '@scure/bip39@1.3.0': + '@scure/bip39@1.2.2': dependencies: - '@noble/hashes': 1.4.0 - '@scure/base': 1.1.7 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.8 + + '@scure/bip39@1.4.0': + dependencies: + '@noble/hashes': 1.5.0 + '@scure/base': 1.1.8 + + '@shikijs/core@1.17.6': + dependencies: + '@shikijs/engine-javascript': 1.17.6 + '@shikijs/engine-oniguruma': 1.17.6 + '@shikijs/types': 1.17.6 + '@shikijs/vscode-textmate': 9.2.2 + '@types/hast': 3.0.4 + hast-util-to-html: 9.0.2 + + '@shikijs/core@1.5.2': {} + + '@shikijs/engine-javascript@1.17.6': + dependencies: + '@shikijs/types': 1.17.6 + oniguruma-to-js: 0.4.3 - '@shikijs/core@1.10.0': {} + '@shikijs/engine-oniguruma@1.17.6': + dependencies: + '@shikijs/types': 1.17.6 + '@shikijs/vscode-textmate': 9.2.2 - '@shikijs/core@1.12.1': + '@shikijs/types@1.17.6': dependencies: + '@shikijs/vscode-textmate': 9.2.2 '@types/hast': 3.0.4 + '@shikijs/vscode-textmate@9.2.2': {} + '@sideway/address@4.1.5': dependencies: '@hapi/hoek': 9.3.0 @@ -16241,9 +17353,9 @@ snapshots: '@sinclair/typebox@0.27.8': {} - '@sindresorhus/is@5.6.0': {} + '@sindresorhus/is@4.6.0': {} - '@sindresorhus/merge-streams@2.3.0': {} + '@sindresorhus/is@5.6.0': {} '@sinonjs/commons@3.0.1': dependencies: @@ -16253,335 +17365,321 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@smithy/abort-controller@3.1.1': + '@smithy/abort-controller@3.0.0': dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 '@smithy/chunked-blob-reader-native@3.0.0': dependencies: '@smithy/util-base64': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 '@smithy/chunked-blob-reader@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/config-resolver@3.0.4': + '@smithy/config-resolver@3.0.0': dependencies: - '@smithy/node-config-provider': 3.1.3 - '@smithy/types': 3.3.0 + '@smithy/node-config-provider': 3.0.0 + '@smithy/types': 3.0.0 '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.3 - tslib: 2.6.3 + '@smithy/util-middleware': 3.0.0 + tslib: 2.6.2 - '@smithy/core@2.2.4': + '@smithy/core@2.0.1': dependencies: - '@smithy/middleware-endpoint': 3.0.4 - '@smithy/middleware-retry': 3.0.7 - '@smithy/middleware-serde': 3.0.3 - '@smithy/protocol-http': 4.0.3 - '@smithy/smithy-client': 3.1.5 - '@smithy/types': 3.3.0 - '@smithy/util-middleware': 3.0.3 - tslib: 2.6.3 + '@smithy/middleware-endpoint': 3.0.0 + '@smithy/middleware-retry': 3.0.1 + '@smithy/middleware-serde': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/smithy-client': 3.0.1 + '@smithy/types': 3.0.0 + '@smithy/util-middleware': 3.0.0 + tslib: 2.6.2 - '@smithy/credential-provider-imds@3.1.3': + '@smithy/credential-provider-imds@3.0.0': dependencies: - '@smithy/node-config-provider': 3.1.3 - '@smithy/property-provider': 3.1.3 - '@smithy/types': 3.3.0 - '@smithy/url-parser': 3.0.3 - tslib: 2.6.3 + '@smithy/node-config-provider': 3.0.0 + '@smithy/property-provider': 3.0.0 + '@smithy/types': 3.0.0 + '@smithy/url-parser': 3.0.0 + tslib: 2.6.2 - '@smithy/eventstream-codec@3.1.2': + '@smithy/eventstream-codec@3.0.0': dependencies: - '@aws-crypto/crc32': 5.2.0 - '@smithy/types': 3.3.0 + '@aws-crypto/crc32': 3.0.0 + '@smithy/types': 3.0.0 '@smithy/util-hex-encoding': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/eventstream-serde-browser@3.0.4': + '@smithy/eventstream-serde-browser@3.0.0': dependencies: - '@smithy/eventstream-serde-universal': 3.0.4 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/eventstream-serde-universal': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/eventstream-serde-config-resolver@3.0.3': + '@smithy/eventstream-serde-config-resolver@3.0.0': dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/eventstream-serde-node@3.0.4': + '@smithy/eventstream-serde-node@3.0.0': dependencies: - '@smithy/eventstream-serde-universal': 3.0.4 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/eventstream-serde-universal': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/eventstream-serde-universal@3.0.4': + '@smithy/eventstream-serde-universal@3.0.0': dependencies: - '@smithy/eventstream-codec': 3.1.2 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/eventstream-codec': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/fetch-http-handler@3.2.0': + '@smithy/fetch-http-handler@3.0.1': dependencies: - '@smithy/protocol-http': 4.0.3 - '@smithy/querystring-builder': 3.0.3 - '@smithy/types': 3.3.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/querystring-builder': 3.0.0 + '@smithy/types': 3.0.0 '@smithy/util-base64': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/hash-blob-browser@3.1.2': + '@smithy/hash-blob-browser@3.0.0': dependencies: '@smithy/chunked-blob-reader': 3.0.0 '@smithy/chunked-blob-reader-native': 3.0.0 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/hash-node@3.0.3': + '@smithy/hash-node@3.0.0': dependencies: - '@smithy/types': 3.3.0 + '@smithy/types': 3.0.0 '@smithy/util-buffer-from': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/hash-stream-node@3.1.2': + '@smithy/hash-stream-node@3.0.0': dependencies: - '@smithy/types': 3.3.0 + '@smithy/types': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 - - '@smithy/invalid-dependency@3.0.3': - dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/is-array-buffer@2.2.0': + '@smithy/invalid-dependency@3.0.0': dependencies: - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 '@smithy/is-array-buffer@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/md5-js@3.0.3': + '@smithy/md5-js@3.0.0': dependencies: - '@smithy/types': 3.3.0 + '@smithy/types': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 - - '@smithy/middleware-content-length@3.0.3': - dependencies: - '@smithy/protocol-http': 4.0.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 - - '@smithy/middleware-endpoint@3.0.4': - dependencies: - '@smithy/middleware-serde': 3.0.3 - '@smithy/node-config-provider': 3.1.3 - '@smithy/shared-ini-file-loader': 3.1.3 - '@smithy/types': 3.3.0 - '@smithy/url-parser': 3.0.3 - '@smithy/util-middleware': 3.0.3 - tslib: 2.6.3 - - '@smithy/middleware-retry@3.0.7': - dependencies: - '@smithy/node-config-provider': 3.1.3 - '@smithy/protocol-http': 4.0.3 - '@smithy/service-error-classification': 3.0.3 - '@smithy/smithy-client': 3.1.5 - '@smithy/types': 3.3.0 - '@smithy/util-middleware': 3.0.3 - '@smithy/util-retry': 3.0.3 - tslib: 2.6.3 + tslib: 2.6.2 + + '@smithy/middleware-content-length@3.0.0': + dependencies: + '@smithy/protocol-http': 4.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 + + '@smithy/middleware-endpoint@3.0.0': + dependencies: + '@smithy/middleware-serde': 3.0.0 + '@smithy/node-config-provider': 3.0.0 + '@smithy/shared-ini-file-loader': 3.0.0 + '@smithy/types': 3.0.0 + '@smithy/url-parser': 3.0.0 + '@smithy/util-middleware': 3.0.0 + tslib: 2.6.2 + + '@smithy/middleware-retry@3.0.1': + dependencies: + '@smithy/node-config-provider': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/service-error-classification': 3.0.0 + '@smithy/smithy-client': 3.0.1 + '@smithy/types': 3.0.0 + '@smithy/util-middleware': 3.0.0 + '@smithy/util-retry': 3.0.0 + tslib: 2.6.2 uuid: 9.0.1 - '@smithy/middleware-serde@3.0.3': + '@smithy/middleware-serde@3.0.0': dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/middleware-stack@3.0.3': + '@smithy/middleware-stack@3.0.0': dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/node-config-provider@3.1.3': + '@smithy/node-config-provider@3.0.0': dependencies: - '@smithy/property-provider': 3.1.3 - '@smithy/shared-ini-file-loader': 3.1.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/property-provider': 3.0.0 + '@smithy/shared-ini-file-loader': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/node-http-handler@3.1.1': + '@smithy/node-http-handler@3.0.0': dependencies: - '@smithy/abort-controller': 3.1.1 - '@smithy/protocol-http': 4.0.3 - '@smithy/querystring-builder': 3.0.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/abort-controller': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/querystring-builder': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/property-provider@3.1.3': + '@smithy/property-provider@3.0.0': dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/protocol-http@4.0.3': + '@smithy/protocol-http@4.0.0': dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/querystring-builder@3.0.3': + '@smithy/querystring-builder@3.0.0': dependencies: - '@smithy/types': 3.3.0 + '@smithy/types': 3.0.0 '@smithy/util-uri-escape': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/querystring-parser@3.0.3': + '@smithy/querystring-parser@3.0.0': dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/service-error-classification@3.0.3': + '@smithy/service-error-classification@3.0.0': dependencies: - '@smithy/types': 3.3.0 + '@smithy/types': 3.0.0 - '@smithy/shared-ini-file-loader@3.1.3': + '@smithy/shared-ini-file-loader@3.0.0': dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/signature-v4@3.1.2': + '@smithy/signature-v4@3.0.0': dependencies: '@smithy/is-array-buffer': 3.0.0 - '@smithy/types': 3.3.0 + '@smithy/types': 3.0.0 '@smithy/util-hex-encoding': 3.0.0 - '@smithy/util-middleware': 3.0.3 + '@smithy/util-middleware': 3.0.0 '@smithy/util-uri-escape': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/smithy-client@3.1.5': + '@smithy/smithy-client@3.0.1': dependencies: - '@smithy/middleware-endpoint': 3.0.4 - '@smithy/middleware-stack': 3.0.3 - '@smithy/protocol-http': 4.0.3 - '@smithy/types': 3.3.0 - '@smithy/util-stream': 3.0.5 - tslib: 2.6.3 + '@smithy/middleware-endpoint': 3.0.0 + '@smithy/middleware-stack': 3.0.0 + '@smithy/protocol-http': 4.0.0 + '@smithy/types': 3.0.0 + '@smithy/util-stream': 3.0.1 + tslib: 2.6.2 - '@smithy/types@3.3.0': + '@smithy/types@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/url-parser@3.0.3': + '@smithy/url-parser@3.0.0': dependencies: - '@smithy/querystring-parser': 3.0.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/querystring-parser': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 '@smithy/util-base64@3.0.0': dependencies: '@smithy/util-buffer-from': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 '@smithy/util-body-length-browser@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.6.2 '@smithy/util-body-length-node@3.0.0': dependencies: - tslib: 2.6.3 - - '@smithy/util-buffer-from@2.2.0': - dependencies: - '@smithy/is-array-buffer': 2.2.0 - tslib: 2.6.3 + tslib: 2.6.2 '@smithy/util-buffer-from@3.0.0': dependencies: '@smithy/is-array-buffer': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 '@smithy/util-config-provider@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/util-defaults-mode-browser@3.0.7': + '@smithy/util-defaults-mode-browser@3.0.1': dependencies: - '@smithy/property-provider': 3.1.3 - '@smithy/smithy-client': 3.1.5 - '@smithy/types': 3.3.0 + '@smithy/property-provider': 3.0.0 + '@smithy/smithy-client': 3.0.1 + '@smithy/types': 3.0.0 bowser: 2.11.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/util-defaults-mode-node@3.0.7': + '@smithy/util-defaults-mode-node@3.0.1': dependencies: - '@smithy/config-resolver': 3.0.4 - '@smithy/credential-provider-imds': 3.1.3 - '@smithy/node-config-provider': 3.1.3 - '@smithy/property-provider': 3.1.3 - '@smithy/smithy-client': 3.1.5 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/config-resolver': 3.0.0 + '@smithy/credential-provider-imds': 3.0.0 + '@smithy/node-config-provider': 3.0.0 + '@smithy/property-provider': 3.0.0 + '@smithy/smithy-client': 3.0.1 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/util-endpoints@2.0.4': + '@smithy/util-endpoints@2.0.0': dependencies: - '@smithy/node-config-provider': 3.1.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/node-config-provider': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 '@smithy/util-hex-encoding@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/util-middleware@3.0.3': + '@smithy/util-middleware@3.0.0': dependencies: - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/util-retry@3.0.3': + '@smithy/util-retry@3.0.0': dependencies: - '@smithy/service-error-classification': 3.0.3 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/service-error-classification': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@smithy/util-stream@3.0.5': + '@smithy/util-stream@3.0.1': dependencies: - '@smithy/fetch-http-handler': 3.2.0 - '@smithy/node-http-handler': 3.1.1 - '@smithy/types': 3.3.0 + '@smithy/fetch-http-handler': 3.0.1 + '@smithy/node-http-handler': 3.0.0 + '@smithy/types': 3.0.0 '@smithy/util-base64': 3.0.0 '@smithy/util-buffer-from': 3.0.0 '@smithy/util-hex-encoding': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 '@smithy/util-uri-escape@3.0.0': dependencies: - tslib: 2.6.3 - - '@smithy/util-utf8@2.3.0': - dependencies: - '@smithy/util-buffer-from': 2.2.0 - tslib: 2.6.3 + tslib: 2.6.2 '@smithy/util-utf8@3.0.0': dependencies: '@smithy/util-buffer-from': 3.0.0 - tslib: 2.6.3 + tslib: 2.6.2 - '@smithy/util-waiter@3.1.2': + '@smithy/util-waiter@3.0.0': dependencies: - '@smithy/abort-controller': 3.1.1 - '@smithy/types': 3.3.0 - tslib: 2.6.3 + '@smithy/abort-controller': 3.0.0 + '@smithy/types': 3.0.0 + tslib: 2.6.2 - '@socket.io/component-emitter@3.1.2': {} + '@socket.io/component-emitter@3.1.0': {} '@solidity-parser/parser@0.18.0': {} @@ -16665,551 +17763,237 @@ snapshots: '@stablelib/random': 1.0.2 '@stablelib/wipe': 1.0.1 - '@storybook/addon-actions@8.1.11': + '@storybook/addon-actions@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@storybook/core-events': 8.1.11 '@storybook/global': 5.0.0 '@types/uuid': 9.0.8 dequal: 2.0.3 polished: 4.3.1 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) uuid: 9.0.1 - '@storybook/addon-backgrounds@8.1.11': + '@storybook/addon-backgrounds@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: '@storybook/global': 5.0.0 memoizerific: 1.11.3 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) ts-dedent: 2.2.0 - '@storybook/addon-controls@8.1.11(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)': + '@storybook/addon-controls@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@storybook/blocks': 8.1.11(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1) + '@storybook/global': 5.0.0 dequal: 2.0.3 lodash: 4.17.21 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) ts-dedent: 2.2.0 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - encoding - - prettier - - react - - react-dom - - supports-color - '@storybook/addon-docs@8.1.11(prettier@3.3.2)': + '@storybook/addon-docs@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@babel/core': 7.24.7 - '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@18.3.1) - '@storybook/blocks': 8.1.11(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1) - '@storybook/client-logger': 8.1.11 - '@storybook/components': 8.1.11(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@storybook/csf-plugin': 8.1.11 - '@storybook/csf-tools': 8.1.11 + '@mdx-js/react': 3.0.1(@types/react@18.3.5)(react@18.2.0) + '@storybook/blocks': 8.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/csf-plugin': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) '@storybook/global': 5.0.0 - '@storybook/node-logger': 8.1.11 - '@storybook/preview-api': 8.1.11 - '@storybook/react-dom-shim': 8.1.11(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 8.1.11(react-dom@18.3.1)(react@18.3.1) - '@storybook/types': 8.1.11 - '@types/react': 18.3.3 + '@storybook/react-dom-shim': 8.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@types/react': 18.3.5 fs-extra: 11.2.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) rehype-external-links: 3.0.0 rehype-slug: 6.0.0 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) ts-dedent: 2.2.0 transitivePeerDependencies: - - '@types/react-dom' - - encoding - - prettier - - supports-color + - webpack-sources - '@storybook/addon-essentials@8.1.11(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)': - dependencies: - '@storybook/addon-actions': 8.1.11 - '@storybook/addon-backgrounds': 8.1.11 - '@storybook/addon-controls': 8.1.11(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1) - '@storybook/addon-docs': 8.1.11(prettier@3.3.2) - '@storybook/addon-highlight': 8.1.11 - '@storybook/addon-measure': 8.1.11 - '@storybook/addon-outline': 8.1.11 - '@storybook/addon-toolbars': 8.1.11 - '@storybook/addon-viewport': 8.1.11 - '@storybook/core-common': 8.1.11(prettier@3.3.2) - '@storybook/manager-api': 8.1.11(react-dom@18.3.1)(react@18.3.1) - '@storybook/node-logger': 8.1.11 - '@storybook/preview-api': 8.1.11 + '@storybook/addon-essentials@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': + dependencies: + '@storybook/addon-actions': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/addon-backgrounds': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/addon-controls': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/addon-docs': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/addon-highlight': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/addon-measure': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/addon-outline': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/addon-toolbars': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/addon-viewport': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) ts-dedent: 2.2.0 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - encoding - - prettier - - react - - react-dom - - supports-color + - webpack-sources - '@storybook/addon-highlight@8.1.11': + '@storybook/addon-highlight@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: '@storybook/global': 5.0.0 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) - '@storybook/addon-interactions@8.1.11(vitest@1.6.0)': + '@storybook/addon-interactions@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: '@storybook/global': 5.0.0 - '@storybook/instrumenter': 8.1.11 - '@storybook/test': 8.1.11(vitest@1.6.0) - '@storybook/types': 8.1.11 + '@storybook/instrumenter': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/test': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) polished: 4.3.1 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) ts-dedent: 2.2.0 - transitivePeerDependencies: - - '@jest/globals' - - '@types/bun' - - '@types/jest' - - jest - - vitest - '@storybook/addon-links@8.1.11(react@18.3.1)': + '@storybook/addon-links@8.3.0(react@18.2.0)(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@storybook/csf': 0.1.9 + '@storybook/csf': 0.1.11 '@storybook/global': 5.0.0 - react: 18.3.1 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) ts-dedent: 2.2.0 + optionalDependencies: + react: 18.2.0 - '@storybook/addon-measure@8.1.11': + '@storybook/addon-measure@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: '@storybook/global': 5.0.0 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) tiny-invariant: 1.3.3 - '@storybook/addon-outline@8.1.11': + '@storybook/addon-outline@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: '@storybook/global': 5.0.0 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) ts-dedent: 2.2.0 - '@storybook/addon-themes@8.1.11': + '@storybook/addon-themes@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) ts-dedent: 2.2.0 - '@storybook/addon-toolbars@8.1.11': {} + '@storybook/addon-toolbars@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': + dependencies: + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) - '@storybook/addon-viewport@8.1.11': + '@storybook/addon-viewport@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: memoizerific: 1.11.3 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) - '@storybook/blocks@8.1.11(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)': + '@storybook/blocks@8.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@storybook/channels': 8.1.11 - '@storybook/client-logger': 8.1.11 - '@storybook/components': 8.1.11(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-events': 8.1.11 - '@storybook/csf': 0.1.9 - '@storybook/docs-tools': 8.1.11(prettier@3.3.2) + '@storybook/csf': 0.1.11 '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@18.3.1)(react@18.3.1) - '@storybook/manager-api': 8.1.11(react-dom@18.3.1)(react@18.3.1) - '@storybook/preview-api': 8.1.11 - '@storybook/theming': 8.1.11(react-dom@18.3.1)(react@18.3.1) - '@storybook/types': 8.1.11 - '@types/lodash': 4.17.6 + '@storybook/icons': 1.2.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@types/lodash': 4.17.7 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 - markdown-to-jsx: 7.3.2(react@18.3.1) + markdown-to-jsx: 7.5.0(react@18.2.0) memoizerific: 1.11.3 polished: 4.3.1 - react: 18.3.1 - react-colorful: 5.6.1(react-dom@18.3.1)(react@18.3.1) - react-dom: 18.3.1(react@18.3.1) + react-colorful: 5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) telejson: 7.2.0 - tocbot: 4.28.2 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - encoding - - prettier - - supports-color + optionalDependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - '@storybook/builder-manager@8.1.11(prettier@3.3.2)': + '@storybook/builder-vite@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2))': dependencies: - '@fal-works/esbuild-plugin-global-externals': 2.1.2 - '@storybook/core-common': 8.1.11(prettier@3.3.2) - '@storybook/manager': 8.1.11 - '@storybook/node-logger': 8.1.11 - '@types/ejs': 3.1.5 - '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.20.2) - browser-assert: 1.2.1 - ejs: 3.1.10 - esbuild: 0.20.2 - esbuild-plugin-alias: 0.2.1 - express: 4.19.2 - fs-extra: 11.2.0 - process: 0.11.10 - util: 0.12.5 - transitivePeerDependencies: - - encoding - - prettier - - supports-color - - '@storybook/builder-vite@8.1.11(prettier@3.3.2)(typescript@5.5.3)(vite@5.3.2)': - dependencies: - '@storybook/channels': 8.1.11 - '@storybook/client-logger': 8.1.11 - '@storybook/core-common': 8.1.11(prettier@3.3.2) - '@storybook/core-events': 8.1.11 - '@storybook/csf-plugin': 8.1.11 - '@storybook/node-logger': 8.1.11 - '@storybook/preview': 8.1.11 - '@storybook/preview-api': 8.1.11 - '@storybook/types': 8.1.11 + '@storybook/csf-plugin': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) '@types/find-cache-dir': 3.2.1 browser-assert: 1.2.1 - es-module-lexer: 1.5.4 - express: 4.19.2 + es-module-lexer: 1.5.3 + express: 4.21.0 find-cache-dir: 3.3.2 fs-extra: 11.2.0 magic-string: 0.30.10 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) ts-dedent: 2.2.0 - typescript: 5.5.3 - vite: 5.3.2(@types/node@20.14.9) - transitivePeerDependencies: - - encoding - - prettier - - supports-color - - '@storybook/channels@8.1.11': - dependencies: - '@storybook/client-logger': 8.1.11 - '@storybook/core-events': 8.1.11 - '@storybook/global': 5.0.0 - telejson: 7.2.0 - tiny-invariant: 1.3.3 - - '@storybook/cli@8.1.11(react-dom@18.3.1)(react@18.3.1)': - dependencies: - '@babel/core': 7.24.7 - '@babel/types': 7.24.7 - '@ndelangen/get-tarball': 3.0.9 - '@storybook/codemod': 8.1.11 - '@storybook/core-common': 8.1.11(prettier@3.3.2) - '@storybook/core-events': 8.1.11 - '@storybook/core-server': 8.1.11(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1) - '@storybook/csf-tools': 8.1.11 - '@storybook/node-logger': 8.1.11 - '@storybook/telemetry': 8.1.11(prettier@3.3.2) - '@storybook/types': 8.1.11 - '@types/semver': 7.5.8 - '@yarnpkg/fslib': 2.10.3 - '@yarnpkg/libzip': 2.3.0 - chalk: 4.1.2 - commander: 6.2.1 - cross-spawn: 7.0.3 - detect-indent: 6.1.0 - envinfo: 7.13.0 - execa: 5.1.1 - find-up: 5.0.0 - fs-extra: 11.2.0 - get-npm-tarball-url: 2.1.0 - giget: 1.2.3 - globby: 14.0.2 - jscodeshift: 0.15.2(@babel/preset-env@7.24.7) - leven: 3.1.0 - ora: 5.4.1 - prettier: 3.3.2 - prompts: 2.4.2 - read-pkg-up: 7.0.1 - semver: 7.6.2 - strip-json-comments: 3.1.1 - tempy: 3.1.0 - tiny-invariant: 1.3.3 - ts-dedent: 2.2.0 + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) + optionalDependencies: + typescript: 5.4.5 transitivePeerDependencies: - - '@babel/preset-env' - - bufferutil - - encoding - - react - - react-dom - supports-color - - utf-8-validate + - webpack-sources - '@storybook/client-logger@8.1.11': + '@storybook/components@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@storybook/global': 5.0.0 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) - '@storybook/codemod@8.1.11': + '@storybook/core@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)': dependencies: - '@babel/core': 7.24.7 - '@babel/preset-env': 7.24.7(@babel/core@7.24.7) - '@babel/types': 7.24.7 - '@storybook/csf': 0.1.9 - '@storybook/csf-tools': 8.1.11 - '@storybook/node-logger': 8.1.11 - '@storybook/types': 8.1.11 - '@types/cross-spawn': 6.0.6 - cross-spawn: 7.0.3 - globby: 14.0.2 - jscodeshift: 0.15.2(@babel/preset-env@7.24.7) - lodash: 4.17.21 - prettier: 3.3.2 + '@storybook/csf': 0.1.11 + '@types/express': 4.17.21 + browser-assert: 1.2.1 + esbuild: 0.21.3 + esbuild-register: 3.6.0(esbuild@0.21.3) + express: 4.21.0 + process: 0.11.10 recast: 0.23.9 - tiny-invariant: 1.3.3 - transitivePeerDependencies: - - supports-color - - '@storybook/components@8.1.11(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1)': - dependencies: - '@radix-ui/react-dialog': 1.1.1(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@storybook/client-logger': 8.1.11 - '@storybook/csf': 0.1.9 - '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 8.1.11(react-dom@18.3.1)(react@18.3.1) - '@storybook/types': 8.1.11 - memoizerific: 1.11.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - '@storybook/core-common@8.1.11(prettier@3.3.2)': - dependencies: - '@storybook/core-events': 8.1.11 - '@storybook/csf-tools': 8.1.11 - '@storybook/node-logger': 8.1.11 - '@storybook/types': 8.1.11 - '@yarnpkg/fslib': 2.10.3 - '@yarnpkg/libzip': 2.3.0 - chalk: 4.1.2 - cross-spawn: 7.0.3 - esbuild: 0.20.2 - esbuild-register: 3.5.0(esbuild@0.20.2) - execa: 5.1.1 - file-system-cache: 2.3.0 - find-cache-dir: 3.3.2 - find-up: 5.0.0 - fs-extra: 11.2.0 - glob: 10.4.2 - handlebars: 4.7.8 - lazy-universal-dotenv: 4.0.0 - node-fetch: 2.7.0 - picomatch: 2.3.1 - pkg-dir: 5.0.0 - prettier: 3.3.2 - prettier-fallback: prettier@3.3.2 - pretty-hrtime: 1.0.3 - resolve-from: 5.0.0 semver: 7.6.2 - tempy: 3.1.0 - tiny-invariant: 1.3.3 - ts-dedent: 2.2.0 - util: 0.12.5 - transitivePeerDependencies: - - encoding - - supports-color - - '@storybook/core-events@8.1.11': - dependencies: - '@storybook/csf': 0.1.9 - ts-dedent: 2.2.0 - - '@storybook/core-server@8.1.11(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)': - dependencies: - '@aw-web-design/x-default-browser': 1.4.126 - '@babel/core': 7.24.7 - '@babel/parser': 7.24.7 - '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-manager': 8.1.11(prettier@3.3.2) - '@storybook/channels': 8.1.11 - '@storybook/core-common': 8.1.11(prettier@3.3.2) - '@storybook/core-events': 8.1.11 - '@storybook/csf': 0.1.9 - '@storybook/csf-tools': 8.1.11 - '@storybook/docs-mdx': 3.1.0-next.0 - '@storybook/global': 5.0.0 - '@storybook/manager': 8.1.11 - '@storybook/manager-api': 8.1.11(react-dom@18.3.1)(react@18.3.1) - '@storybook/node-logger': 8.1.11 - '@storybook/preview-api': 8.1.11 - '@storybook/telemetry': 8.1.11(prettier@3.3.2) - '@storybook/types': 8.1.11 - '@types/detect-port': 1.3.5 - '@types/diff': 5.2.1 - '@types/node': 18.19.39 - '@types/pretty-hrtime': 1.0.3 - '@types/semver': 7.5.8 - better-opn: 3.0.2 - chalk: 4.1.2 - cli-table3: 0.6.5 - compression: 1.7.4 - detect-port: 1.6.1 - diff: 5.2.0 - express: 4.19.2 - fs-extra: 11.2.0 - globby: 14.0.2 - lodash: 4.17.21 - open: 8.4.2 - pretty-hrtime: 1.0.3 - prompts: 2.4.2 - read-pkg-up: 7.0.1 - semver: 7.6.3 - telejson: 7.2.0 - tiny-invariant: 1.3.3 - ts-dedent: 2.2.0 util: 0.12.5 - util-deprecate: 1.0.2 - watchpack: 2.4.1 - ws: 8.17.1 + ws: 8.16.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) transitivePeerDependencies: - bufferutil - - encoding - - prettier - - react - - react-dom - supports-color - utf-8-validate - '@storybook/csf-plugin@8.1.11': + '@storybook/csf-plugin@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@storybook/csf-tools': 8.1.11 - unplugin: 1.11.0 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) + unplugin: 1.14.1 transitivePeerDependencies: - - supports-color - - '@storybook/csf-tools@8.1.11': - dependencies: - '@babel/generator': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - '@storybook/csf': 0.1.9 - '@storybook/types': 8.1.11 - fs-extra: 11.2.0 - recast: 0.23.9 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - supports-color + - webpack-sources '@storybook/csf@0.0.1': dependencies: lodash: 4.17.21 - '@storybook/csf@0.1.9': + '@storybook/csf@0.1.11': dependencies: type-fest: 2.19.0 - '@storybook/docs-mdx@3.1.0-next.0': {} - - '@storybook/docs-tools@8.1.11(prettier@3.3.2)': - dependencies: - '@storybook/core-common': 8.1.11(prettier@3.3.2) - '@storybook/core-events': 8.1.11 - '@storybook/preview-api': 8.1.11 - '@storybook/types': 8.1.11 - '@types/doctrine': 0.0.3 - assert: 2.1.0 - doctrine: 3.0.0 - lodash: 4.17.21 - transitivePeerDependencies: - - encoding - - prettier - - supports-color - '@storybook/global@5.0.0': {} - '@storybook/icons@1.2.9(react-dom@18.3.1)(react@18.3.1)': + '@storybook/icons@1.2.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - '@storybook/instrumenter@8.1.11': + '@storybook/instrumenter@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@storybook/channels': 8.1.11 - '@storybook/client-logger': 8.1.11 - '@storybook/core-events': 8.1.11 '@storybook/global': 5.0.0 - '@storybook/preview-api': 8.1.11 - '@vitest/utils': 1.6.0 + '@vitest/utils': 2.1.1 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) util: 0.12.5 - '@storybook/manager-api@8.1.11(react-dom@18.3.1)(react@18.3.1)': - dependencies: - '@storybook/channels': 8.1.11 - '@storybook/client-logger': 8.1.11 - '@storybook/core-events': 8.1.11 - '@storybook/csf': 0.1.9 - '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@18.3.1)(react@18.3.1) - '@storybook/router': 8.1.11 - '@storybook/theming': 8.1.11(react-dom@18.3.1)(react@18.3.1) - '@storybook/types': 8.1.11 - dequal: 2.0.3 - lodash: 4.17.21 - memoizerific: 1.11.3 - store2: 2.14.3 - telejson: 7.2.0 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - react - - react-dom - - '@storybook/manager@8.1.11': {} - - '@storybook/node-logger@8.1.11': {} - - '@storybook/preview-api@8.1.11': + '@storybook/manager-api@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@storybook/channels': 8.1.11 - '@storybook/client-logger': 8.1.11 - '@storybook/core-events': 8.1.11 - '@storybook/csf': 0.1.9 - '@storybook/global': 5.0.0 - '@storybook/types': 8.1.11 - '@types/qs': 6.9.15 - dequal: 2.0.3 - lodash: 4.17.21 - memoizerific: 1.11.3 - qs: 6.12.2 - tiny-invariant: 1.3.3 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - - '@storybook/preview@8.1.11': {} + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) - '@storybook/react-dom-shim@8.1.11(react-dom@18.3.1)(react@18.3.1)': + '@storybook/preview-api@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) - '@storybook/router@8.1.11': + '@storybook/react-dom-shim@8.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@storybook/client-logger': 8.1.11 - memoizerific: 1.11.3 - qs: 6.12.2 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) - '@storybook/svelte-vite@8.1.11(@babel/core@7.24.7)(@sveltejs/vite-plugin-svelte@3.1.1)(postcss@8.4.41)(prettier@3.3.2)(svelte@4.2.18)(typescript@5.5.3)(vite@5.3.2)': + '@storybook/svelte-vite@8.3.0(@babel/core@7.25.2)(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.47)(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(svelte@4.2.17)(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2))': dependencies: - '@storybook/builder-vite': 8.1.11(prettier@3.3.2)(typescript@5.5.3)(vite@5.3.2) - '@storybook/node-logger': 8.1.11 - '@storybook/svelte': 8.1.11(prettier@3.3.2)(svelte@4.2.18) - '@storybook/types': 8.1.11 - '@sveltejs/vite-plugin-svelte': 3.1.1(svelte@4.2.18)(vite@5.3.2) + '@storybook/builder-vite': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) + '@storybook/svelte': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(svelte@4.2.17) + '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) magic-string: 0.30.10 - svelte: 4.2.18 - svelte-preprocess: 5.1.4(@babel/core@7.24.7)(postcss@8.4.41)(svelte@4.2.18)(typescript@5.5.3) + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) + svelte: 4.2.17 + svelte-preprocess: 5.1.3(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.47)(svelte@4.2.17)(typescript@5.4.5) sveltedoc-parser: 4.2.1 ts-dedent: 2.2.0 - vite: 5.3.2(@types/node@20.14.9) + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) transitivePeerDependencies: - '@babel/core' - '@preact/preset-vite' - coffeescript - - encoding - less - postcss - postcss-load-config - - prettier - pug - sass - stylus @@ -17217,43 +18001,40 @@ snapshots: - supports-color - typescript - vite-plugin-glimmerx + - webpack-sources - '@storybook/svelte@8.1.11(prettier@3.3.2)(svelte@4.2.18)': + '@storybook/svelte@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(svelte@4.2.17)': dependencies: - '@storybook/client-logger': 8.1.11 - '@storybook/core-events': 8.1.11 - '@storybook/docs-tools': 8.1.11(prettier@3.3.2) + '@storybook/components': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) '@storybook/global': 5.0.0 - '@storybook/preview-api': 8.1.11 - '@storybook/types': 8.1.11 - svelte: 4.2.18 + '@storybook/manager-api': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/preview-api': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/theming': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) + svelte: 4.2.17 sveltedoc-parser: 4.2.1 ts-dedent: 2.2.0 type-fest: 2.19.0 transitivePeerDependencies: - - encoding - - prettier - supports-color - '@storybook/sveltekit@8.1.11(@babel/core@7.24.7)(@sveltejs/vite-plugin-svelte@3.1.1)(postcss@8.4.41)(prettier@3.3.2)(svelte@4.2.18)(typescript@5.5.3)(vite@5.3.2)': + '@storybook/sveltekit@8.3.0(@babel/core@7.25.2)(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.47)(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(svelte@4.2.17)(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2))': dependencies: - '@storybook/addon-actions': 8.1.11 - '@storybook/builder-vite': 8.1.11(prettier@3.3.2)(typescript@5.5.3)(vite@5.3.2) - '@storybook/svelte': 8.1.11(prettier@3.3.2)(svelte@4.2.18) - '@storybook/svelte-vite': 8.1.11(@babel/core@7.24.7)(@sveltejs/vite-plugin-svelte@3.1.1)(postcss@8.4.41)(prettier@3.3.2)(svelte@4.2.18)(typescript@5.5.3)(vite@5.3.2) - '@storybook/types': 8.1.11 - svelte: 4.2.18 - vite: 5.3.2(@types/node@20.14.9) + '@storybook/addon-actions': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@storybook/builder-vite': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) + '@storybook/svelte': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(svelte@4.2.17) + '@storybook/svelte-vite': 8.3.0(@babel/core@7.25.2)(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.47)(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(svelte@4.2.17)(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) + svelte: 4.2.17 + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) transitivePeerDependencies: - '@babel/core' - '@preact/preset-vite' - '@sveltejs/vite-plugin-svelte' - coffeescript - - encoding - less - postcss - postcss-load-config - - prettier - pug - sass - stylus @@ -17261,167 +18042,191 @@ snapshots: - supports-color - typescript - vite-plugin-glimmerx + - webpack-sources - '@storybook/telemetry@8.1.11(prettier@3.3.2)': + '@storybook/test@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@storybook/client-logger': 8.1.11 - '@storybook/core-common': 8.1.11(prettier@3.3.2) - '@storybook/csf-tools': 8.1.11 - chalk: 4.1.2 - detect-package-manager: 2.0.1 - fetch-retry: 5.0.6 - fs-extra: 11.2.0 - read-pkg-up: 7.0.1 - transitivePeerDependencies: - - encoding - - prettier - - supports-color + '@storybook/csf': 0.1.11 + '@storybook/global': 5.0.0 + '@storybook/instrumenter': 8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + '@testing-library/dom': 10.4.0 + '@testing-library/jest-dom': 6.5.0 + '@testing-library/user-event': 14.5.2(@testing-library/dom@10.4.0) + '@vitest/expect': 2.0.5 + '@vitest/spy': 2.0.5 + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) + util: 0.12.5 - '@storybook/test@8.1.11(vitest@1.6.0)': + '@storybook/theming@8.3.0(storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))': dependencies: - '@storybook/client-logger': 8.1.11 - '@storybook/core-events': 8.1.11 - '@storybook/instrumenter': 8.1.11 - '@storybook/preview-api': 8.1.11 - '@testing-library/dom': 10.1.0 - '@testing-library/jest-dom': 6.4.5(vitest@1.6.0) - '@testing-library/user-event': 14.5.2(@testing-library/dom@10.1.0) - '@vitest/expect': 1.6.0 - '@vitest/spy': 1.6.0 - util: 0.12.5 - transitivePeerDependencies: - - '@jest/globals' - - '@types/bun' - - '@types/jest' - - jest - - vitest + storybook: 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) - '@storybook/theming@8.1.11(react-dom@18.3.1)(react@18.3.1)': + '@sveltejs/adapter-auto@3.2.0(@sveltejs/kit@2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)))': dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) - '@storybook/client-logger': 8.1.11 - '@storybook/global': 5.0.0 - memoizerific: 1.11.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@sveltejs/kit': 2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)) + import-meta-resolve: 4.0.0 - '@storybook/types@8.1.11': + '@sveltejs/adapter-auto@3.2.0(@sveltejs/kit@2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)))': dependencies: - '@storybook/channels': 8.1.11 - '@types/express': 4.17.21 - file-system-cache: 2.3.0 + '@sveltejs/kit': 2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)) + import-meta-resolve: 4.0.0 + + '@sveltejs/adapter-auto@3.2.0(@sveltejs/kit@2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))': + dependencies: + '@sveltejs/kit': 2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) + import-meta-resolve: 4.0.0 - '@sveltejs/adapter-auto@3.2.2(@sveltejs/kit@2.5.24)': + '@sveltejs/kit@2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2))': dependencies: - '@sveltejs/kit': 2.5.24(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@5.3.2) + '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)) + '@types/cookie': 0.6.0 + cookie: 0.6.0 + devalue: 5.0.0 + esm-env: 1.0.0 import-meta-resolve: 4.1.0 + kleur: 4.1.5 + magic-string: 0.30.10 + mrmime: 2.0.0 + sade: 1.8.1 + set-cookie-parser: 2.6.0 + sirv: 2.0.4 + svelte: 4.2.13 + tiny-glob: 0.2.9 + vite: 4.5.3(@types/node@20.12.7)(terser@5.27.2) - '@sveltejs/kit@2.5.24(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@4.5.3)': + '@sveltejs/kit@2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2))': dependencies: - '@sveltejs/vite-plugin-svelte': 3.1.1(svelte@4.2.18)(vite@4.5.3) + '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)) '@types/cookie': 0.6.0 cookie: 0.6.0 devalue: 5.0.0 esm-env: 1.0.0 import-meta-resolve: 4.1.0 kleur: 4.1.5 - magic-string: 0.30.11 + magic-string: 0.30.10 mrmime: 2.0.0 sade: 1.8.1 set-cookie-parser: 2.6.0 sirv: 2.0.4 - svelte: 4.2.18 + svelte: 4.2.13 tiny-glob: 0.2.9 - vite: 4.5.3 + vite: 5.1.3(@types/node@20.12.7)(terser@5.27.2) - '@sveltejs/kit@2.5.24(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@5.3.2)': + '@sveltejs/kit@2.5.27(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2))': dependencies: - '@sveltejs/vite-plugin-svelte': 3.1.1(svelte@4.2.18)(vite@5.3.2) + '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) '@types/cookie': 0.6.0 cookie: 0.6.0 devalue: 5.0.0 esm-env: 1.0.0 import-meta-resolve: 4.1.0 kleur: 4.1.5 - magic-string: 0.30.11 + magic-string: 0.30.10 mrmime: 2.0.0 sade: 1.8.1 set-cookie-parser: 2.6.0 sirv: 2.0.4 - svelte: 4.2.18 + svelte: 4.2.17 tiny-glob: 0.2.9 - vite: 5.3.2(@types/node@20.14.9) + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) - '@sveltejs/package@2.3.2(svelte@4.2.18)(typescript@5.5.3)': + '@sveltejs/package@2.3.5(svelte@4.2.17)(typescript@5.4.5)': dependencies: - chokidar: 3.6.0 + chokidar: 4.0.0 kleur: 4.1.5 sade: 1.8.1 semver: 7.6.2 - svelte: 4.2.18 - svelte2tsx: 0.7.13(svelte@4.2.18)(typescript@5.5.3) + svelte: 4.2.17 + svelte2tsx: 0.7.19(svelte@4.2.17)(typescript@5.4.5) transitivePeerDependencies: - typescript - '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@4.5.3)': + '@sveltejs/vite-plugin-svelte-inspector@2.0.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2))': + dependencies: + '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)) + debug: 4.3.4 + svelte: 4.2.13 + vite: 4.5.3(@types/node@20.12.7)(terser@5.27.2) + transitivePeerDependencies: + - supports-color + + '@sveltejs/vite-plugin-svelte-inspector@2.0.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2))': dependencies: - '@sveltejs/vite-plugin-svelte': 3.1.1(svelte@4.2.18)(vite@4.5.3) - debug: 4.3.5 - svelte: 4.2.18 - vite: 4.5.3 + '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)) + debug: 4.3.4 + svelte: 4.2.13 + vite: 5.1.3(@types/node@20.12.7)(terser@5.27.2) transitivePeerDependencies: - supports-color - '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@5.3.2)': + '@sveltejs/vite-plugin-svelte-inspector@2.0.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2))': dependencies: - '@sveltejs/vite-plugin-svelte': 3.1.1(svelte@4.2.18)(vite@5.3.2) - debug: 4.3.5 - svelte: 4.2.18 - vite: 5.3.2(@types/node@20.14.9) + '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) + debug: 4.3.4 + svelte: 4.2.17 + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) transitivePeerDependencies: - supports-color - '@sveltejs/vite-plugin-svelte@3.1.1(svelte@4.2.18)(vite@4.5.3)': + '@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@4.5.3) - debug: 4.3.5 + '@sveltejs/vite-plugin-svelte-inspector': 2.0.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)) + debug: 4.3.4 deepmerge: 4.3.1 kleur: 4.1.5 - magic-string: 0.30.10 - svelte: 4.2.18 - svelte-hmr: 0.16.0(svelte@4.2.18) - vite: 4.5.3 - vitefu: 0.2.5(vite@4.5.3) + magic-string: 0.30.9 + svelte: 4.2.13 + svelte-hmr: 0.16.0(svelte@4.2.13) + vite: 4.5.3(@types/node@20.12.7)(terser@5.27.2) + vitefu: 0.2.5(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)) transitivePeerDependencies: - supports-color - '@sveltejs/vite-plugin-svelte@3.1.1(svelte@4.2.18)(vite@5.3.2)': + '@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.1)(svelte@4.2.18)(vite@5.3.2) - debug: 4.3.5 + '@sveltejs/vite-plugin-svelte-inspector': 2.0.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.13)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)) + debug: 4.3.4 deepmerge: 4.3.1 kleur: 4.1.5 - magic-string: 0.30.10 - svelte: 4.2.18 - svelte-hmr: 0.16.0(svelte@4.2.18) - vite: 5.3.2(@types/node@20.14.9) - vitefu: 0.2.5(vite@5.3.2) + magic-string: 0.30.9 + svelte: 4.2.13 + svelte-hmr: 0.16.0(svelte@4.2.13) + vite: 5.1.3(@types/node@20.12.7)(terser@5.27.2) + vitefu: 0.2.5(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)) + transitivePeerDependencies: + - supports-color + + '@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2))': + dependencies: + '@sveltejs/vite-plugin-svelte-inspector': 2.0.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) + debug: 4.3.4 + deepmerge: 4.3.1 + kleur: 4.1.5 + magic-string: 0.30.9 + svelte: 4.2.17 + svelte-hmr: 0.16.0(svelte@4.2.17) + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) + vitefu: 0.2.5(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)) transitivePeerDependencies: - supports-color + '@szmarczak/http-timer@4.0.6': + dependencies: + defer-to-connect: 2.0.1 + '@szmarczak/http-timer@5.0.1': dependencies: defer-to-connect: 2.0.1 - '@tailwindcss/nesting@0.0.0-insiders.565cd3e(postcss@8.4.39)': + '@tailwindcss/nesting@0.0.0-insiders.565cd3e(postcss@8.4.38)': dependencies: - postcss: 8.4.39 - postcss-nested: 5.0.6(postcss@8.4.39) + postcss: 8.4.38 + postcss-nested: 5.0.6(postcss@8.4.38) - '@testing-library/dom@10.1.0': + '@testing-library/dom@10.4.0': dependencies: - '@babel/code-frame': 7.24.7 - '@babel/runtime': 7.24.7 + '@babel/code-frame': 7.24.2 + '@babel/runtime': 7.23.9 '@types/aria-query': 5.0.4 aria-query: 5.3.0 chalk: 4.1.2 @@ -17429,21 +18234,19 @@ snapshots: lz-string: 1.5.0 pretty-format: 27.5.1 - '@testing-library/jest-dom@6.4.5(vitest@1.6.0)': + '@testing-library/jest-dom@6.5.0': dependencies: '@adobe/css-tools': 4.4.0 - '@babel/runtime': 7.24.7 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 lodash: 4.17.21 redent: 3.0.0 - vitest: 1.6.0(jsdom@24.1.0) - '@testing-library/user-event@14.5.2(@testing-library/dom@10.1.0)': + '@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)': dependencies: - '@testing-library/dom': 10.1.0 + '@testing-library/dom': 10.4.0 '@ts-morph/common@0.20.0': dependencies: @@ -17452,7 +18255,7 @@ snapshots: mkdirp: 2.1.6 path-browserify: 1.0.1 - '@tsconfig/node10@1.0.11': {} + '@tsconfig/node10@1.0.9': {} '@tsconfig/node12@1.0.11': {} @@ -17468,64 +18271,62 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.25.3 - '@babel/types': 7.25.2 + '@babel/parser': 7.24.5 + '@babel/types': 7.25.6 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.6 + '@types/babel__traverse': 7.20.5 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.25.6 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.25.3 - '@babel/types': 7.25.2 + '@babel/parser': 7.24.5 + '@babel/types': 7.25.6 - '@types/babel__traverse@7.20.6': + '@types/babel__traverse@7.20.5': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.25.6 '@types/bn.js@5.1.5': dependencies: - '@types/node': 20.14.9 + '@types/node': 20.12.7 '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.14.9 + '@types/node': 20.12.7 - '@types/connect@3.4.38': + '@types/cacheable-request@6.0.3': dependencies: - '@types/node': 20.14.9 + '@types/http-cache-semantics': 4.0.4 + '@types/keyv': 3.1.4 + '@types/node': 20.12.7 + '@types/responselike': 1.0.3 - '@types/cookie@0.6.0': {} + '@types/chrome@0.0.136': + dependencies: + '@types/filesystem': 0.0.35 + '@types/har-format': 1.2.15 - '@types/cross-spawn@6.0.6': + '@types/connect@3.4.38': dependencies: - '@types/node': 20.14.9 + '@types/node': 20.12.7 + + '@types/cookie@0.6.0': {} '@types/debug@4.1.12': dependencies: '@types/ms': 0.7.34 - '@types/detect-port@1.3.5': {} - - '@types/diff@5.2.1': {} - '@types/dns-packet@5.6.5': dependencies: - '@types/node': 20.14.9 - - '@types/doctrine@0.0.3': {} + '@types/node': 20.12.7 '@types/dom-screen-wake-lock@1.0.3': {} - '@types/ejs@3.1.5': {} - - '@types/emscripten@1.39.13': {} - '@types/eslint@8.56.10': dependencies: '@types/estree': 1.0.5 @@ -17539,8 +18340,8 @@ snapshots: '@types/express-serve-static-core@4.19.5': dependencies: - '@types/node': 20.14.9 - '@types/qs': 6.9.15 + '@types/node': 20.12.7 + '@types/qs': 6.9.16 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -17548,11 +18349,19 @@ snapshots: dependencies: '@types/body-parser': 1.19.5 '@types/express-serve-static-core': 4.19.5 - '@types/qs': 6.9.15 + '@types/qs': 6.9.16 '@types/serve-static': 1.15.7 + '@types/filesystem@0.0.35': + dependencies: + '@types/filewriter': 0.0.33 + + '@types/filewriter@0.0.33': {} + '@types/find-cache-dir@3.2.1': {} + '@types/har-format@1.2.15': {} + '@types/hast@3.0.4': dependencies: '@types/unist': 3.0.2 @@ -17580,7 +18389,11 @@ snapshots: '@types/json5@0.0.29': {} - '@types/lodash@4.17.6': {} + '@types/keyv@3.1.4': + dependencies: + '@types/node': 20.12.7 + + '@types/lodash@4.17.7': {} '@types/mdast@4.0.4': dependencies: @@ -17598,64 +18411,64 @@ snapshots: dependencies: '@types/unist': 3.0.2 - '@types/node-forge@1.3.11': - dependencies: - '@types/node': 20.14.9 - '@types/node@12.20.55': {} '@types/node@17.0.45': {} - '@types/node@18.19.39': + '@types/node@18.15.13': {} + + '@types/node@18.19.31': dependencies: undici-types: 5.26.5 - '@types/node@20.14.9': + '@types/node@20.12.7': dependencies: undici-types: 5.26.5 - '@types/normalize-package-data@2.4.4': {} - '@types/object-hash@3.0.6': {} + '@types/parse-json@4.0.2': {} + '@types/pbkdf2@3.1.2': dependencies: - '@types/node': 20.14.9 - - '@types/pretty-hrtime@1.0.3': {} + '@types/node': 20.12.7 '@types/prop-types@15.7.12': {} '@types/pug@2.0.10': {} - '@types/qs@6.9.15': {} + '@types/qs@6.9.16': {} '@types/range-parser@1.2.7': {} - '@types/react@18.3.3': + '@types/react@18.3.5': dependencies: '@types/prop-types': 15.7.12 csstype: 3.1.3 + '@types/responselike@1.0.3': + dependencies: + '@types/node': 20.12.7 + '@types/sax@1.2.7': dependencies: - '@types/node': 20.14.9 + '@types/node': 20.12.7 '@types/secp256k1@4.0.6': dependencies: - '@types/node': 20.14.9 + '@types/node': 20.12.7 - '@types/semver@7.5.8': {} + '@types/semver@7.5.7': {} '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.14.9 + '@types/node': 20.12.7 '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.14.9 + '@types/node': 20.12.7 '@types/send': 0.17.4 '@types/stack-utils@2.0.3': {} @@ -17666,6 +18479,8 @@ snapshots: '@types/unist@3.0.2': {} + '@types/uuid@10.0.0': {} + '@types/uuid@9.0.8': {} '@types/yargs-parser@21.0.3': {} @@ -17678,109 +18493,374 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@7.15.0(@typescript-eslint/parser@7.15.0)(eslint@8.57.0)(typescript@5.5.3)': + '@typescript-eslint/eslint-plugin@7.4.0(@typescript-eslint/parser@7.7.0(eslint@8.55.0)(typescript@5.4.3))(eslint@8.55.0)(typescript@5.4.3)': dependencies: - '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 7.15.0(eslint@8.57.0)(typescript@5.5.3) - '@typescript-eslint/scope-manager': 7.15.0 - '@typescript-eslint/type-utils': 7.15.0(eslint@8.57.0)(typescript@5.5.3) - '@typescript-eslint/utils': 7.15.0(eslint@8.57.0)(typescript@5.5.3) - '@typescript-eslint/visitor-keys': 7.15.0 - eslint: 8.57.0 + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 7.7.0(eslint@8.55.0)(typescript@5.4.3) + '@typescript-eslint/scope-manager': 7.4.0 + '@typescript-eslint/type-utils': 7.4.0(eslint@8.55.0)(typescript@5.4.3) + '@typescript-eslint/utils': 7.4.0(eslint@8.55.0)(typescript@5.4.3) + '@typescript-eslint/visitor-keys': 7.4.0 + debug: 4.3.4 + eslint: 8.55.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.5.3) - typescript: 5.5.3 + semver: 7.6.0 + ts-api-utils: 1.2.1(typescript@5.4.3) + optionalDependencies: + typescript: 5.4.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.15.0(eslint@8.57.0)(typescript@5.5.3)': + '@typescript-eslint/eslint-plugin@7.4.0(@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0)(typescript@5.4.3)': dependencies: - '@typescript-eslint/scope-manager': 7.15.0 - '@typescript-eslint/types': 7.15.0 - '@typescript-eslint/typescript-estree': 7.15.0(typescript@5.5.3) - '@typescript-eslint/visitor-keys': 7.15.0 - debug: 4.3.5 - eslint: 8.57.0 - typescript: 5.5.3 + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 7.7.0(eslint@8.56.0)(typescript@5.4.3) + '@typescript-eslint/scope-manager': 7.4.0 + '@typescript-eslint/type-utils': 7.4.0(eslint@8.56.0)(typescript@5.4.3) + '@typescript-eslint/utils': 7.4.0(eslint@8.56.0)(typescript@5.4.3) + '@typescript-eslint/visitor-keys': 7.4.0 + debug: 4.3.4 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + semver: 7.6.0 + ts-api-utils: 1.2.1(typescript@5.4.3) + optionalDependencies: + typescript: 5.4.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@5.62.0': - dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 - - '@typescript-eslint/scope-manager@7.15.0': - dependencies: - '@typescript-eslint/types': 7.15.0 - '@typescript-eslint/visitor-keys': 7.15.0 - - '@typescript-eslint/type-utils@7.15.0(eslint@8.57.0)(typescript@5.5.3)': + '@typescript-eslint/eslint-plugin@7.9.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0)(typescript@5.4.3)': dependencies: - '@typescript-eslint/typescript-estree': 7.15.0(typescript@5.5.3) - '@typescript-eslint/utils': 7.15.0(eslint@8.57.0)(typescript@5.5.3) - debug: 4.3.5 - eslint: 8.57.0 - ts-api-utils: 1.3.0(typescript@5.5.3) - typescript: 5.5.3 + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 7.9.0(eslint@8.56.0)(typescript@5.4.3) + '@typescript-eslint/scope-manager': 7.9.0 + '@typescript-eslint/type-utils': 7.9.0(eslint@8.56.0)(typescript@5.4.3) + '@typescript-eslint/utils': 7.9.0(eslint@8.56.0)(typescript@5.4.3) + '@typescript-eslint/visitor-keys': 7.9.0 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + ts-api-utils: 1.3.0(typescript@5.4.3) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@7.9.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5)': + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 7.9.0(eslint@8.56.0)(typescript@5.4.5) + '@typescript-eslint/scope-manager': 7.9.0 + '@typescript-eslint/type-utils': 7.9.0(eslint@8.56.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.9.0(eslint@8.56.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.9.0 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + ts-api-utils: 1.3.0(typescript@5.4.5) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@7.7.0(eslint@8.55.0)(typescript@5.4.3)': + dependencies: + '@typescript-eslint/scope-manager': 7.7.0 + '@typescript-eslint/types': 7.7.0 + '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.3) + '@typescript-eslint/visitor-keys': 7.7.0 + debug: 4.3.4 + eslint: 8.55.0 + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3)': + dependencies: + '@typescript-eslint/scope-manager': 7.7.0 + '@typescript-eslint/types': 7.7.0 + '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.3) + '@typescript-eslint/visitor-keys': 7.7.0 + debug: 4.3.4 + eslint: 8.56.0 + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.3)': + dependencies: + '@typescript-eslint/scope-manager': 7.9.0 + '@typescript-eslint/types': 7.9.0 + '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.4.3) + '@typescript-eslint/visitor-keys': 7.9.0 + debug: 4.3.4 + eslint: 8.56.0 + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5)': + dependencies: + '@typescript-eslint/scope-manager': 7.9.0 + '@typescript-eslint/types': 7.9.0 + '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.9.0 + debug: 4.3.4 + eslint: 8.56.0 + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@5.62.0': + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + + '@typescript-eslint/scope-manager@7.4.0': + dependencies: + '@typescript-eslint/types': 7.4.0 + '@typescript-eslint/visitor-keys': 7.4.0 + + '@typescript-eslint/scope-manager@7.7.0': + dependencies: + '@typescript-eslint/types': 7.7.0 + '@typescript-eslint/visitor-keys': 7.7.0 + + '@typescript-eslint/scope-manager@7.9.0': + dependencies: + '@typescript-eslint/types': 7.9.0 + '@typescript-eslint/visitor-keys': 7.9.0 + + '@typescript-eslint/type-utils@7.4.0(eslint@8.55.0)(typescript@5.4.3)': + dependencies: + '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.4.3) + '@typescript-eslint/utils': 7.4.0(eslint@8.55.0)(typescript@5.4.3) + debug: 4.3.4 + eslint: 8.55.0 + ts-api-utils: 1.2.1(typescript@5.4.3) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/type-utils@7.4.0(eslint@8.56.0)(typescript@5.4.3)': + dependencies: + '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.4.3) + '@typescript-eslint/utils': 7.4.0(eslint@8.56.0)(typescript@5.4.3) + debug: 4.3.4 + eslint: 8.56.0 + ts-api-utils: 1.2.1(typescript@5.4.3) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/type-utils@7.9.0(eslint@8.56.0)(typescript@5.4.3)': + dependencies: + '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.4.3) + '@typescript-eslint/utils': 7.9.0(eslint@8.56.0)(typescript@5.4.3) + debug: 4.3.4 + eslint: 8.56.0 + ts-api-utils: 1.3.0(typescript@5.4.3) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/type-utils@7.9.0(eslint@8.56.0)(typescript@5.4.5)': + dependencies: + '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.4.5) + '@typescript-eslint/utils': 7.9.0(eslint@8.56.0)(typescript@5.4.5) + debug: 4.3.4 + eslint: 8.56.0 + ts-api-utils: 1.3.0(typescript@5.4.5) + optionalDependencies: + typescript: 5.4.5 transitivePeerDependencies: - supports-color '@typescript-eslint/types@5.62.0': {} - '@typescript-eslint/types@7.15.0': {} + '@typescript-eslint/types@7.4.0': {} + + '@typescript-eslint/types@7.7.0': {} + + '@typescript-eslint/types@7.9.0': {} - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.3)': + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.3)': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.5 + debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.6.3 - tsutils: 3.21.0(typescript@5.5.3) - typescript: 5.5.3 + semver: 7.6.2 + tsutils: 3.21.0(typescript@5.4.3) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5)': + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.6.2 + tsutils: 3.21.0(typescript@5.4.5) + optionalDependencies: + typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.15.0(typescript@5.5.3)': + '@typescript-eslint/typescript-estree@7.4.0(typescript@5.4.3)': dependencies: - '@typescript-eslint/types': 7.15.0 - '@typescript-eslint/visitor-keys': 7.15.0 - debug: 4.3.5 + '@typescript-eslint/types': 7.4.0 + '@typescript-eslint/visitor-keys': 7.4.0 + debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - minimatch: 9.0.5 + minimatch: 9.0.3 semver: 7.6.2 - ts-api-utils: 1.3.0(typescript@5.5.3) - typescript: 5.5.3 + ts-api-utils: 1.3.0(typescript@5.4.3) + optionalDependencies: + typescript: 5.4.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.5.3)': + '@typescript-eslint/typescript-estree@7.7.0(typescript@5.4.3)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@typescript-eslint/types': 7.7.0 + '@typescript-eslint/visitor-keys': 7.7.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.4 + semver: 7.6.0 + ts-api-utils: 1.3.0(typescript@5.4.3) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@7.9.0(typescript@5.4.3)': + dependencies: + '@typescript-eslint/types': 7.9.0 + '@typescript-eslint/visitor-keys': 7.9.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.4 + semver: 7.6.2 + ts-api-utils: 1.3.0(typescript@5.4.3) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@7.9.0(typescript@5.4.5)': + dependencies: + '@typescript-eslint/types': 7.9.0 + '@typescript-eslint/visitor-keys': 7.9.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.4 + semver: 7.6.2 + ts-api-utils: 1.3.0(typescript@5.4.5) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.4.3)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.7 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3) + eslint: 8.56.0 + eslint-scope: 5.1.1 + semver: 7.6.2 + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.4.5)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) '@types/json-schema': 7.0.15 - '@types/semver': 7.5.8 + '@types/semver': 7.5.7 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) - eslint: 8.57.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) + eslint: 8.56.0 eslint-scope: 5.1.1 semver: 7.6.2 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@7.15.0(eslint@8.57.0)(typescript@5.5.3)': + '@typescript-eslint/utils@7.4.0(eslint@8.55.0)(typescript@5.4.3)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.7 + '@typescript-eslint/scope-manager': 7.4.0 + '@typescript-eslint/types': 7.4.0 + '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.4.3) + eslint: 8.55.0 + semver: 7.6.2 + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/utils@7.4.0(eslint@8.56.0)(typescript@5.4.3)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.7 + '@typescript-eslint/scope-manager': 7.4.0 + '@typescript-eslint/types': 7.4.0 + '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.4.3) + eslint: 8.56.0 + semver: 7.6.2 + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/utils@7.9.0(eslint@8.56.0)(typescript@5.4.3)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@typescript-eslint/scope-manager': 7.15.0 - '@typescript-eslint/types': 7.15.0 - '@typescript-eslint/typescript-estree': 7.15.0(typescript@5.5.3) - eslint: 8.57.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@typescript-eslint/scope-manager': 7.9.0 + '@typescript-eslint/types': 7.9.0 + '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.4.3) + eslint: 8.56.0 + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/utils@7.9.0(eslint@8.56.0)(typescript@5.4.5)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@typescript-eslint/scope-manager': 7.9.0 + '@typescript-eslint/types': 7.9.0 + '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.4.5) + eslint: 8.56.0 transitivePeerDependencies: - supports-color - typescript @@ -17790,53 +18870,112 @@ snapshots: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@7.15.0': + '@typescript-eslint/visitor-keys@7.4.0': + dependencies: + '@typescript-eslint/types': 7.4.0 + eslint-visitor-keys: 3.4.3 + + '@typescript-eslint/visitor-keys@7.7.0': + dependencies: + '@typescript-eslint/types': 7.7.0 + eslint-visitor-keys: 3.4.3 + + '@typescript-eslint/visitor-keys@7.9.0': dependencies: - '@typescript-eslint/types': 7.15.0 + '@typescript-eslint/types': 7.9.0 eslint-visitor-keys: 3.4.3 '@ungap/structured-clone@1.2.0': {} - '@vitest/coverage-v8@1.6.0(vitest@1.6.0)': + '@vitest/coverage-v8@1.4.0(vitest@1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2))': dependencies: - '@ampproject/remapping': 2.3.0 + '@ampproject/remapping': 2.2.1 '@bcoe/v8-coverage': 0.2.3 - debug: 4.3.5 + debug: 4.3.4 istanbul-lib-coverage: 3.2.2 istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 5.0.5 + istanbul-lib-source-maps: 5.0.4 istanbul-reports: 3.1.7 - magic-string: 0.30.10 - magicast: 0.3.4 - picocolors: 1.0.1 + magic-string: 0.30.7 + magicast: 0.3.3 + picocolors: 1.0.0 std-env: 3.7.0 - strip-literal: 2.1.0 + strip-literal: 2.0.0 test-exclude: 6.0.0 - vitest: 1.6.0(jsdom@24.1.0) + v8-to-istanbul: 9.2.0 + vitest: 1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2) transitivePeerDependencies: - supports-color + '@vitest/expect@1.5.0': + dependencies: + '@vitest/spy': 1.5.0 + '@vitest/utils': 1.5.0 + chai: 4.4.1 + '@vitest/expect@1.6.0': dependencies: '@vitest/spy': 1.6.0 '@vitest/utils': 1.6.0 chai: 4.4.1 + '@vitest/expect@2.0.5': + dependencies: + '@vitest/spy': 2.0.5 + '@vitest/utils': 2.0.5 + chai: 5.1.1 + tinyrainbow: 1.2.0 + + '@vitest/pretty-format@2.0.5': + dependencies: + tinyrainbow: 1.2.0 + + '@vitest/pretty-format@2.1.1': + dependencies: + tinyrainbow: 1.2.0 + + '@vitest/runner@1.5.0': + dependencies: + '@vitest/utils': 1.5.0 + p-limit: 5.0.0 + pathe: 1.1.2 + '@vitest/runner@1.6.0': dependencies: '@vitest/utils': 1.6.0 p-limit: 5.0.0 pathe: 1.1.2 - '@vitest/snapshot@1.6.0': + '@vitest/snapshot@1.5.0': dependencies: magic-string: 0.30.10 pathe: 1.1.2 pretty-format: 29.7.0 + '@vitest/snapshot@1.6.0': + dependencies: + magic-string: 0.30.9 + pathe: 1.1.2 + pretty-format: 29.7.0 + + '@vitest/spy@1.5.0': + dependencies: + tinyspy: 2.2.0 + '@vitest/spy@1.6.0': dependencies: - tinyspy: 2.2.1 + tinyspy: 2.2.0 + + '@vitest/spy@2.0.5': + dependencies: + tinyspy: 3.0.2 + + '@vitest/utils@1.5.0': + dependencies: + diff-sequences: 29.6.3 + estree-walker: 3.0.3 + loupe: 2.3.7 + pretty-format: 29.7.0 '@vitest/utils@1.6.0': dependencies: @@ -17845,25 +18984,37 @@ snapshots: loupe: 2.3.7 pretty-format: 29.7.0 - '@volar/kit@2.4.0-alpha.18(typescript@5.5.3)': + '@vitest/utils@2.0.5': + dependencies: + '@vitest/pretty-format': 2.0.5 + estree-walker: 3.0.3 + loupe: 3.1.1 + tinyrainbow: 1.2.0 + + '@vitest/utils@2.1.1': + dependencies: + '@vitest/pretty-format': 2.1.1 + loupe: 3.1.1 + tinyrainbow: 1.2.0 + + '@volar/kit@2.4.5(typescript@5.4.5)': dependencies: - '@volar/language-service': 2.4.0-alpha.18 - '@volar/typescript': 2.4.0-alpha.18 + '@volar/language-service': 2.4.5 + '@volar/typescript': 2.4.5 typesafe-path: 0.2.2 - typescript: 5.5.3 + typescript: 5.4.5 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 - '@volar/language-core@2.4.0-alpha.18': + '@volar/language-core@2.4.5': dependencies: - '@volar/source-map': 2.4.0-alpha.18 + '@volar/source-map': 2.4.5 - '@volar/language-server@2.4.0-alpha.18': + '@volar/language-server@2.4.5': dependencies: - '@volar/language-core': 2.4.0-alpha.18 - '@volar/language-service': 2.4.0-alpha.18 - '@volar/snapshot-document': 2.4.0-alpha.18 - '@volar/typescript': 2.4.0-alpha.18 + '@volar/language-core': 2.4.5 + '@volar/language-service': 2.4.5 + '@volar/typescript': 2.4.5 path-browserify: 1.0.1 request-light: 0.7.0 vscode-languageserver: 9.0.1 @@ -17871,23 +19022,18 @@ snapshots: vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 - '@volar/language-service@2.4.0-alpha.18': + '@volar/language-service@2.4.5': dependencies: - '@volar/language-core': 2.4.0-alpha.18 + '@volar/language-core': 2.4.5 vscode-languageserver-protocol: 3.17.5 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 - '@volar/snapshot-document@2.4.0-alpha.18': - dependencies: - vscode-languageserver-protocol: 3.17.5 - vscode-languageserver-textdocument: 1.0.11 + '@volar/source-map@2.4.5': {} - '@volar/source-map@2.4.0-alpha.18': {} - - '@volar/typescript@2.4.0-alpha.18': + '@volar/typescript@2.4.5': dependencies: - '@volar/language-core': 2.4.0-alpha.18 + '@volar/language-core': 2.4.5 path-browserify: 1.0.1 vscode-uri: 3.0.8 @@ -17901,10 +19047,10 @@ snapshots: '@vscode/l10n@0.0.18': {} - '@wagmi/cli@2.1.13(typescript@5.5.3)': + '@wagmi/cli@2.1.15(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)': dependencies: - abitype: 1.0.5(typescript@5.5.3)(zod@3.23.8) - bundle-require: 4.2.1(esbuild@0.19.12) + abitype: 1.0.6(typescript@5.4.5)(zod@3.23.8) + bundle-require: 4.0.2(esbuild@0.19.12) cac: 6.7.14 change-case: 5.4.4 chokidar: 3.6.0 @@ -17913,32 +19059,276 @@ snapshots: dotenv-expand: 10.0.0 esbuild: 0.19.12 execa: 8.0.1 - fdir: 6.1.1(picomatch@3.0.1) + fdir: 6.3.0(picomatch@3.0.1) find-up: 6.3.0 fs-extra: 11.2.0 ora: 6.3.1 pathe: 1.1.2 - picocolors: 1.0.1 + picocolors: 1.0.0 picomatch: 3.0.1 - prettier: 3.3.2 - typescript: 5.5.3 - viem: 2.16.5(typescript@5.5.3)(zod@3.23.8) + prettier: 3.2.5 + viem: 2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) zod: 3.23.8 + optionalDependencies: + typescript: 5.4.5 transitivePeerDependencies: - bufferutil - utf-8-validate - '@wagmi/connectors@4.3.10(@wagmi/core@2.11.6)(react-i18next@13.5.0)(react-native@0.74.3)(react@18.3.1)(typescript@5.5.3)(viem@2.16.5)': + '@wagmi/cli@2.1.4(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)': + dependencies: + abitype: 0.9.10(typescript@5.4.3)(zod@3.22.4) + bundle-require: 4.0.2(esbuild@0.19.12) + cac: 6.7.14 + change-case: 4.1.2 + chokidar: 3.6.0 + dedent: 0.7.0 + dotenv: 16.4.5 + dotenv-expand: 10.0.0 + esbuild: 0.19.12 + execa: 8.0.1 + find-up: 6.3.0 + fs-extra: 11.2.0 + globby: 13.2.2 + ora: 6.3.1 + pathe: 1.1.2 + picocolors: 1.0.0 + prettier: 3.2.5 + viem: 2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + zod: 3.22.4 + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + '@wagmi/connectors@4.1.18(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(@wagmi/core@2.8.0(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': + dependencies: + '@coinbase/wallet-sdk': 3.9.1 + '@metamask/sdk': 0.14.3(@types/react@18.3.5)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8) + '@wagmi/core': 2.8.0(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@walletconnect/ethereum-provider': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.2(@types/react@18.3.5)(react@18.2.0) + viem: 2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - react-dom + - react-native + - rollup + - supports-color + - utf-8-validate + - zod + + '@wagmi/connectors@4.3.10(yrxxgsr3s6m7a4itnzsb2c7inm)': dependencies: '@coinbase/wallet-sdk': 3.9.1 - '@metamask/sdk': 0.20.3(react-i18next@13.5.0)(react-native@0.74.3)(react@18.3.1) - '@safe-global/safe-apps-provider': 0.18.1(typescript@5.5.3) - '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.5.3) - '@wagmi/core': 2.11.6(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) - '@walletconnect/ethereum-provider': 2.13.0(react@18.3.1) - '@walletconnect/modal': 2.6.2(react@18.3.1) - typescript: 5.5.3 - viem: 2.16.5(typescript@5.5.3)(zod@3.23.8) + '@metamask/sdk': 0.20.3(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@wagmi/core': 2.10.2(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.2(@types/react@18.3.5)(react@18.2.0) + viem: 2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - react-dom + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + - zod + + '@wagmi/connectors@5.1.10(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(@wagmi/core@2.13.5(@types/react@18.3.5)(react@18.2.0)(typescript@5.4.5)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': + dependencies: + '@coinbase/wallet-sdk': 4.0.4 + '@metamask/sdk': 0.28.2(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + '@wagmi/core': 2.13.5(@types/react@18.3.5)(react@18.2.0)(typescript@5.4.5)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)) + '@walletconnect/ethereum-provider': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.2(@types/react@18.3.5)(react@18.2.0) + cbw-sdk: '@coinbase/wallet-sdk@3.9.3' + viem: 2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - react-dom + - react-native + - rollup + - supports-color + - utf-8-validate + - zod + + '@wagmi/core@2.10.2(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + dependencies: + eventemitter3: 5.0.1 + mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + zustand: 4.4.1(@types/react@18.3.5)(react@18.2.0) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - immer + - react + - utf-8-validate + - zod + + '@wagmi/core@2.13.5(@types/react@18.3.5)(react@18.2.0)(typescript@5.4.5)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))': + dependencies: + eventemitter3: 5.0.1 + mipd: 0.0.7(typescript@5.4.5) + viem: 2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + zustand: 4.4.1(@types/react@18.3.5)(react@18.2.0) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@types/react' + - immer + - react + + '@wagmi/core@2.8.0(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': + dependencies: + eventemitter3: 5.0.1 + mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8) + viem: 2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8) + zustand: 4.4.1(@types/react@18.3.5)(react@18.2.0) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - immer + - react + - utf-8-validate + - zod + + '@wagmi/core@2.8.0(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@6.0.3)(viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@6.0.3)(zod@3.23.8))(zod@3.23.8)': + dependencies: + eventemitter3: 5.0.1 + mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@6.0.3)(zod@3.23.8) + viem: 2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@6.0.3)(zod@3.23.8) + zustand: 4.4.1(@types/react@18.3.5)(react@18.2.0) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - immer + - react + - utf-8-validate + - zod + + '@walletconnect/core@2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/relay-auth': 1.0.4 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + events: 3.3.0 + isomorphic-unfetch: 3.1.0(encoding@0.1.13) + lodash.isequal: 4.5.0 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@walletconnect/core@2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/relay-auth': 1.0.4 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + events: 3.3.0 + isomorphic-unfetch: 3.1.0(encoding@0.1.13) + lodash.isequal: 4.5.0 + uint8arrays: 3.1.1 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -17950,34 +19340,32 @@ snapshots: - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - - '@types/react' - '@upstash/redis' - '@vercel/kv' - bufferutil - encoding - - ioredis - - react - - react-dom - - react-i18next - - react-native - - rollup - supports-color - - uWebSockets.js - utf-8-validate - - zod - '@wagmi/connectors@5.0.21(@wagmi/core@2.11.6)(react-native@0.74.3)(react@18.3.1)(typescript@5.5.3)(viem@2.16.5)': + '@walletconnect/core@2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@coinbase/wallet-sdk': 4.0.4 - '@metamask/sdk': 0.26.4(react-native@0.74.3)(react@18.3.1) - '@safe-global/safe-apps-provider': 0.18.1(typescript@5.5.3) - '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.5.3) - '@wagmi/core': 2.11.6(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) - '@walletconnect/ethereum-provider': 2.13.0(react@18.3.1) - '@walletconnect/modal': 2.6.2(react@18.3.1) - cbw-sdk: '@coinbase/wallet-sdk@3.9.3' - typescript: 5.5.3 - viem: 2.16.5(typescript@5.5.3)(zod@3.23.8) + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.10 + '@walletconnect/relay-auth': 1.0.4 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + events: 3.3.0 + isomorphic-unfetch: 3.1.0(encoding@0.1.13) + lodash.isequal: 4.5.0 + uint8arrays: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -17989,53 +19377,29 @@ snapshots: - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - - '@types/react' - '@upstash/redis' - '@vercel/kv' - bufferutil - encoding - - ioredis - - react - - react-dom - - react-native - - rollup - supports-color - - uWebSockets.js - - utf-8-validate - - zod - - '@wagmi/core@2.11.6(react@18.3.1)(typescript@5.5.3)(viem@2.16.5)': - dependencies: - eventemitter3: 5.0.1 - mipd: 0.0.5(typescript@5.5.3) - typescript: 5.5.3 - viem: 2.16.5(typescript@5.5.3)(zod@3.23.8) - zustand: 4.4.1(react@18.3.1) - transitivePeerDependencies: - - '@types/react' - - bufferutil - - immer - - react - utf-8-validate - - zod - '@walletconnect/core@2.13.0': + '@walletconnect/core@2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/jsonrpc-ws-connection': 1.0.14 - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 - '@walletconnect/relay-api': 1.0.10 + '@walletconnect/relay-api': 1.0.11 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.0 - '@walletconnect/utils': 2.13.0 + '@walletconnect/types': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 - isomorphic-unfetch: 3.1.0 lodash.isequal: 4.5.0 uint8arrays: 3.1.0 transitivePeerDependencies: @@ -18052,30 +19416,25 @@ snapshots: - '@upstash/redis' - '@vercel/kv' - bufferutil - - encoding - - ioredis - - uWebSockets.js + - supports-color - utf-8-validate - '@walletconnect/core@2.13.3': + '@walletconnect/environment@1.0.1': dependencies: - '@walletconnect/heartbeat': 1.2.2 - '@walletconnect/jsonrpc-provider': 1.0.14 - '@walletconnect/jsonrpc-types': 1.0.4 + tslib: 1.14.1 + + '@walletconnect/ethereum-provider@2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/jsonrpc-ws-connection': 1.0.14 - '@walletconnect/keyvaluestorage': 1.1.1 - '@walletconnect/logger': 2.1.2 - '@walletconnect/relay-api': 1.0.10 - '@walletconnect/relay-auth': 1.0.4 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.3 - '@walletconnect/utils': 2.13.3 + '@walletconnect/modal': 2.6.2(@types/react@18.3.5)(react@18.2.0) + '@walletconnect/sign-client': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 - isomorphic-unfetch: 3.1.0 - lodash.isequal: 4.5.0 - uint8arrays: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -18087,29 +19446,58 @@ snapshots: - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' + - '@types/react' - '@upstash/redis' - '@vercel/kv' - bufferutil - encoding - - ioredis - - uWebSockets.js + - react + - supports-color - utf-8-validate - '@walletconnect/environment@1.0.1': + '@walletconnect/ethereum-provider@2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: - tslib: 1.14.1 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/modal': 2.6.2(@types/react@18.3.5)(react@18.2.0) + '@walletconnect/sign-client': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - supports-color + - utf-8-validate - '@walletconnect/ethereum-provider@2.13.0(react@18.3.1)': + '@walletconnect/ethereum-provider@2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/modal': 2.6.2(react@18.3.1) - '@walletconnect/sign-client': 2.13.0 - '@walletconnect/types': 2.13.0 - '@walletconnect/universal-provider': 2.13.0 - '@walletconnect/utils': 2.13.0 + '@walletconnect/modal': 2.6.2(@types/react@18.3.5)(react@18.2.0) + '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -18127,22 +19515,21 @@ snapshots: - '@vercel/kv' - bufferutil - encoding - - ioredis - react - - uWebSockets.js + - supports-color - utf-8-validate - '@walletconnect/ethereum-provider@2.13.3(react@18.3.1)': + '@walletconnect/ethereum-provider@2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/modal': 2.6.2(react@18.3.1) - '@walletconnect/sign-client': 2.13.3 - '@walletconnect/types': 2.13.3 - '@walletconnect/universal-provider': 2.13.3 - '@walletconnect/utils': 2.13.3 + '@walletconnect/modal': 2.6.2(@types/react@18.3.5)(react@18.2.0) + '@walletconnect/sign-client': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -18160,9 +19547,8 @@ snapshots: - '@vercel/kv' - bufferutil - encoding - - ioredis - react - - uWebSockets.js + - supports-color - utf-8-validate '@walletconnect/events@1.0.1': @@ -18182,15 +19568,30 @@ snapshots: '@walletconnect/time': 1.0.2 events: 3.3.0 - '@walletconnect/jsonrpc-http-connection@1.0.8': + '@walletconnect/jsonrpc-http-connection@1.0.7(encoding@0.1.13)': + dependencies: + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + cross-fetch: 3.1.8(encoding@0.1.13) + tslib: 1.14.1 + transitivePeerDependencies: + - encoding + + '@walletconnect/jsonrpc-http-connection@1.0.8(encoding@0.1.13)': dependencies: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/safe-json': 1.0.2 - cross-fetch: 3.1.8 + cross-fetch: 3.1.8(encoding@0.1.13) events: 3.3.0 transitivePeerDependencies: - encoding + '@walletconnect/jsonrpc-provider@1.0.13': + dependencies: + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + tslib: 1.14.1 + '@walletconnect/jsonrpc-provider@1.0.14': dependencies: '@walletconnect/jsonrpc-utils': 1.0.8 @@ -18210,24 +19611,26 @@ snapshots: '@walletconnect/jsonrpc-utils@1.0.8': dependencies: '@walletconnect/environment': 1.0.1 - '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-types': 1.0.3 tslib: 1.14.1 - '@walletconnect/jsonrpc-ws-connection@1.0.14': + '@walletconnect/jsonrpc-ws-connection@1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/safe-json': 1.0.2 events: 3.3.0 - ws: 7.5.10 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - '@walletconnect/keyvaluestorage@1.1.1': + '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/safe-json': 1.0.2 idb-keyval: 6.2.1 - unstorage: 1.10.2(idb-keyval@6.2.1) + unstorage: 1.10.1(idb-keyval@6.2.1) + optionalDependencies: + '@react-native-async-storage/async-storage': 1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -18240,24 +19643,23 @@ snapshots: - '@planetscale/database' - '@upstash/redis' - '@vercel/kv' - - ioredis - - uWebSockets.js + - supports-color '@walletconnect/logger@2.1.2': dependencies: '@walletconnect/safe-json': 1.0.2 pino: 7.11.0 - '@walletconnect/modal-core@2.6.2(react@18.3.1)': + '@walletconnect/modal-core@2.6.2(@types/react@18.3.5)(react@18.2.0)': dependencies: - valtio: 1.11.2(react@18.3.1) + valtio: 1.11.2(@types/react@18.3.5)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react - '@walletconnect/modal-ui@2.6.2(react@18.3.1)': + '@walletconnect/modal-ui@2.6.2(@types/react@18.3.5)(react@18.2.0)': dependencies: - '@walletconnect/modal-core': 2.6.2(react@18.3.1) + '@walletconnect/modal-core': 2.6.2(@types/react@18.3.5)(react@18.2.0) lit: 2.8.0 motion: 10.16.2 qrcode: 1.5.3 @@ -18265,10 +19667,10 @@ snapshots: - '@types/react' - react - '@walletconnect/modal@2.6.2(react@18.3.1)': + '@walletconnect/modal@2.6.2(@types/react@18.3.5)(react@18.2.0)': dependencies: - '@walletconnect/modal-core': 2.6.2(react@18.3.1) - '@walletconnect/modal-ui': 2.6.2(react@18.3.1) + '@walletconnect/modal-core': 2.6.2(@types/react@18.3.5)(react@18.2.0) + '@walletconnect/modal-ui': 2.6.2(@types/react@18.3.5)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react @@ -18277,6 +19679,15 @@ snapshots: dependencies: '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/relay-api@1.0.11': + dependencies: + '@walletconnect/jsonrpc-types': 1.0.4 + + '@walletconnect/relay-api@1.0.9': + dependencies: + '@walletconnect/jsonrpc-types': 1.0.3 + tslib: 1.14.1 + '@walletconnect/relay-auth@1.0.4': dependencies: '@stablelib/ed25519': 1.0.3 @@ -18284,22 +19695,184 @@ snapshots: '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 tslib: 1.14.1 - uint8arrays: 3.1.0 + uint8arrays: 3.1.1 '@walletconnect/safe-json@1.0.2': dependencies: tslib: 1.14.1 - '@walletconnect/sign-client@2.13.0': + '@walletconnect/sign-client@2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/core': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@walletconnect/sign-client@2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/core': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@walletconnect/sign-client@2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/core': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@walletconnect/sign-client@2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/core': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - supports-color + - utf-8-validate + + '@walletconnect/time@1.0.2': + dependencies: + tslib: 1.14.1 + + '@walletconnect/types@2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + + '@walletconnect/types@2.12.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/logger': 2.1.2 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + + '@walletconnect/types@2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: - '@walletconnect/core': 2.13.0 '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.2 - '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.0 - '@walletconnect/utils': 2.13.0 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -18314,22 +19887,15 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - bufferutil - - encoding - - ioredis - - uWebSockets.js - - utf-8-validate + - supports-color - '@walletconnect/sign-client@2.13.3': + '@walletconnect/types@2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: - '@walletconnect/core': 2.13.3 '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.2 - '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.3 - '@walletconnect/utils': 2.13.3 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -18344,22 +19910,14 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - bufferutil - - encoding - - ioredis - - uWebSockets.js - - utf-8-validate - - '@walletconnect/time@1.0.2': - dependencies: - tslib: 1.14.1 + - supports-color - '@walletconnect/types@2.12.0': + '@walletconnect/types@2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: @@ -18375,16 +19933,18 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - ioredis - - uWebSockets.js + - supports-color - '@walletconnect/types@2.13.0': + '@walletconnect/universal-provider@2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.2 - '@walletconnect/jsonrpc-types': 1.0.4 - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -18399,16 +19959,21 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - ioredis - - uWebSockets.js + - bufferutil + - encoding + - supports-color + - utf-8-validate - '@walletconnect/types@2.13.3': + '@walletconnect/universal-provider@2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.2 - '@walletconnect/jsonrpc-types': 1.0.4 - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -18423,19 +19988,21 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - ioredis - - uWebSockets.js + - bufferutil + - encoding + - supports-color + - utf-8-validate - '@walletconnect/universal-provider@2.13.0': + '@walletconnect/universal-provider@2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.13.0 - '@walletconnect/types': 2.13.0 - '@walletconnect/utils': 2.13.0 + '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -18452,20 +20019,19 @@ snapshots: - '@vercel/kv' - bufferutil - encoding - - ioredis - - uWebSockets.js + - supports-color - utf-8-validate - '@walletconnect/universal-provider@2.13.3': + '@walletconnect/universal-provider@2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.13.3 - '@walletconnect/types': 2.13.3 - '@walletconnect/utils': 2.13.3 + '@walletconnect/sign-client': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -18482,11 +20048,41 @@ snapshots: - '@vercel/kv' - bufferutil - encoding - - ioredis - - uWebSockets.js + - supports-color - utf-8-validate - '@walletconnect/utils@2.12.0': + '@walletconnect/utils@2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': + dependencies: + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/hkdf': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.11.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + + '@walletconnect/utils@2.12.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -18496,7 +20092,7 @@ snapshots: '@walletconnect/relay-api': 1.0.10 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.12.0 + '@walletconnect/types': 2.12.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -18515,10 +20111,40 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - ioredis - - uWebSockets.js + - supports-color - '@walletconnect/utils@2.13.0': + '@walletconnect/utils@2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': + dependencies: + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/hkdf': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + + '@walletconnect/utils@2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -18528,7 +20154,7 @@ snapshots: '@walletconnect/relay-api': 1.0.10 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.0 + '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -18547,23 +20173,24 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - ioredis - - uWebSockets.js + - supports-color - '@walletconnect/utils@2.13.3': + '@walletconnect/utils@2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 '@stablelib/random': 1.0.2 '@stablelib/sha256': 1.0.1 '@stablelib/x25519': 1.0.3 - '@walletconnect/relay-api': 1.0.10 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.3 + '@walletconnect/types': 2.16.1(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 + elliptic: 6.5.7 query-string: 7.1.3 uint8arrays: 3.1.0 transitivePeerDependencies: @@ -18579,8 +20206,7 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - ioredis - - uWebSockets.js + - supports-color '@walletconnect/window-getters@1.0.1': dependencies: @@ -18591,33 +20217,62 @@ snapshots: '@walletconnect/window-getters': 1.0.1 tslib: 1.14.1 + '@web3modal/common@4.1.11': + dependencies: + bignumber.js: 9.1.2 + dayjs: 1.11.10 + '@web3modal/common@4.2.3': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 - '@web3modal/common@5.1.0': + '@web3modal/common@5.1.8': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 - '@web3modal/core@4.2.3(react@18.3.1)': + '@web3modal/core@4.1.11(@types/react@18.3.5)(react@18.2.0)': + dependencies: + '@web3modal/common': 4.1.11 + '@web3modal/wallet': 4.1.11 + valtio: 1.11.2(@types/react@18.3.5)(react@18.2.0) + transitivePeerDependencies: + - '@types/react' + - react + + '@web3modal/core@4.2.3(@types/react@18.3.5)(react@18.2.0)': dependencies: '@web3modal/common': 4.2.3 '@web3modal/wallet': 4.2.3 - valtio: 1.11.2(react@18.3.1) + valtio: 1.11.2(@types/react@18.3.5)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react + '@web3modal/polyfills@4.1.11': + dependencies: + buffer: 6.0.3 + '@web3modal/polyfills@4.2.3': dependencies: buffer: 6.0.3 - '@web3modal/scaffold-react@4.2.3(react@18.3.1)': + '@web3modal/scaffold-react@4.1.11(@types/react@18.3.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@web3modal/scaffold': 4.1.11(@types/react@18.3.5)(react@18.2.0) + optionalDependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + transitivePeerDependencies: + - '@types/react' + + '@web3modal/scaffold-react@4.2.3(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@web3modal/scaffold': 4.2.3(react@18.3.1) - react: 18.3.1 + '@web3modal/scaffold': 4.2.3(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(react@18.2.0) + optionalDependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -18632,21 +20287,36 @@ snapshots: - '@types/react' - '@upstash/redis' - '@vercel/kv' - - ioredis - - uWebSockets.js + - supports-color + + '@web3modal/scaffold-utils@4.1.11(@types/react@18.3.5)(react@18.2.0)': + dependencies: + '@web3modal/core': 4.1.11(@types/react@18.3.5)(react@18.2.0) + '@web3modal/polyfills': 4.1.11 + valtio: 1.11.2(@types/react@18.3.5)(react@18.2.0) + transitivePeerDependencies: + - '@types/react' + - react - '@web3modal/scaffold-utils@4.2.3(react@18.3.1)': + '@web3modal/scaffold-utils@4.2.3(@types/react@18.3.5)(react@18.2.0)': dependencies: - '@web3modal/core': 4.2.3(react@18.3.1) + '@web3modal/core': 4.2.3(@types/react@18.3.5)(react@18.2.0) '@web3modal/polyfills': 4.2.3 - valtio: 1.11.2(react@18.3.1) + valtio: 1.11.2(@types/react@18.3.5)(react@18.2.0) + transitivePeerDependencies: + - '@types/react' + - react + + '@web3modal/scaffold-vue@4.1.11(@types/react@18.3.5)(react@18.2.0)': + dependencies: + '@web3modal/scaffold': 4.1.11(@types/react@18.3.5)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react - '@web3modal/scaffold-vue@4.2.3(react@18.3.1)': + '@web3modal/scaffold-vue@4.2.3(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(react@18.2.0)': dependencies: - '@web3modal/scaffold': 4.2.3(react@18.3.1) + '@web3modal/scaffold': 4.2.3(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(react@18.2.0) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -18661,15 +20331,26 @@ snapshots: - '@types/react' - '@upstash/redis' - '@vercel/kv' - - ioredis - react - - uWebSockets.js + - supports-color + + '@web3modal/scaffold@4.1.11(@types/react@18.3.5)(react@18.2.0)': + dependencies: + '@web3modal/common': 4.1.11 + '@web3modal/core': 4.1.11(@types/react@18.3.5)(react@18.2.0) + '@web3modal/siwe': 4.1.11(@types/react@18.3.5)(react@18.2.0) + '@web3modal/ui': 4.1.11 + '@web3modal/wallet': 4.1.11 + lit: 3.1.0 + transitivePeerDependencies: + - '@types/react' + - react - '@web3modal/scaffold@4.2.3(react@18.3.1)': + '@web3modal/scaffold@4.2.3(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(react@18.2.0)': dependencies: '@web3modal/common': 4.2.3 - '@web3modal/core': 4.2.3(react@18.3.1) - '@web3modal/siwe': 4.2.3(react@18.3.1) + '@web3modal/core': 4.2.3(@types/react@18.3.5)(react@18.2.0) + '@web3modal/siwe': 4.2.3(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(react@18.2.0) '@web3modal/ui': 4.2.3 '@web3modal/wallet': 4.2.3 lit: 3.1.0 @@ -18687,17 +20368,26 @@ snapshots: - '@types/react' - '@upstash/redis' - '@vercel/kv' - - ioredis - react - - uWebSockets.js + - supports-color + + '@web3modal/siwe@4.1.11(@types/react@18.3.5)(react@18.2.0)': + dependencies: + '@web3modal/core': 4.1.11(@types/react@18.3.5)(react@18.2.0) + '@web3modal/scaffold-utils': 4.1.11(@types/react@18.3.5)(react@18.2.0) + lit: 3.1.0 + valtio: 1.11.2(@types/react@18.3.5)(react@18.2.0) + transitivePeerDependencies: + - '@types/react' + - react - '@web3modal/siwe@4.2.3(react@18.3.1)': + '@web3modal/siwe@4.2.3(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(react@18.2.0)': dependencies: - '@walletconnect/utils': 2.12.0 - '@web3modal/core': 4.2.3(react@18.3.1) - '@web3modal/scaffold-utils': 4.2.3(react@18.3.1) + '@walletconnect/utils': 2.12.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@web3modal/core': 4.2.3(@types/react@18.3.5)(react@18.2.0) + '@web3modal/scaffold-utils': 4.2.3(@types/react@18.3.5)(react@18.2.0) lit: 3.1.0 - valtio: 1.11.2(react@18.3.1) + valtio: 1.11.2(@types/react@18.3.5)(react@18.2.0) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -18712,61 +20402,68 @@ snapshots: - '@types/react' - '@upstash/redis' - '@vercel/kv' - - ioredis - react - - uWebSockets.js + - supports-color - '@web3modal/ui@4.2.3': + '@web3modal/ui@4.1.11': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@web3modal/wagmi@4.2.3(@wagmi/connectors@4.3.10)(@wagmi/core@2.11.6)(react@18.3.1)(viem@2.16.5)': + '@web3modal/ui@4.2.3': dependencies: - '@wagmi/connectors': 4.3.10(@wagmi/core@2.11.6)(react-i18next@13.5.0)(react-native@0.74.3)(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) - '@wagmi/core': 2.11.6(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) - '@walletconnect/ethereum-provider': 2.13.0(react@18.3.1) - '@web3modal/polyfills': 4.2.3 - '@web3modal/scaffold': 4.2.3(react@18.3.1) - '@web3modal/scaffold-react': 4.2.3(react@18.3.1) - '@web3modal/scaffold-utils': 4.2.3(react@18.3.1) - '@web3modal/scaffold-vue': 4.2.3(react@18.3.1) - '@web3modal/siwe': 4.2.3(react@18.3.1) - react: 18.3.1 - viem: 2.16.5(typescript@5.5.3)(zod@3.23.8) + lit: 3.1.0 + qrcode: 1.5.3 + + '@web3modal/wagmi@4.1.11(@types/react@18.3.5)(@wagmi/connectors@4.3.10(yrxxgsr3s6m7a4itnzsb2c7inm))(@wagmi/core@2.10.2(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4))': + dependencies: + '@wagmi/connectors': 4.3.10(yrxxgsr3s6m7a4itnzsb2c7inm) + '@wagmi/core': 2.10.2(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@web3modal/polyfills': 4.1.11 + '@web3modal/scaffold': 4.1.11(@types/react@18.3.5)(react@18.2.0) + '@web3modal/scaffold-react': 4.1.11(@types/react@18.3.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@web3modal/scaffold-utils': 4.1.11(@types/react@18.3.5)(react@18.2.0) + '@web3modal/scaffold-vue': 4.1.11(@types/react@18.3.5)(react@18.2.0) + '@web3modal/siwe': 4.1.11(@types/react@18.3.5)(react@18.2.0) + viem: 2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + optionalDependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + transitivePeerDependencies: + - '@types/react' + + '@web3modal/wagmi@4.1.11(xgqwdfny5esqdjztzawvofqbai)': + dependencies: + '@wagmi/connectors': 4.1.18(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(@wagmi/core@2.8.0(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@wagmi/core': 2.8.0(@types/react@18.3.5)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.3)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@web3modal/polyfills': 4.1.11 + '@web3modal/scaffold': 4.1.11(@types/react@18.3.5)(react@18.2.0) + '@web3modal/scaffold-react': 4.1.11(@types/react@18.3.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@web3modal/scaffold-utils': 4.1.11(@types/react@18.3.5)(react@18.2.0) + '@web3modal/scaffold-vue': 4.1.11(@types/react@18.3.5)(react@18.2.0) + '@web3modal/siwe': 4.1.11(@types/react@18.3.5)(react@18.2.0) + viem: 2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - '@types/react' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - ioredis - - uWebSockets.js - - utf-8-validate - '@web3modal/wagmi@4.2.3(@wagmi/connectors@5.0.21)(@wagmi/core@2.11.6)(react@18.3.1)(viem@2.16.5)': + '@web3modal/wagmi@4.2.3(hoyagxhmve75vyxjsj4tjya6zm)': dependencies: - '@wagmi/connectors': 5.0.21(@wagmi/core@2.11.6)(react-native@0.74.3)(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) - '@wagmi/core': 2.11.6(react@18.3.1)(typescript@5.5.3)(viem@2.16.5) - '@walletconnect/ethereum-provider': 2.13.0(react@18.3.1) + '@wagmi/connectors': 5.1.10(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(@wagmi/core@2.13.5(@types/react@18.3.5)(react@18.2.0)(typescript@5.4.5)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.21.3)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@wagmi/core': 2.13.5(@types/react@18.3.5)(react@18.2.0)(typescript@5.4.5)(viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)) + '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) '@web3modal/polyfills': 4.2.3 - '@web3modal/scaffold': 4.2.3(react@18.3.1) - '@web3modal/scaffold-react': 4.2.3(react@18.3.1) - '@web3modal/scaffold-utils': 4.2.3(react@18.3.1) - '@web3modal/scaffold-vue': 4.2.3(react@18.3.1) - '@web3modal/siwe': 4.2.3(react@18.3.1) - react: 18.3.1 - viem: 2.16.5(typescript@5.5.3)(zod@3.23.8) + '@web3modal/scaffold': 4.2.3(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(react@18.2.0) + '@web3modal/scaffold-react': 4.2.3(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@web3modal/scaffold-utils': 4.2.3(@types/react@18.3.5)(react@18.2.0) + '@web3modal/scaffold-vue': 4.2.3(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(react@18.2.0) + '@web3modal/siwe': 4.2.3(@react-native-async-storage/async-storage@1.22.0(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.3.5)(react@18.2.0) + viem: 2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -18783,10 +20480,14 @@ snapshots: - '@vercel/kv' - bufferutil - encoding - - ioredis - - uWebSockets.js + - supports-color - utf-8-validate + '@web3modal/wallet@4.1.11': + dependencies: + '@web3modal/polyfills': 4.1.11 + zod: 3.22.4 + '@web3modal/wallet@4.2.3': dependencies: '@web3modal/polyfills': 4.2.3 @@ -18794,72 +20495,97 @@ snapshots: '@webgpu/types@0.1.21': {} - '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.20.2)': + '@zerodevx/svelte-toast@0.9.5(svelte@4.2.13)': dependencies: - esbuild: 0.20.2 - tslib: 2.6.3 + svelte: 4.2.13 - '@yarnpkg/fslib@2.10.3': + '@zerodevx/svelte-toast@0.9.5(svelte@4.2.17)': dependencies: - '@yarnpkg/libzip': 2.3.0 - tslib: 1.14.1 + svelte: 4.2.17 - '@yarnpkg/libzip@2.3.0': - dependencies: - '@types/emscripten': 1.39.13 - tslib: 1.14.1 + abitype@0.9.10(typescript@5.4.3)(zod@3.22.4): + optionalDependencies: + typescript: 5.4.3 + zod: 3.22.4 - '@zerodevx/svelte-toast@0.9.5(svelte@4.2.18)': - dependencies: - svelte: 4.2.18 + abitype@0.9.8(typescript@5.4.3)(zod@3.22.4): + optionalDependencies: + typescript: 5.4.3 + zod: 3.22.4 - abitype@0.9.8(typescript@5.5.3): - dependencies: - typescript: 5.5.3 + abitype@0.9.8(typescript@5.4.3)(zod@3.23.8): + optionalDependencies: + typescript: 5.4.3 + zod: 3.23.8 - abitype@1.0.5(typescript@5.5.3)(zod@3.23.8): - dependencies: - typescript: 5.5.3 + abitype@1.0.0(typescript@5.4.3)(zod@3.22.4): + optionalDependencies: + typescript: 5.4.3 + zod: 3.22.4 + + abitype@1.0.0(typescript@5.4.3)(zod@3.23.8): + optionalDependencies: + typescript: 5.4.3 + zod: 3.23.8 + + abitype@1.0.2(typescript@5.4.3)(zod@3.22.4): + optionalDependencies: + typescript: 5.4.3 + zod: 3.22.4 + + abitype@1.0.5(typescript@5.4.3)(zod@3.23.8): + optionalDependencies: + typescript: 5.4.3 + zod: 3.23.8 + + abitype@1.0.5(typescript@5.4.5)(zod@3.23.8): + optionalDependencies: + typescript: 5.4.5 + zod: 3.23.8 + + abitype@1.0.6(typescript@5.4.5)(zod@3.23.8): + optionalDependencies: + typescript: 5.4.5 zod: 3.23.8 abort-controller@3.0.0: dependencies: event-target-shim: 5.0.1 + abortcontroller-polyfill@1.7.5: {} + accepts@1.3.8: dependencies: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-jsx@5.3.2(acorn@8.12.0): + acorn-jsx@5.3.2(acorn@8.11.3): dependencies: - acorn: 8.12.0 + acorn: 8.11.3 acorn-jsx@5.3.2(acorn@8.12.1): dependencies: acorn: 8.12.1 - acorn-walk@8.3.3: - dependencies: - acorn: 8.12.0 + acorn-walk@8.3.2: {} - acorn@8.12.0: {} + acorn@8.11.3: {} acorn@8.12.1: {} - address@1.2.2: {} - aes-js@3.0.0: {} - agent-base@7.1.1: + aes-js@4.0.0-beta.5: {} + + agent-base@7.1.0: dependencies: - debug: 4.3.5 + debug: 4.3.4 transitivePeerDependencies: - supports-color - ajv-draft-04@1.0.0(ajv@8.16.0): - dependencies: - ajv: 8.16.0 + ajv-draft-04@1.0.0(ajv@8.12.0): + optionalDependencies: + ajv: 8.12.0 ajv@6.12.6: dependencies: @@ -18868,13 +20594,23 @@ snapshots: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.16.0: + ajv@8.12.0: dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 uri-js: 4.4.1 + amazon-cognito-identity-js@6.3.12(encoding@0.1.13): + dependencies: + '@aws-crypto/sha256-js': 1.2.2 + buffer: 4.9.2 + fast-base64-decode: 1.0.0 + isomorphic-unfetch: 3.1.0(encoding@0.1.13) + js-cookie: 2.2.1 + transitivePeerDependencies: + - encoding + anser@1.4.10: {} ansi-align@3.0.1: @@ -18907,7 +20643,7 @@ snapshots: ansi-styles@6.2.1: {} - antlr4@4.13.1-patch-1: {} + antlr4@4.13.1: {} any-promise@1.3.0: {} @@ -18918,8 +20654,6 @@ snapshots: normalize-path: 3.0.0 picomatch: 2.3.1 - app-root-dir@1.0.2: {} - appdirsjs@1.2.7: {} arg@4.1.3: {} @@ -18932,27 +20666,22 @@ snapshots: argparse@2.0.1: {} - aria-hidden@1.2.4: - dependencies: - tslib: 2.6.3 - aria-query@5.3.0: dependencies: dequal: 2.0.3 - array-buffer-byte-length@1.0.1: + array-buffer-byte-length@1.0.0: dependencies: call-bind: 1.0.7 - is-array-buffer: 3.0.4 + is-array-buffer: 3.0.2 array-flatten@1.1.1: {} - array-includes@3.1.8: + array-includes@3.1.7: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.3 - es-object-atoms: 1.0.0 + es-abstract: 1.22.3 get-intrinsic: 1.2.4 is-string: 1.0.7 @@ -18960,61 +20689,59 @@ snapshots: array-union@2.1.0: {} - array.prototype.findlastindex@1.2.5: + array.prototype.findlastindex@1.2.3: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.3 - es-errors: 1.3.0 - es-object-atoms: 1.0.0 + es-abstract: 1.22.3 es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.4 array.prototype.flat@1.3.2: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.3 + es-abstract: 1.22.3 es-shim-unscopables: 1.0.2 array.prototype.flatmap@1.3.2: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.3 + es-abstract: 1.22.3 es-shim-unscopables: 1.0.2 - arraybuffer.prototype.slice@1.0.3: + arraybuffer.prototype.slice@1.0.2: dependencies: - array-buffer-byte-length: 1.0.1 + array-buffer-byte-length: 1.0.0 call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.3 - es-errors: 1.3.0 + es-abstract: 1.22.3 get-intrinsic: 1.2.4 - is-array-buffer: 3.0.4 - is-shared-array-buffer: 1.0.3 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 asap@2.0.6: {} - assert@2.1.0: + asn1@0.2.6: dependencies: - call-bind: 1.0.7 - is-nan: 1.3.2 - object-is: 1.1.6 - object.assign: 4.1.5 - util: 0.12.5 + safer-buffer: 2.1.2 + + assert-plus@1.0.0: {} assertion-error@1.1.0: {} + assertion-error@2.0.1: {} + ast-parents@0.0.1: {} ast-types@0.15.2: dependencies: - tslib: 2.6.3 + tslib: 2.6.2 ast-types@0.16.1: dependencies: - tslib: 2.6.3 + tslib: 2.6.2 astral-regex@1.0.0: {} @@ -19022,30 +20749,29 @@ snapshots: astring@1.8.6: {} - astro-expressive-code@0.35.6(astro@4.13.3): + astro-expressive-code@0.35.6(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)): dependencies: - astro: 4.13.3(typescript@5.5.3) + astro: 4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5) rehype-expressive-code: 0.35.6 - astro-og-canvas@0.5.1(astro@4.13.3): + astro-og-canvas@0.5.0(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)): dependencies: - astro: 4.13.3(typescript@5.5.3) + astro: 4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5) canvaskit-wasm: 0.39.1 deterministic-object-hash: 2.0.2 entities: 4.5.0 - astro@4.13.3(typescript@5.5.3): + astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5): dependencies: - '@astrojs/compiler': 2.10.2 + '@astrojs/compiler': 2.10.3 '@astrojs/internal-helpers': 0.4.1 '@astrojs/markdown-remark': 5.2.0 '@astrojs/telemetry': 3.1.0 '@babel/core': 7.25.2 - '@babel/generator': 7.25.0 - '@babel/parser': 7.25.3 '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2) - '@babel/traverse': 7.25.3 - '@babel/types': 7.25.2 + '@babel/types': 7.25.6 + '@oslojs/encoding': 0.4.1 + '@rollup/pluginutils': 5.1.0(rollup@4.21.3) '@types/babel__core': 7.20.5 '@types/cookie': 0.6.0 acorn: 8.12.1 @@ -19057,7 +20783,7 @@ snapshots: common-ancestor-path: 1.0.1 cookie: 0.6.0 cssesc: 3.0.0 - debug: 4.3.6 + debug: 4.3.7 deterministic-object-hash: 2.0.2 devalue: 5.0.0 diff: 5.2.0 @@ -19066,8 +20792,8 @@ snapshots: es-module-lexer: 1.5.4 esbuild: 0.21.5 estree-walker: 3.0.3 - execa: 8.0.1 fast-glob: 3.3.2 + fastq: 1.17.1 flattie: 1.1.1 github-slugger: 2.0.0 gray-matter: 4.0.3 @@ -19076,8 +20802,11 @@ snapshots: js-yaml: 4.1.0 kleur: 4.1.5 magic-string: 0.30.11 + magicast: 0.3.5 + micromatch: 4.0.8 mrmime: 2.0.0 - ora: 8.0.1 + neotraverse: 0.6.18 + ora: 8.1.0 p-limit: 6.1.0 p-queue: 8.0.1 path-to-regexp: 6.2.2 @@ -19085,24 +20814,28 @@ snapshots: prompts: 2.4.2 rehype: 13.0.1 semver: 7.6.3 - shiki: 1.12.1 + shiki: 1.17.6 string-width: 7.2.0 strip-ansi: 7.1.0 - tsconfck: 3.1.1(typescript@5.5.3) + tinyexec: 0.3.0 + tsconfck: 3.1.3(typescript@5.4.5) unist-util-visit: 5.0.0 - vfile: 6.0.2 - vite: 5.4.0 - vitefu: 0.2.5(vite@5.4.0) + vfile: 6.0.3 + vite: 5.4.5(@types/node@20.12.7)(terser@5.27.2) + vitefu: 1.0.2(vite@5.4.5(@types/node@20.12.7)(terser@5.27.2)) which-pm: 3.0.0 + xxhash-wasm: 1.0.2 yargs-parser: 21.1.1 zod: 3.23.8 - zod-to-json-schema: 3.23.2(zod@3.23.8) + zod-to-json-schema: 3.23.3(zod@3.23.8) + zod-to-ts: 1.2.0(typescript@5.4.5)(zod@3.23.8) optionalDependencies: - sharp: 0.33.4 + sharp: 0.33.3 transitivePeerDependencies: - '@types/node' - less - lightningcss + - rollup - sass - sass-embedded - stylus @@ -19115,41 +20848,73 @@ snapshots: async-mutex@0.2.6: dependencies: - tslib: 2.6.3 + tslib: 2.6.2 + + async-retry@1.3.3: + dependencies: + retry: 0.13.1 + + async@2.6.4: + dependencies: + lodash: 4.17.21 - async@3.2.5: {} + async@3.2.3: {} asynckit@0.4.0: {} atomic-sleep@1.0.0: {} - autoprefixer@10.4.19(postcss@8.4.39): + autoprefixer@10.4.18(postcss@8.4.38): dependencies: - browserslist: 4.23.1 - caniuse-lite: 1.0.30001639 + browserslist: 4.23.0 + caniuse-lite: 1.0.30001593 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.0.1 - postcss: 8.4.39 + picocolors: 1.0.0 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - autoprefixer@10.4.19(postcss@8.4.41): + autoprefixer@10.4.19(postcss@8.4.38): dependencies: - browserslist: 4.23.1 - caniuse-lite: 1.0.30001639 + browserslist: 4.23.0 + caniuse-lite: 1.0.30001614 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.0.1 - postcss: 8.4.41 + picocolors: 1.0.0 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - available-typed-arrays@1.0.7: + autoprefixer@10.4.19(postcss@8.4.47): dependencies: - possible-typed-array-names: 1.0.0 + browserslist: 4.23.0 + caniuse-lite: 1.0.30001614 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.47 + postcss-value-parser: 4.2.0 + + available-typed-arrays@1.0.5: {} + + aws-sign2@0.7.0: {} + + aws4@1.13.2: {} + + axios-proxy-builder@0.1.2: + dependencies: + tunnel: 0.0.6 - axios@1.7.2(debug@4.3.5): + axios@1.6.7(debug@4.3.4): dependencies: - follow-redirects: 1.15.6(debug@4.3.5) + follow-redirects: 1.15.5(debug@4.3.4) + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + + axios@1.7.7: + dependencies: + follow-redirects: 1.15.9 form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: @@ -19161,65 +20926,43 @@ snapshots: axobject-query@4.1.0: {} - babel-core@7.0.0-bridge.0(@babel/core@7.24.7): - dependencies: - '@babel/core': 7.24.7 - babel-core@7.0.0-bridge.0(@babel/core@7.25.2): dependencies: '@babel/core': 7.25.2 - babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7): + babel-plugin-macros@3.1.0: dependencies: - '@babel/compat-data': 7.24.7 - '@babel/core': 7.24.7 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@babel/runtime': 7.23.9 + cosmiconfig: 7.1.0 + resolve: 1.22.8 - babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2): + babel-plugin-polyfill-corejs2@0.4.8(@babel/core@7.25.2): dependencies: - '@babel/compat-data': 7.24.7 + '@babel/compat-data': 7.25.4 '@babel/core': 7.25.2 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2) + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.25.2) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) - core-js-compat: 3.37.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.25.2): + babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.25.2): dependencies: '@babel/core': 7.25.2 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2) - core-js-compat: 3.37.1 + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.25.2) + core-js-compat: 3.36.0 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7): - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.2): + babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.25.2): dependencies: '@babel/core': 7.25.2 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2) + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.25.2) transitivePeerDependencies: - supports-color babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.25.2): dependencies: - '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.25.2) transitivePeerDependencies: - '@babel/core' @@ -19245,11 +20988,11 @@ snapshots: is-alphanumerical: 2.0.1 is-decimal: 2.0.1 - bech32@1.1.4: {} - - better-opn@3.0.2: + bcrypt-pbkdf@1.0.2: dependencies: - open: 8.4.2 + tweetnacl: 0.14.5 + + bech32@1.1.4: {} better-path-resolve@1.0.0: dependencies: @@ -19259,7 +21002,7 @@ snapshots: bignumber.js@9.1.2: {} - binary-extensions@2.3.0: {} + binary-extensions@2.2.0: {} bl@4.1.0: dependencies: @@ -19275,9 +21018,11 @@ snapshots: blakejs@1.2.1: {} - blob-to-it@2.0.7: + blob-to-it@2.0.6: dependencies: - browser-readablestream-to-it: 2.0.7 + browser-readablestream-to-it: 2.0.6 + + bluebird@3.7.2: {} bn.js@4.11.6: {} @@ -19285,7 +21030,7 @@ snapshots: bn.js@5.2.1: {} - body-parser@1.20.2: + body-parser@1.20.3: dependencies: bytes: 3.1.2 content-type: 1.0.5 @@ -19295,7 +21040,7 @@ snapshots: http-errors: 2.0.0 iconv-lite: 0.4.24 on-finished: 2.4.1 - qs: 6.11.0 + qs: 6.13.0 raw-body: 2.5.2 type-is: 1.6.18 unpipe: 1.0.0 @@ -19330,6 +21075,10 @@ snapshots: dependencies: balanced-match: 1.0.2 + braces@3.0.2: + dependencies: + fill-range: 7.0.1 + braces@3.0.3: dependencies: fill-range: 7.1.1 @@ -19340,7 +21089,7 @@ snapshots: browser-readablestream-to-it@1.0.3: {} - browser-readablestream-to-it@2.0.7: {} + browser-readablestream-to-it@2.0.6: {} browserify-aes@1.2.0: dependencies: @@ -19351,16 +21100,19 @@ snapshots: inherits: 2.0.4 safe-buffer: 5.2.1 - browserify-zlib@0.1.4: + browserslist@4.23.0: dependencies: - pako: 0.2.9 + caniuse-lite: 1.0.30001593 + electron-to-chromium: 1.4.676 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.23.0) - browserslist@4.23.1: + browserslist@4.23.3: dependencies: - caniuse-lite: 1.0.30001639 - electron-to-chromium: 1.4.816 - node-releases: 2.0.14 - update-browserslist-db: 1.0.16(browserslist@4.23.1) + caniuse-lite: 1.0.30001660 + electron-to-chromium: 1.5.23 + node-releases: 2.0.18 + update-browserslist-db: 1.1.0(browserslist@4.23.3) bs58@4.0.1: dependencies: @@ -19380,14 +21132,22 @@ snapshots: dependencies: node-int64: 0.4.0 - buffer-crc32@1.0.0: {} + buffer-crc32@0.2.13: {} buffer-from@1.1.2: {} buffer-reverse@1.0.1: {} + buffer-to-arraybuffer@0.0.5: {} + buffer-xor@1.0.3: {} + buffer@4.9.2: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + isarray: 1.0.0 + buffer@5.6.0: dependencies: base64-js: 1.5.1 @@ -19405,15 +21165,19 @@ snapshots: bufferutil@4.0.8: dependencies: - node-gyp-build: 4.8.1 + node-gyp-build: 4.8.0 builtin-modules@3.3.0: {} - builtins@5.1.0: + builtins@5.0.1: dependencies: semver: 7.6.3 - bundle-require@4.2.1(esbuild@0.19.12): + bundle-name@3.0.0: + dependencies: + run-applescript: 5.0.0 + + bundle-require@4.0.2(esbuild@0.19.12): dependencies: esbuild: 0.19.12 load-tsconfig: 0.2.5 @@ -19424,6 +21188,10 @@ snapshots: cac@6.7.14: {} + cacheable-lookup@5.0.4: {} + + cacheable-lookup@6.1.0: {} + cacheable-lookup@7.0.0: {} cacheable-request@10.2.14: @@ -19433,16 +21201,26 @@ snapshots: http-cache-semantics: 4.1.1 keyv: 4.5.4 mimic-response: 4.0.0 - normalize-url: 8.0.1 + normalize-url: 8.0.0 responselike: 3.0.0 + cacheable-request@7.0.4: + dependencies: + clone-response: 1.0.3 + get-stream: 5.2.0 + http-cache-semantics: 4.1.1 + keyv: 4.5.4 + lowercase-keys: 2.0.0 + normalize-url: 6.1.0 + responselike: 2.0.1 + call-bind@1.0.7: dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 function-bind: 1.1.2 get-intrinsic: 1.2.4 - set-function-length: 1.2.2 + set-function-length: 1.2.1 call-me-maybe@1.0.2: {} @@ -19458,6 +21236,11 @@ snapshots: callsites@3.1.0: {} + camel-case@4.1.2: + dependencies: + pascal-case: 3.1.2 + tslib: 2.6.2 + camelcase-css@2.0.1: {} camelcase@5.3.1: {} @@ -19466,13 +21249,25 @@ snapshots: camelcase@7.0.1: {} - caniuse-lite@1.0.30001639: {} + caniuse-lite@1.0.30001593: {} + + caniuse-lite@1.0.30001614: {} + + caniuse-lite@1.0.30001660: {} canvaskit-wasm@0.39.1: dependencies: '@webgpu/types': 0.1.21 - cborg@4.2.2: {} + capital-case@1.0.4: + dependencies: + no-case: 3.0.4 + tslib: 2.6.2 + upper-case-first: 2.0.2 + + caseless@0.12.0: {} + + cborg@4.2.0: {} ccount@2.0.1: {} @@ -19480,12 +21275,20 @@ snapshots: dependencies: assertion-error: 1.1.0 check-error: 1.0.3 - deep-eql: 4.1.4 + deep-eql: 4.1.3 get-func-name: 2.0.2 loupe: 2.3.7 pathval: 1.1.1 type-detect: 4.0.8 + chai@5.1.1: + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.1 + deep-eql: 5.0.2 + loupe: 3.1.1 + pathval: 2.0.0 + chalk@2.4.2: dependencies: ansi-styles: 3.2.1 @@ -19504,6 +21307,21 @@ snapshots: chalk@5.3.0: {} + change-case@4.1.2: + dependencies: + camel-case: 4.1.2 + capital-case: 1.0.4 + constant-case: 3.0.4 + dot-case: 3.0.4 + header-case: 2.0.4 + no-case: 3.0.4 + param-case: 3.0.4 + pascal-case: 3.1.2 + path-case: 3.0.4 + sentence-case: 3.0.4 + snake-case: 3.0.4 + tslib: 2.6.2 + change-case@5.4.4: {} character-entities-html4@2.1.0: {} @@ -19520,10 +21338,12 @@ snapshots: dependencies: get-func-name: 2.0.2 + check-error@2.1.1: {} + chokidar@3.6.0: dependencies: anymatch: 3.1.3 - braces: 3.0.3 + braces: 3.0.2 glob-parent: 5.1.2 is-binary-path: 2.1.0 is-glob: 4.0.3 @@ -19532,18 +21352,33 @@ snapshots: optionalDependencies: fsevents: 2.3.3 + chokidar@4.0.0: + dependencies: + readdirp: 4.0.1 + chownr@1.1.4: {} - chownr@2.0.0: {} + chromatic@11.10.2: {} - chromatic@11.5.4: {} + chromatic@11.3.0: {} chrome-launcher@0.15.2: dependencies: - '@types/node': 20.14.9 + '@types/node': 20.12.7 + escape-string-regexp: 4.0.0 + is-wsl: 2.2.0 + lighthouse-logger: 1.4.2 + transitivePeerDependencies: + - supports-color + + chromium-edge-launcher@1.0.0: + dependencies: + '@types/node': 20.12.7 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 + mkdirp: 1.0.4 + rimraf: 3.0.2 transitivePeerDependencies: - supports-color @@ -19553,6 +21388,14 @@ snapshots: ci-info@4.0.0: {} + cids@0.7.5: + dependencies: + buffer: 5.7.1 + class-is: 1.1.0 + multibase: 0.6.1 + multicodec: 1.0.4 + multihashes: 0.4.21 + cipher-base@1.0.4: dependencies: inherits: 2.0.4 @@ -19562,15 +21405,17 @@ snapshots: dependencies: consola: 3.2.3 + class-is@1.1.0: {} + cli-boxes@3.0.0: {} - cli-color@2.0.4: + cli-color@2.0.3: dependencies: - d: 1.0.2 - es5-ext: 0.10.64 + d: 1.0.1 + es5-ext: 0.10.62 es6-iterator: 2.0.3 - memoizee: 0.4.17 - timers-ext: 0.1.8 + memoizee: 0.4.15 + timers-ext: 0.1.7 cli-cursor@3.1.0: dependencies: @@ -19580,13 +21425,11 @@ snapshots: dependencies: restore-cursor: 4.0.0 - cli-spinners@2.9.2: {} - - cli-table3@0.6.5: + cli-cursor@5.0.0: dependencies: - string-width: 4.2.3 - optionalDependencies: - '@colors/colors': 1.5.0 + restore-cursor: 5.1.0 + + cli-spinners@2.9.2: {} clipboardy@4.0.0: dependencies: @@ -19612,12 +21455,18 @@ snapshots: kind-of: 6.0.3 shallow-clone: 3.0.1 + clone-response@1.0.3: + dependencies: + mimic-response: 1.0.1 + clone@1.0.4: {} clsx@1.2.1: {} clsx@2.1.1: {} + cluster-key-slot@1.1.2: {} + code-block-writer@12.0.0: {} code-error-fragment@0.0.230: {} @@ -19626,7 +21475,7 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 '@types/estree': 1.0.5 - acorn: 8.12.0 + acorn: 8.11.3 estree-walker: 3.0.3 periscopic: 3.1.0 @@ -19656,6 +21505,8 @@ snapshots: colorette@1.4.0: {} + colors@1.0.3: {} + combined-stream@1.0.8: dependencies: delayed-stream: 1.0.0 @@ -19670,8 +21521,6 @@ snapshots: commander@4.1.1: {} - commander@6.2.1: {} - commander@8.3.0: {} commander@9.5.0: {} @@ -19698,8 +21547,6 @@ snapshots: concat-map@0.0.1: {} - confbox@0.1.7: {} - config-chain@1.1.13: dependencies: ini: 1.3.8 @@ -19716,28 +21563,49 @@ snapshots: consola@3.2.3: {} + constant-case@3.0.4: + dependencies: + no-case: 3.0.4 + tslib: 2.6.2 + upper-case: 2.0.2 + content-disposition@0.5.4: dependencies: safe-buffer: 5.2.1 + content-hash@2.5.2: + dependencies: + cids: 0.7.5 + multicodec: 0.5.7 + multihashes: 0.4.21 + content-type@1.0.5: {} - convert-csv-to-json@2.48.0: {} + convert-csv-to-json@2.46.0: {} + + convert-source-map@1.9.0: {} convert-source-map@2.0.0: {} - cookie-es@1.1.0: {} + cookie-es@1.0.0: {} cookie-signature@1.0.6: {} cookie@0.6.0: {} - core-js-compat@3.37.1: + core-js-compat@3.36.0: dependencies: - browserslist: 4.23.1 + browserslist: 4.23.3 + + core-util-is@1.0.2: {} core-util-is@1.0.3: {} + cors@2.8.5: + dependencies: + object-assign: 4.1.1 + vary: 1.1.2 + cosmiconfig@5.2.1: dependencies: import-fresh: 2.0.0 @@ -19745,13 +21613,31 @@ snapshots: js-yaml: 3.14.1 parse-json: 4.0.0 - cosmiconfig@8.3.6(typescript@5.5.3): + cosmiconfig@7.1.0: + dependencies: + '@types/parse-json': 4.0.2 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + + cosmiconfig@8.3.6(typescript@5.4.3): + dependencies: + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + optionalDependencies: + typescript: 5.4.3 + + cosmiconfig@8.3.6(typescript@5.4.5): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 - typescript: 5.5.3 + optionalDependencies: + typescript: 5.4.5 crc-32@1.2.2: {} @@ -19774,15 +21660,15 @@ snapshots: create-require@1.1.1: {} - cross-fetch@3.1.8: + cross-fetch@3.1.8(encoding@0.1.13): dependencies: - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding - cross-fetch@4.0.0: + cross-fetch@4.0.0(encoding@0.1.13): dependencies: - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding @@ -19798,16 +21684,12 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 - crossws@0.2.4: {} + crossws@0.1.1: {} crypto-js@3.3.0: {} crypto-js@4.2.0: {} - crypto-random-string@4.0.0: - dependencies: - type-fest: 1.4.0 - css-selector-parser@3.0.5: {} css-selector-tokenizer@0.8.0: @@ -19832,65 +21714,60 @@ snapshots: culori@3.3.0: {} - d@1.0.2: + cycle@1.0.3: {} + + d@1.0.1: dependencies: es5-ext: 0.10.64 - type: 2.7.3 + type: 1.2.0 dag-jose@4.0.0: dependencies: - '@ipld/dag-cbor': 9.2.1 + '@ipld/dag-cbor': 9.2.0 multiformats: 11.0.2 - daisyui@4.12.10(postcss@8.4.39): + daisyui@4.10.1(postcss@8.4.38): dependencies: css-selector-tokenizer: 0.8.0 culori: 3.3.0 - picocolors: 1.0.1 - postcss-js: 4.0.1(postcss@8.4.39) + picocolors: 1.0.0 + postcss-js: 4.0.1(postcss@8.4.38) transitivePeerDependencies: - postcss - daisyui@4.12.10(postcss@8.4.41): + daisyui@4.11.1(postcss@8.4.38): dependencies: css-selector-tokenizer: 0.8.0 culori: 3.3.0 - picocolors: 1.0.1 - postcss-js: 4.0.1(postcss@8.4.41) + picocolors: 1.0.0 + postcss-js: 4.0.1(postcss@8.4.38) transitivePeerDependencies: - postcss - data-urls@5.0.0: - dependencies: - whatwg-mimetype: 4.0.0 - whatwg-url: 14.0.0 - - data-view-buffer@1.0.1: + daisyui@4.11.1(postcss@8.4.47): dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 + css-selector-tokenizer: 0.8.0 + culori: 3.3.0 + picocolors: 1.0.0 + postcss-js: 4.0.1(postcss@8.4.47) + transitivePeerDependencies: + - postcss - data-view-byte-length@1.0.1: + dashdash@1.14.1: dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 + assert-plus: 1.0.0 - data-view-byte-offset@1.0.0: + data-urls@5.0.0: dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 + whatwg-mimetype: 4.0.0 + whatwg-url: 14.0.0 date-fns@2.30.0: dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.9 dayjs@1.11.10: {} - dayjs@1.11.11: {} - debug@2.6.9: dependencies: ms: 2.0.0 @@ -19899,13 +21776,13 @@ snapshots: dependencies: ms: 2.1.3 - debug@4.3.5: + debug@4.3.4: dependencies: ms: 2.1.2 - debug@4.3.6: + debug@4.3.7: dependencies: - ms: 2.1.2 + ms: 2.1.3 decamelize@1.2.0: {} @@ -19917,6 +21794,10 @@ snapshots: decode-uri-component@0.2.2: {} + decompress-response@3.3.0: + dependencies: + mimic-response: 1.0.1 + decompress-response@6.0.0: dependencies: mimic-response: 3.1.0 @@ -19925,10 +21806,12 @@ snapshots: dedent@0.7.0: {} - deep-eql@4.1.4: + deep-eql@4.1.3: dependencies: type-detect: 4.0.8 + deep-eql@5.0.2: {} + deep-extend@0.6.0: {} deep-is@0.1.4: {} @@ -19940,6 +21823,13 @@ snapshots: bplist-parser: 0.2.0 untildify: 4.0.0 + default-browser@4.0.0: + dependencies: + bundle-name: 3.0.0 + default-browser-id: 3.0.0 + execa: 7.2.0 + titleize: 3.0.0 + defaults@1.0.4: dependencies: clone: 1.0.4 @@ -19954,6 +21844,8 @@ snapshots: define-lazy-prop@2.0.0: {} + define-lazy-prop@3.0.0: {} + define-properties@1.2.1: dependencies: define-data-property: 1.1.4 @@ -19966,8 +21858,16 @@ snapshots: denodeify@1.2.1: {} + denque@2.1.0: {} + depd@2.0.0: {} + deprecated-react-native-prop-types@5.0.0: + dependencies: + '@react-native/normalize-colors': 0.73.2 + invariant: 2.2.4 + prop-types: 15.8.1 + dequal@2.0.3: {} destr@2.0.3: {} @@ -19982,19 +21882,6 @@ snapshots: detect-libc@2.0.3: {} - detect-node-es@1.1.0: {} - - detect-package-manager@2.0.1: - dependencies: - execa: 5.1.1 - - detect-port@1.6.1: - dependencies: - address: 1.2.2 - debug: 4.3.5 - transitivePeerDependencies: - - supports-color - deterministic-object-hash@2.0.2: dependencies: base-64: 1.0.0 @@ -20025,10 +21912,10 @@ snapshots: dns-over-http-resolver@2.1.3: dependencies: - debug: 4.3.5 - native-fetch: 4.0.2(undici@5.28.4) + debug: 4.3.4 + native-fetch: 4.0.2(undici@5.28.3) receptacle: 1.3.2 - undici: 5.28.4 + undici: 5.28.3 transitivePeerDependencies: - supports-color @@ -20054,6 +21941,8 @@ snapshots: domhandler: 4.3.1 entities: 2.2.0 + dom-walk@0.1.2: {} + domelementtype@2.3.0: {} domhandler@3.3.0: @@ -20070,6 +21959,11 @@ snapshots: domelementtype: 2.3.0 domhandler: 4.3.1 + dot-case@3.0.4: + dependencies: + no-case: 3.0.4 + tslib: 2.6.2 + dotenv-expand@10.0.0: {} dotenv@16.4.5: {} @@ -20078,23 +21972,21 @@ snapshots: dset@3.1.3: {} - duplexify@3.7.1: - dependencies: - end-of-stream: 1.4.4 - inherits: 2.0.4 - readable-stream: 2.3.8 - stream-shift: 1.0.3 - - duplexify@4.1.3: + duplexify@4.1.2: dependencies: end-of-stream: 1.4.4 inherits: 2.0.4 readable-stream: 3.6.2 - stream-shift: 1.0.3 + stream-shift: 1.0.1 eastasianwidth@0.2.0: {} - eciesjs@0.3.19: + ecc-jsbn@0.1.2: + dependencies: + jsbn: 0.1.1 + safer-buffer: 2.1.2 + + eciesjs@0.3.18: dependencies: '@types/secp256k1': 4.0.6 futoin-hkdf: 1.5.3 @@ -20102,15 +21994,13 @@ snapshots: ee-first@1.1.1: {} - ejs@3.1.10: - dependencies: - jake: 10.9.1 - electron-fetch@1.9.1: dependencies: encoding: 0.1.13 - electron-to-chromium@1.4.816: {} + electron-to-chromium@1.4.676: {} + + electron-to-chromium@1.5.23: {} elliptic@6.5.4: dependencies: @@ -20122,7 +22012,7 @@ snapshots: minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 - elliptic@6.5.5: + elliptic@6.5.7: dependencies: bn.js: 4.12.0 brorand: 1.1.0 @@ -20147,6 +22037,8 @@ snapshots: encodeurl@1.0.2: {} + encodeurl@2.0.0: {} + encoding@0.1.13: dependencies: iconv-lite: 0.6.3 @@ -20155,12 +22047,24 @@ snapshots: dependencies: once: 1.4.0 - engine.io-client@6.5.4: + engine.io-client@6.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@socket.io/component-emitter': 3.1.0 + debug: 4.3.4 + engine.io-parser: 5.2.2 + ws: 8.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + xmlhttprequest-ssl: 2.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + engine.io-client@6.5.3(bufferutil@4.0.8)(utf-8-validate@6.0.3): dependencies: - '@socket.io/component-emitter': 3.1.2 - debug: 4.3.5 + '@socket.io/component-emitter': 3.1.0 + debug: 4.3.4 engine.io-parser: 5.2.2 - ws: 8.17.1 + ws: 8.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) xmlhttprequest-ssl: 2.0.0 transitivePeerDependencies: - bufferutil @@ -20178,7 +22082,7 @@ snapshots: entities@4.5.0: {} - envinfo@7.13.0: {} + envinfo@7.11.1: {} err-code@3.0.1: {} @@ -20195,54 +22099,47 @@ snapshots: accepts: 1.3.8 escape-html: 1.0.3 - es-abstract@1.23.3: + es-abstract@1.22.3: dependencies: - array-buffer-byte-length: 1.0.1 - arraybuffer.prototype.slice: 1.0.3 - available-typed-arrays: 1.0.7 + array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.2 + available-typed-arrays: 1.0.5 call-bind: 1.0.7 - data-view-buffer: 1.0.1 - data-view-byte-length: 1.0.1 - data-view-byte-offset: 1.0.0 - es-define-property: 1.0.0 - es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-set-tostringtag: 2.0.3 + es-set-tostringtag: 2.0.2 es-to-primitive: 1.2.1 function.prototype.name: 1.1.6 get-intrinsic: 1.2.4 - get-symbol-description: 1.0.2 - globalthis: 1.0.4 + get-symbol-description: 1.0.0 + globalthis: 1.0.3 gopd: 1.0.1 has-property-descriptors: 1.0.2 has-proto: 1.0.3 has-symbols: 1.0.3 - hasown: 2.0.2 - internal-slot: 1.0.7 - is-array-buffer: 3.0.4 + hasown: 2.0.1 + internal-slot: 1.0.6 + is-array-buffer: 3.0.2 is-callable: 1.2.7 - is-data-view: 1.0.1 - is-negative-zero: 2.0.3 + is-negative-zero: 2.0.2 is-regex: 1.1.4 - is-shared-array-buffer: 1.0.3 + is-shared-array-buffer: 1.0.2 is-string: 1.0.7 - is-typed-array: 1.1.13 + is-typed-array: 1.1.12 is-weakref: 1.0.2 - object-inspect: 1.13.2 + object-inspect: 1.13.1 object-keys: 1.1.1 object.assign: 4.1.5 - regexp.prototype.flags: 1.5.2 - safe-array-concat: 1.1.2 - safe-regex-test: 1.0.3 - string.prototype.trim: 1.2.9 - string.prototype.trimend: 1.0.8 - string.prototype.trimstart: 1.0.8 - typed-array-buffer: 1.0.2 - typed-array-byte-length: 1.0.1 - typed-array-byte-offset: 1.0.2 - typed-array-length: 1.0.6 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 + safe-regex-test: 1.0.0 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 + typed-array-byte-offset: 1.0.0 + typed-array-length: 1.0.4 unbox-primitive: 1.0.2 - which-typed-array: 1.1.15 + which-typed-array: 1.1.13 es-define-property@1.0.0: dependencies: @@ -20250,21 +22147,19 @@ snapshots: es-errors@1.3.0: {} - es-module-lexer@1.5.4: {} + es-module-lexer@1.5.3: {} - es-object-atoms@1.0.0: - dependencies: - es-errors: 1.3.0 + es-module-lexer@1.5.4: {} - es-set-tostringtag@2.0.3: + es-set-tostringtag@2.0.2: dependencies: get-intrinsic: 1.2.4 - has-tostringtag: 1.0.2 - hasown: 2.0.2 + has-tostringtag: 1.0.0 + hasown: 2.0.1 es-shim-unscopables@1.0.2: dependencies: - hasown: 2.0.2 + hasown: 2.0.1 es-to-primitive@1.2.1: dependencies: @@ -20272,39 +22167,45 @@ snapshots: is-date-object: 1.0.5 is-symbol: 1.0.4 + es5-ext@0.10.62: + dependencies: + es6-iterator: 2.0.3 + es6-symbol: 3.1.3 + next-tick: 1.1.0 + es5-ext@0.10.64: dependencies: es6-iterator: 2.0.3 - es6-symbol: 3.1.4 + es6-symbol: 3.1.3 esniff: 2.0.1 next-tick: 1.1.0 es6-iterator@2.0.3: dependencies: - d: 1.0.2 + d: 1.0.1 es5-ext: 0.10.64 - es6-symbol: 3.1.4 + es6-symbol: 3.1.3 es6-promise@3.3.1: {} - es6-symbol@3.1.4: + es6-promise@4.2.8: {} + + es6-symbol@3.1.3: dependencies: - d: 1.0.2 + d: 1.0.1 ext: 1.7.0 es6-weak-map@2.0.3: dependencies: - d: 1.0.2 - es5-ext: 0.10.64 + d: 1.0.1 + es5-ext: 0.10.62 es6-iterator: 2.0.3 - es6-symbol: 3.1.4 + es6-symbol: 3.1.3 - esbuild-plugin-alias@0.2.1: {} - - esbuild-register@3.5.0(esbuild@0.20.2): + esbuild-register@3.6.0(esbuild@0.21.3): dependencies: - debug: 4.3.5 - esbuild: 0.20.2 + debug: 4.3.4 + esbuild: 0.21.3 transitivePeerDependencies: - supports-color @@ -20385,6 +22286,32 @@ snapshots: '@esbuild/win32-ia32': 0.20.2 '@esbuild/win32-x64': 0.20.2 + esbuild@0.21.3: + optionalDependencies: + '@esbuild/aix-ppc64': 0.21.3 + '@esbuild/android-arm': 0.21.3 + '@esbuild/android-arm64': 0.21.3 + '@esbuild/android-x64': 0.21.3 + '@esbuild/darwin-arm64': 0.21.3 + '@esbuild/darwin-x64': 0.21.3 + '@esbuild/freebsd-arm64': 0.21.3 + '@esbuild/freebsd-x64': 0.21.3 + '@esbuild/linux-arm': 0.21.3 + '@esbuild/linux-arm64': 0.21.3 + '@esbuild/linux-ia32': 0.21.3 + '@esbuild/linux-loong64': 0.21.3 + '@esbuild/linux-mips64el': 0.21.3 + '@esbuild/linux-ppc64': 0.21.3 + '@esbuild/linux-riscv64': 0.21.3 + '@esbuild/linux-s390x': 0.21.3 + '@esbuild/linux-x64': 0.21.3 + '@esbuild/netbsd-x64': 0.21.3 + '@esbuild/openbsd-x64': 0.21.3 + '@esbuild/sunos-x64': 0.21.3 + '@esbuild/win32-arm64': 0.21.3 + '@esbuild/win32-ia32': 0.21.3 + '@esbuild/win32-x64': 0.21.3 + esbuild@0.21.5: optionalDependencies: '@esbuild/aix-ppc64': 0.21.5 @@ -20423,146 +22350,358 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@8.57.0): + eslint-compat-utils@0.1.2(eslint@8.55.0): dependencies: - eslint: 8.57.0 - semver: 7.6.2 + eslint: 8.55.0 + + eslint-compat-utils@0.1.2(eslint@8.56.0): + dependencies: + eslint: 8.56.0 + + eslint-compat-utils@0.5.0(eslint@8.56.0): + dependencies: + eslint: 8.56.0 + semver: 7.6.0 + + eslint-config-prettier@9.1.0(eslint@8.55.0): + dependencies: + eslint: 8.55.0 + + eslint-config-prettier@9.1.0(eslint@8.56.0): + dependencies: + eslint: 8.56.0 + + eslint-config-standard@17.1.0(eslint-plugin-import@2.29.0(@typescript-eslint/parser@7.7.0(eslint@8.55.0)(typescript@5.4.3))(eslint@8.55.0))(eslint-plugin-n@16.6.2(eslint@8.55.0))(eslint-plugin-promise@6.1.1(eslint@8.55.0))(eslint@8.55.0): + dependencies: + eslint: 8.55.0 + eslint-plugin-import: 2.29.0(@typescript-eslint/parser@7.7.0(eslint@8.55.0)(typescript@5.4.3))(eslint@8.55.0) + eslint-plugin-n: 16.6.2(eslint@8.55.0) + eslint-plugin-promise: 6.1.1(eslint@8.55.0) + + eslint-config-standard@17.1.0(eslint-plugin-import@2.29.0(@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0))(eslint-plugin-n@16.6.2(eslint@8.56.0))(eslint-plugin-promise@6.1.1(eslint@8.56.0))(eslint@8.56.0): + dependencies: + eslint: 8.56.0 + eslint-plugin-import: 2.29.0(@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0) + eslint-plugin-n: 16.6.2(eslint@8.56.0) + eslint-plugin-promise: 6.1.1(eslint@8.56.0) + + eslint-config-standard@17.1.0(eslint-plugin-import@2.29.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0))(eslint-plugin-n@16.6.2(eslint@8.56.0))(eslint-plugin-promise@6.1.1(eslint@8.56.0))(eslint@8.56.0): + dependencies: + eslint: 8.56.0 + eslint-plugin-import: 2.29.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0) + eslint-plugin-n: 16.6.2(eslint@8.56.0) + eslint-plugin-promise: 6.1.1(eslint@8.56.0) + + eslint-import-resolver-node@0.3.9: + dependencies: + debug: 3.2.7 + is-core-module: 2.13.1 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.8.0(@typescript-eslint/parser@7.7.0(eslint@8.55.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint@8.55.0): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 7.7.0(eslint@8.55.0)(typescript@5.4.3) + eslint: 8.55.0 + eslint-import-resolver-node: 0.3.9 + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.8.0(@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 7.7.0(eslint@8.56.0)(typescript@5.4.3) + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.8.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 7.9.0(eslint@8.56.0)(typescript@5.4.5) + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 + transitivePeerDependencies: + - supports-color + + eslint-plugin-es-x@7.5.0(eslint@8.55.0): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) + '@eslint-community/regexpp': 4.10.0 + eslint: 8.55.0 + eslint-compat-utils: 0.1.2(eslint@8.55.0) + + eslint-plugin-es-x@7.5.0(eslint@8.56.0): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@eslint-community/regexpp': 4.10.0 + eslint: 8.56.0 + eslint-compat-utils: 0.1.2(eslint@8.56.0) - eslint-config-prettier@9.1.0(eslint@8.57.0): + eslint-plugin-es@3.0.1(eslint@8.55.0): dependencies: - eslint: 8.57.0 + eslint: 8.55.0 + eslint-utils: 2.1.0 + regexpp: 3.2.0 - eslint-config-standard@17.1.0(eslint-plugin-import@2.29.1)(eslint-plugin-n@16.6.2)(eslint-plugin-promise@6.4.0)(eslint@8.57.0): + eslint-plugin-es@3.0.1(eslint@8.56.0): dependencies: - eslint: 8.57.0 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.15.0)(eslint@8.57.0) - eslint-plugin-n: 16.6.2(eslint@8.57.0) - eslint-plugin-promise: 6.4.0(eslint@8.57.0) + eslint: 8.56.0 + eslint-utils: 2.1.0 + regexpp: 3.2.0 - eslint-import-resolver-node@0.3.9: + eslint-plugin-import@2.29.0(@typescript-eslint/parser@7.7.0(eslint@8.55.0)(typescript@5.4.3))(eslint@8.55.0): dependencies: + array-includes: 3.1.7 + array.prototype.findlastindex: 1.2.3 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 debug: 3.2.7 - is-core-module: 2.14.0 - resolve: 1.22.8 + doctrine: 2.1.0 + eslint: 8.55.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@7.7.0(eslint@8.55.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint@8.55.0) + hasown: 2.0.1 + is-core-module: 2.13.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.7 + object.groupby: 1.0.1 + object.values: 1.1.7 + semver: 6.3.1 + tsconfig-paths: 3.14.2 + optionalDependencies: + '@typescript-eslint/parser': 7.7.0(eslint@8.55.0)(typescript@5.4.3) transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@7.15.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): + eslint-plugin-import@2.29.0(@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3))(eslint@8.56.0): dependencies: - '@typescript-eslint/parser': 7.15.0(eslint@8.57.0)(typescript@5.5.3) + array-includes: 3.1.7 + array.prototype.findlastindex: 1.2.3 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 debug: 3.2.7 - eslint: 8.57.0 + doctrine: 2.1.0 + eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@7.7.0(eslint@8.56.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0) + hasown: 2.0.1 + is-core-module: 2.13.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.7 + object.groupby: 1.0.1 + object.values: 1.1.7 + semver: 6.3.1 + tsconfig-paths: 3.14.2 + optionalDependencies: + '@typescript-eslint/parser': 7.7.0(eslint@8.56.0)(typescript@5.4.3) transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack - supports-color - eslint-plugin-es-x@7.8.0(eslint@8.57.0): + eslint-plugin-import@2.29.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@eslint-community/regexpp': 4.11.0 - eslint: 8.57.0 - eslint-compat-utils: 0.5.1(eslint@8.57.0) - - eslint-plugin-es@3.0.1(eslint@8.57.0): - dependencies: - eslint: 8.57.0 - eslint-utils: 2.1.0 - regexpp: 3.2.0 - - eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.15.0)(eslint@8.57.0): - dependencies: - '@typescript-eslint/parser': 7.15.0(eslint@8.57.0)(typescript@5.5.3) - array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 + array-includes: 3.1.7 + array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.57.0 + eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.15.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) - hasown: 2.0.2 - is-core-module: 2.14.0 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@7.9.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0) + hasown: 2.0.1 + is-core-module: 2.13.1 is-glob: 4.0.3 minimatch: 3.1.2 - object.fromentries: 2.0.8 - object.groupby: 1.0.3 - object.values: 1.2.0 + object.fromentries: 2.0.7 + object.groupby: 1.0.1 + object.values: 1.1.7 semver: 6.3.1 - tsconfig-paths: 3.15.0 + tsconfig-paths: 3.14.2 + optionalDependencies: + '@typescript-eslint/parser': 7.9.0(eslint@8.56.0)(typescript@5.4.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-n@16.6.2(eslint@8.57.0): + eslint-plugin-n@16.6.2(eslint@8.55.0): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) + builtins: 5.0.1 + eslint: 8.55.0 + eslint-plugin-es-x: 7.5.0(eslint@8.55.0) + get-tsconfig: 4.7.2 + globals: 13.24.0 + ignore: 5.3.1 + is-builtin-module: 3.2.1 + is-core-module: 2.13.1 + minimatch: 3.1.2 + resolve: 1.22.8 + semver: 7.6.3 + + eslint-plugin-n@16.6.2(eslint@8.56.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - builtins: 5.1.0 - eslint: 8.57.0 - eslint-plugin-es-x: 7.8.0(eslint@8.57.0) - get-tsconfig: 4.7.5 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + builtins: 5.0.1 + eslint: 8.56.0 + eslint-plugin-es-x: 7.5.0(eslint@8.56.0) + get-tsconfig: 4.7.2 globals: 13.24.0 ignore: 5.3.1 is-builtin-module: 3.2.1 - is-core-module: 2.14.0 + is-core-module: 2.13.1 minimatch: 3.1.2 resolve: 1.22.8 semver: 7.6.3 - eslint-plugin-node@11.1.0(eslint@8.57.0): + eslint-plugin-node@11.1.0(eslint@8.55.0): + dependencies: + eslint: 8.55.0 + eslint-plugin-es: 3.0.1(eslint@8.55.0) + eslint-utils: 2.1.0 + ignore: 5.3.1 + minimatch: 3.1.2 + resolve: 1.22.8 + semver: 6.3.1 + + eslint-plugin-node@11.1.0(eslint@8.56.0): dependencies: - eslint: 8.57.0 - eslint-plugin-es: 3.0.1(eslint@8.57.0) + eslint: 8.56.0 + eslint-plugin-es: 3.0.1(eslint@8.56.0) eslint-utils: 2.1.0 ignore: 5.3.1 minimatch: 3.1.2 resolve: 1.22.8 semver: 6.3.1 - eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.3.2): + eslint-plugin-prettier@5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.55.0))(eslint@8.55.0)(prettier@3.2.5): + dependencies: + eslint: 8.55.0 + prettier: 3.2.5 + prettier-linter-helpers: 1.0.0 + synckit: 0.8.6 + optionalDependencies: + '@types/eslint': 8.56.10 + eslint-config-prettier: 9.1.0(eslint@8.55.0) + + eslint-plugin-prettier@5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.2.5): dependencies: - eslint: 8.57.0 - eslint-config-prettier: 9.1.0(eslint@8.57.0) - prettier: 3.3.2 + eslint: 8.56.0 + prettier: 3.2.5 prettier-linter-helpers: 1.0.0 - synckit: 0.8.8 + synckit: 0.8.6 + optionalDependencies: + '@types/eslint': 8.56.10 + eslint-config-prettier: 9.1.0(eslint@8.56.0) + + eslint-plugin-promise@6.1.1(eslint@8.55.0): + dependencies: + eslint: 8.55.0 + + eslint-plugin-promise@6.1.1(eslint@8.56.0): + dependencies: + eslint: 8.56.0 - eslint-plugin-promise@6.4.0(eslint@8.57.0): + eslint-plugin-simple-import-sort@12.0.0(eslint@8.56.0): dependencies: - eslint: 8.57.0 + eslint: 8.56.0 - eslint-plugin-simple-import-sort@12.1.0(eslint@8.57.0): + eslint-plugin-storybook@0.8.0(eslint@8.56.0)(typescript@5.4.3): dependencies: - eslint: 8.57.0 + '@storybook/csf': 0.0.1 + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.4.3) + eslint: 8.56.0 + requireindex: 1.2.0 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - supports-color + - typescript - eslint-plugin-storybook@0.8.0(eslint@8.57.0)(typescript@5.5.3): + eslint-plugin-storybook@0.8.0(eslint@8.56.0)(typescript@5.4.5): dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) - eslint: 8.57.0 + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.4.5) + eslint: 8.56.0 requireindex: 1.2.0 ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-svelte@2.41.0(eslint@8.57.0)(svelte@4.2.18): + eslint-plugin-svelte@2.38.0(eslint@8.56.0)(svelte@4.2.13)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) '@jridgewell/sourcemap-codec': 1.4.15 - eslint: 8.57.0 - eslint-compat-utils: 0.5.1(eslint@8.57.0) + debug: 4.3.4 + eslint: 8.56.0 + eslint-compat-utils: 0.5.0(eslint@8.56.0) esutils: 2.0.3 - known-css-properties: 0.34.0 - postcss: 8.4.39 - postcss-load-config: 3.1.4(postcss@8.4.39) - postcss-safe-parser: 6.0.0(postcss@8.4.39) - postcss-selector-parser: 6.1.0 - semver: 7.6.2 - svelte: 4.2.18 - svelte-eslint-parser: 0.39.2(svelte@4.2.18) + known-css-properties: 0.30.0 + postcss: 8.4.38 + postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)) + postcss-safe-parser: 6.0.0(postcss@8.4.38) + postcss-selector-parser: 6.0.16 + semver: 7.6.0 + svelte-eslint-parser: 0.35.0(svelte@4.2.13) + optionalDependencies: + svelte: 4.2.13 + transitivePeerDependencies: + - supports-color + - ts-node + + eslint-plugin-svelte@2.38.0(eslint@8.56.0)(svelte@4.2.17)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@jridgewell/sourcemap-codec': 1.4.15 + debug: 4.3.4 + eslint: 8.56.0 + eslint-compat-utils: 0.5.0(eslint@8.56.0) + esutils: 2.0.3 + known-css-properties: 0.30.0 + postcss: 8.4.38 + postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)) + postcss-safe-parser: 6.0.0(postcss@8.4.38) + postcss-selector-parser: 6.0.16 + semver: 7.6.0 + svelte-eslint-parser: 0.35.0(svelte@4.2.17) + optionalDependencies: + svelte: 4.2.17 + transitivePeerDependencies: + - supports-color + - ts-node + + eslint-plugin-svelte@2.38.0(eslint@8.56.0)(svelte@4.2.17)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@jridgewell/sourcemap-codec': 1.4.15 + debug: 4.3.4 + eslint: 8.56.0 + eslint-compat-utils: 0.5.0(eslint@8.56.0) + esutils: 2.0.3 + known-css-properties: 0.30.0 + postcss: 8.4.38 + postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) + postcss-safe-parser: 6.0.0(postcss@8.4.38) + postcss-selector-parser: 6.0.16 + semver: 7.6.0 + svelte-eslint-parser: 0.35.0(svelte@4.2.17) + optionalDependencies: + svelte: 4.2.17 transitivePeerDependencies: + - supports-color - ts-node eslint-scope@5.1.1: @@ -20597,14 +22736,14 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.5 + debug: 4.3.4 doctrine: 3.0.0 enquirer: 2.4.1 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 eslint-utils: 3.0.0(eslint@8.4.1) eslint-visitor-keys: 3.4.3 - espree: 9.2.0 + espree: 9.6.1 esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 @@ -20622,10 +22761,10 @@ snapshots: lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.4 + optionator: 0.9.3 progress: 2.0.3 regexpp: 3.2.0 - semver: 7.6.3 + semver: 7.6.2 strip-ansi: 6.0.1 strip-json-comments: 3.1.1 text-table: 0.2.0 @@ -20633,12 +22772,55 @@ snapshots: transitivePeerDependencies: - supports-color - eslint@8.57.0: + eslint@8.55.0: + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) + '@eslint-community/regexpp': 4.10.0 + '@eslint/eslintrc': 2.1.4 + '@eslint/js': 8.55.0 + '@humanwhocodes/config-array': 0.11.13 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.23.0 + graphemer: 1.4.0 + ignore: 5.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + + eslint@8.56.0: dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@eslint-community/regexpp': 4.11.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@eslint-community/regexpp': 4.10.0 '@eslint/eslintrc': 2.1.4 - '@eslint/js': 8.57.0 + '@eslint/js': 8.56.0 '@humanwhocodes/config-array': 0.11.14 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 @@ -20646,7 +22828,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.5 + debug: 4.3.4 doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -20670,7 +22852,7 @@ snapshots: lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.4 + optionator: 0.9.3 strip-ansi: 6.0.1 text-table: 0.2.0 transitivePeerDependencies: @@ -20680,21 +22862,21 @@ snapshots: esniff@2.0.1: dependencies: - d: 1.0.2 + d: 1.0.1 es5-ext: 0.10.64 event-emitter: 0.3.5 - type: 2.7.3 + type: 2.7.2 espree@9.2.0: dependencies: - acorn: 8.12.0 - acorn-jsx: 5.3.2(acorn@8.12.0) + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) eslint-visitor-keys: 3.4.3 espree@9.6.1: dependencies: - acorn: 8.12.0 - acorn-jsx: 5.3.2(acorn@8.12.0) + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) eslint-visitor-keys: 3.4.3 esprima@4.0.1: {} @@ -20755,6 +22937,11 @@ snapshots: transitivePeerDependencies: - supports-color + eth-ens-namehash@2.0.8: + dependencies: + idna-uts46-hx: 2.3.1 + js-sha3: 0.5.7 + eth-json-rpc-filters@6.0.1: dependencies: '@metamask/safe-event-emitter': 3.1.1 @@ -20763,6 +22950,25 @@ snapshots: json-rpc-engine: 6.1.0 pify: 5.0.0 + eth-lib@0.1.29(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + bn.js: 4.12.0 + elliptic: 6.5.7 + nano-json-stream-parser: 0.1.2 + servify: 0.1.12 + ws: 3.3.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + xhr-request-promise: 0.1.3 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + eth-lib@0.2.8: + dependencies: + bn.js: 4.12.0 + elliptic: 6.5.7 + xhr-request-promise: 0.1.3 + eth-query@2.1.2: dependencies: json-rpc-random-id: 1.0.1 @@ -20776,9 +22982,9 @@ snapshots: dependencies: crypto-js: 3.3.0 - ethereum-bloom-filters@1.1.0: + ethereum-bloom-filters@1.0.10: dependencies: - '@noble/hashes': 1.4.0 + js-sha3: 0.8.0 ethereum-cryptography@0.1.3: dependencies: @@ -20805,12 +23011,12 @@ snapshots: '@scure/bip32': 1.1.5 '@scure/bip39': 1.1.1 - ethereum-cryptography@2.2.1: + ethereum-cryptography@2.1.3: dependencies: - '@noble/curves': 1.4.2 - '@noble/hashes': 1.4.0 - '@scure/bip32': 1.4.0 - '@scure/bip39': 1.3.0 + '@noble/curves': 1.3.0 + '@noble/hashes': 1.3.3 + '@scure/bip32': 1.3.3 + '@scure/bip39': 1.2.2 ethereumjs-util@7.1.5: dependencies: @@ -20820,7 +23026,7 @@ snapshots: ethereum-cryptography: 0.1.3 rlp: 2.2.7 - ethers@5.7.2: + ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@ethersproject/abi': 5.7.0 '@ethersproject/abstract-provider': 5.7.0 @@ -20840,7 +23046,7 @@ snapshots: '@ethersproject/networks': 5.7.1 '@ethersproject/pbkdf2': 5.7.0 '@ethersproject/properties': 5.7.0 - '@ethersproject/providers': 5.7.2 + '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@ethersproject/random': 5.7.0 '@ethersproject/rlp': 5.7.0 '@ethersproject/sha2': 5.7.0 @@ -20856,6 +23062,19 @@ snapshots: - bufferutil - utf-8-validate + ethers@6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@adraffy/ens-normalize': 1.10.1 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@types/node': 18.15.13 + aes-js: 4.0.0-beta.5 + tslib: 2.4.0 + ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + ethjs-unit@0.1.6: dependencies: bn.js: 4.11.6 @@ -20863,13 +23082,15 @@ snapshots: event-emitter@0.3.5: dependencies: - d: 1.0.2 + d: 1.0.1 es5-ext: 0.10.64 event-target-shim@5.0.1: {} eventemitter2@6.4.9: {} + eventemitter3@4.0.4: {} + eventemitter3@5.0.1: {} events@3.3.0: {} @@ -20891,6 +23112,18 @@ snapshots: signal-exit: 3.0.7 strip-final-newline: 2.0.0 + execa@7.2.0: + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 4.3.1 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.2.0 + onetime: 6.0.0 + signal-exit: 3.0.7 + strip-final-newline: 3.0.0 + execa@8.0.1: dependencies: cross-spawn: 7.0.3 @@ -20898,7 +23131,7 @@ snapshots: human-signals: 5.0.0 is-stream: 3.0.0 merge-stream: 2.0.0 - npm-run-path: 5.3.0 + npm-run-path: 5.2.0 onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 @@ -20911,34 +23144,34 @@ snapshots: jest-message-util: 29.7.0 jest-util: 29.7.0 - express@4.19.2: + express@4.21.0: dependencies: accepts: 1.3.8 array-flatten: 1.1.1 - body-parser: 1.20.2 + body-parser: 1.20.3 content-disposition: 0.5.4 content-type: 1.0.5 cookie: 0.6.0 cookie-signature: 1.0.6 debug: 2.6.9 depd: 2.0.0 - encodeurl: 1.0.2 + encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 - finalhandler: 1.2.0 + finalhandler: 1.3.1 fresh: 0.5.2 http-errors: 2.0.0 - merge-descriptors: 1.0.1 + merge-descriptors: 1.0.3 methods: 1.1.2 on-finished: 2.4.1 parseurl: 1.3.3 - path-to-regexp: 0.1.7 + path-to-regexp: 0.1.10 proxy-addr: 2.0.7 - qs: 6.11.0 + qs: 6.13.0 range-parser: 1.2.1 safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 + send: 0.19.0 + serve-static: 1.16.2 setprototypeof: 1.2.0 statuses: 2.0.1 type-is: 1.6.18 @@ -20956,7 +23189,7 @@ snapshots: ext@1.7.0: dependencies: - type: 2.7.3 + type: 2.7.2 extend-shallow@2.0.1: dependencies: @@ -20966,6 +23199,10 @@ snapshots: extendable-error@0.1.7: {} + extension-port-stream@2.1.1: + dependencies: + webextension-polyfill: 0.10.0 + extension-port-stream@3.0.0: dependencies: readable-stream: 3.6.2 @@ -20977,6 +23214,14 @@ snapshots: iconv-lite: 0.4.24 tmp: 0.0.33 + extsprintf@1.3.0: {} + + eyes@0.1.8: {} + + fast-base64-decode@1.0.0: {} + + fast-deep-equal@2.0.1: {} + fast-deep-equal@3.1.3: {} fast-diff@1.3.0: {} @@ -20989,13 +23234,13 @@ snapshots: '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 - micromatch: 4.0.7 + micromatch: 4.0.5 fast-json-stable-stringify@2.1.0: {} fast-levenshtein@2.0.6: {} - fast-redact@3.5.0: {} + fast-redact@3.3.0: {} fast-safe-stringify@2.1.1: {} @@ -21003,7 +23248,7 @@ snapshots: dependencies: strnum: 1.0.5 - fast-xml-parser@4.4.0: + fast-xml-parser@4.3.4: dependencies: strnum: 1.0.5 @@ -21017,26 +23262,19 @@ snapshots: dependencies: bser: 2.1.1 - fdir@6.1.1(picomatch@3.0.1): - dependencies: + fdir@6.3.0(picomatch@3.0.1): + optionalDependencies: picomatch: 3.0.1 - fetch-retry@5.0.6: {} - file-entry-cache@6.0.1: dependencies: flat-cache: 3.2.0 - file-system-cache@2.3.0: - dependencies: - fs-extra: 11.1.1 - ramda: 0.29.0 + filesize@10.1.1: {} - filelist@1.0.4: + fill-range@7.0.1: dependencies: - minimatch: 5.1.6 - - filesize@10.1.2: {} + to-regex-range: 5.0.1 fill-range@7.1.1: dependencies: @@ -21056,10 +23294,10 @@ snapshots: transitivePeerDependencies: - supports-color - finalhandler@1.2.0: + finalhandler@1.3.1: dependencies: debug: 2.6.9 - encodeurl: 1.0.2 + encodeurl: 2.0.0 escape-html: 1.0.3 on-finished: 2.4.1 parseurl: 1.3.3 @@ -21080,6 +23318,8 @@ snapshots: make-dir: 3.1.0 pkg-dir: 4.2.0 + find-root@1.1.0: {} + find-up-simple@1.0.0: {} find-up@3.0.0: @@ -21103,12 +23343,12 @@ snapshots: find-yarn-workspace-root2@1.2.16: dependencies: - micromatch: 4.0.7 + micromatch: 4.0.8 pkg-dir: 4.2.0 flat-cache@3.2.0: dependencies: - flatted: 3.3.1 + flatted: 3.2.9 keyv: 4.5.4 rimraf: 3.0.2 @@ -21116,33 +23356,45 @@ snapshots: dependencies: is-buffer: 2.0.5 - flatted@3.3.1: {} + flatted@3.2.9: {} flattie@1.1.1: {} flow-enums-runtime@0.0.6: {} - flow-parser@0.238.3: {} + flow-parser@0.206.0: {} - follow-redirects@1.15.6(debug@4.3.5): - dependencies: - debug: 4.3.5 + follow-redirects@1.15.5(debug@4.3.4): + optionalDependencies: + debug: 4.3.4 + + follow-redirects@1.15.9: {} for-each@0.3.3: dependencies: is-callable: 1.2.7 - foreground-child@3.2.1: + foreground-child@3.1.1: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 + forever-agent@0.6.1: {} + forge-std@https://codeload.github.com/foundry-rs/forge-std/tar.gz/36c303b7ffdd842d06b1ec2744c9b9b5fb3083f3: {} - forge-std@https://codeload.github.com/foundry-rs/forge-std/tar.gz/8948d45d3d9022c508b83eb5d26fd3a7a93f2f32: {} + forge-std@https://codeload.github.com/foundry-rs/forge-std/tar.gz/8f24d6b04c92975e0795b5868aa0d783251cdeaa: {} + + form-data-encoder@1.7.1: {} form-data-encoder@2.1.4: {} + form-data@2.3.3: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + form-data@4.0.0: dependencies: asynckit: 0.4.0 @@ -21155,19 +23407,17 @@ snapshots: fresh@0.5.2: {} - fs-constants@1.0.0: {} - - fs-extra@11.1.1: + fs-extra@11.2.0: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - fs-extra@11.2.0: + fs-extra@4.0.3: dependencies: graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 + jsonfile: 4.0.0 + universalify: 0.1.2 fs-extra@7.0.1: dependencies: @@ -21181,9 +23431,9 @@ snapshots: jsonfile: 4.0.0 universalify: 0.1.2 - fs-minipass@2.1.0: + fs-minipass@1.2.7: dependencies: - minipass: 3.3.6 + minipass: 2.9.0 fs.realpath@1.0.0: {} @@ -21199,7 +23449,7 @@ snapshots: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.3 + es-abstract: 1.22.3 functions-have-names: 1.2.3 functional-red-black-tree@1.0.1: {} @@ -21222,40 +23472,32 @@ snapshots: function-bind: 1.1.2 has-proto: 1.0.3 has-symbols: 1.0.3 - hasown: 2.0.2 + hasown: 2.0.1 get-iterator@1.0.2: {} - get-nonce@1.0.1: {} - - get-npm-tarball-url@2.1.0: {} - get-port-please@3.1.2: {} + get-stream@5.2.0: + dependencies: + pump: 3.0.0 + get-stream@6.0.1: {} get-stream@8.0.1: {} - get-symbol-description@1.0.2: + get-symbol-description@1.0.0: dependencies: call-bind: 1.0.7 - es-errors: 1.3.0 get-intrinsic: 1.2.4 - get-tsconfig@4.7.5: + get-tsconfig@4.7.2: dependencies: resolve-pkg-maps: 1.0.0 - giget@1.2.3: + getpass@0.1.7: dependencies: - citty: 0.1.6 - consola: 3.2.3 - defu: 6.1.4 - node-fetch-native: 1.6.4 - nypm: 0.3.9 - ohash: 1.1.3 - pathe: 1.1.2 - tar: 6.2.1 + assert-plus: 1.0.0 github-slugger@2.0.0: {} @@ -21267,16 +23509,22 @@ snapshots: dependencies: is-glob: 4.0.3 - glob-to-regexp@0.4.1: {} + glob@10.3.10: + dependencies: + foreground-child: 3.1.1 + jackspeak: 2.3.6 + minimatch: 9.0.4 + minipass: 7.0.4 + path-scurry: 1.10.1 - glob@10.4.2: + glob@11.0.0: dependencies: - foreground-child: 3.2.1 - jackspeak: 3.4.0 - minimatch: 9.0.5 + foreground-child: 3.1.1 + jackspeak: 4.0.1 + minimatch: 10.0.1 minipass: 7.1.2 package-json-from-dist: 1.0.0 - path-scurry: 1.11.1 + path-scurry: 2.0.0 glob@7.2.3: dependencies: @@ -21292,19 +23540,27 @@ snapshots: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 5.1.6 + minimatch: 5.0.1 once: 1.4.0 + global@4.4.0: + dependencies: + min-document: 2.19.0 + process: 0.11.10 + globals@11.12.0: {} + globals@13.23.0: + dependencies: + type-fest: 0.20.2 + globals@13.24.0: dependencies: type-fest: 0.20.2 - globalthis@1.0.4: + globalthis@1.0.3: dependencies: define-properties: 1.2.1 - gopd: 1.0.1 globalyzer@0.1.0: {} @@ -21317,14 +23573,13 @@ snapshots: merge2: 1.4.1 slash: 3.0.0 - globby@14.0.2: + globby@13.2.2: dependencies: - '@sindresorhus/merge-streams': 2.3.0 + dir-glob: 3.0.1 fast-glob: 3.3.2 ignore: 5.3.1 - path-type: 5.0.0 - slash: 5.1.0 - unicorn-magic: 0.1.0 + merge2: 1.4.1 + slash: 4.0.0 globrex@0.1.2: {} @@ -21332,6 +23587,36 @@ snapshots: dependencies: get-intrinsic: 1.2.4 + got@11.8.6: + dependencies: + '@sindresorhus/is': 4.6.0 + '@szmarczak/http-timer': 4.0.6 + '@types/cacheable-request': 6.0.3 + '@types/responselike': 1.0.3 + cacheable-lookup: 5.0.4 + cacheable-request: 7.0.4 + decompress-response: 6.0.0 + http2-wrapper: 1.0.3 + lowercase-keys: 2.0.0 + p-cancelable: 2.1.1 + responselike: 2.0.1 + + got@12.1.0: + dependencies: + '@sindresorhus/is': 4.6.0 + '@szmarczak/http-timer': 5.0.1 + '@types/cacheable-request': 6.0.3 + '@types/responselike': 1.0.3 + cacheable-lookup: 6.1.0 + cacheable-request: 7.0.4 + decompress-response: 6.0.0 + form-data-encoder: 1.7.1 + get-stream: 6.0.1 + http2-wrapper: 2.2.1 + lowercase-keys: 3.0.0 + p-cancelable: 3.0.0 + responselike: 2.0.1 + got@12.6.1: dependencies: '@sindresorhus/is': 5.6.0 @@ -21361,38 +23646,24 @@ snapshots: section-matter: 1.0.0 strip-bom-string: 1.0.0 - gunzip-maybe@1.4.2: - dependencies: - browserify-zlib: 0.1.4 - is-deflate: 1.0.0 - is-gzip: 1.0.0 - peek-stream: 1.1.3 - pumpify: 1.5.1 - through2: 2.0.5 - - h3@1.12.0: + h3@1.10.2: dependencies: - cookie-es: 1.1.0 - crossws: 0.2.4 + cookie-es: 1.0.0 defu: 6.1.4 destr: 2.0.3 - iron-webcrypto: 1.2.1 + iron-webcrypto: 1.0.0 ohash: 1.1.3 - radix3: 1.1.2 - ufo: 1.5.3 + radix3: 1.1.0 + ufo: 1.4.0 uncrypto: 0.1.3 unenv: 1.9.0 - transitivePeerDependencies: - - uWebSockets.js - handlebars@4.7.8: + har-schema@2.0.0: {} + + har-validator@5.1.5: dependencies: - minimist: 1.2.8 - neo-async: 2.6.2 - source-map: 0.6.1 - wordwrap: 1.0.0 - optionalDependencies: - uglify-js: 3.18.0 + ajv: 6.12.6 + har-schema: 2.0.0 has-bigints@1.0.2: {} @@ -21408,7 +23679,7 @@ snapshots: has-symbols@1.0.3: {} - has-tostringtag@1.0.2: + has-tostringtag@1.0.0: dependencies: has-symbols: 1.0.3 @@ -21425,7 +23696,7 @@ snapshots: hashlru@2.3.0: {} - hasown@2.0.2: + hasown@2.0.1: dependencies: function-bind: 1.1.2 @@ -21482,7 +23753,7 @@ snapshots: hast-util-is-body-ok-link: 3.0.0 hast-util-is-element: 3.0.0 - hast-util-raw@9.0.4: + hast-util-raw@9.0.3: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.2 @@ -21490,11 +23761,11 @@ snapshots: hast-util-from-parse5: 8.0.1 hast-util-to-parse5: 8.0.0 html-void-elements: 3.0.0 - mdast-util-to-hast: 13.2.0 + mdast-util-to-hast: 13.1.0 parse5: 7.1.2 unist-util-position: 5.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.2 + vfile: 6.0.3 web-namespaces: 2.0.1 zwitch: 2.0.4 @@ -21544,10 +23815,24 @@ snapshots: '@types/unist': 3.0.2 ccount: 2.0.1 comma-separated-tokens: 2.0.3 - hast-util-raw: 9.0.4 + hast-util-raw: 9.0.3 + hast-util-whitespace: 3.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.1.0 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + stringify-entities: 4.0.4 + zwitch: 2.0.4 + + hast-util-to-html@9.0.2: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 + ccount: 2.0.1 + comma-separated-tokens: 2.0.3 hast-util-whitespace: 3.0.0 html-void-elements: 3.0.0 - mdast-util-to-hast: 13.2.0 + mdast-util-to-hast: 13.1.0 property-information: 6.5.0 space-separated-tokens: 2.0.2 stringify-entities: 4.0.4 @@ -21614,18 +23899,23 @@ snapshots: property-information: 6.5.0 space-separated-tokens: 2.0.2 + header-case@2.0.4: + dependencies: + capital-case: 1.0.4 + tslib: 2.6.2 + + hermes-estree@0.15.0: {} + hermes-estree@0.19.1: {} - hermes-estree@0.20.1: {} + hermes-parser@0.15.0: + dependencies: + hermes-estree: 0.15.0 hermes-parser@0.19.1: dependencies: hermes-estree: 0.19.1 - hermes-parser@0.20.1: - dependencies: - hermes-estree: 0.20.1 - hermes-profile-transformer@0.0.6: dependencies: source-map: 0.7.4 @@ -21638,7 +23928,9 @@ snapshots: minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 - hosted-git-info@2.8.9: {} + hoist-non-react-statics@3.3.2: + dependencies: + react-is: 16.13.1 html-encoding-sniffer@4.0.0: dependencies: @@ -21673,24 +23965,37 @@ snapshots: statuses: 2.0.1 toidentifier: 1.0.1 + http-https@1.0.0: {} + http-proxy-agent@7.0.2: dependencies: - agent-base: 7.1.1 - debug: 4.3.5 + agent-base: 7.1.0 + debug: 4.3.4 transitivePeerDependencies: - supports-color http-shutdown@1.2.2: {} + http-signature@1.2.0: + dependencies: + assert-plus: 1.0.0 + jsprim: 1.4.2 + sshpk: 1.18.0 + + http2-wrapper@1.0.3: + dependencies: + quick-lru: 5.1.1 + resolve-alpn: 1.2.1 + http2-wrapper@2.2.1: dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - https-proxy-agent@7.0.5: + https-proxy-agent@7.0.4: dependencies: - agent-base: 7.1.1 - debug: 4.3.5 + agent-base: 7.1.0 + debug: 4.3.4 transitivePeerDependencies: - supports-color @@ -21698,19 +24003,25 @@ snapshots: human-signals@2.1.0: {} + human-signals@4.3.1: {} + human-signals@5.0.0: {} i18next-browser-languagedetector@7.1.0: dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.9 + + i18next-browser-languagedetector@7.2.0: + dependencies: + '@babel/runtime': 7.23.9 i18next@22.5.1: dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.9 i18next@23.11.5: dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.9 iconv-lite@0.4.24: dependencies: @@ -21722,20 +24033,28 @@ snapshots: idb-keyval@6.2.1: {} + idna-uts46-hx@2.3.1: + dependencies: + punycode: 2.1.0 + ieee754@1.2.1: {} ignore-walk@5.0.1: dependencies: - minimatch: 5.1.6 + minimatch: 5.0.1 ignore@4.0.6: {} + ignore@5.3.0: {} + ignore@5.3.1: {} image-size@1.1.1: dependencies: queue: 6.0.2 + immediate@3.0.6: {} + import-fresh@2.0.0: dependencies: caller-path: 2.0.0 @@ -21746,6 +24065,8 @@ snapshots: parent-module: 1.0.1 resolve-from: 4.0.0 + import-meta-resolve@4.0.0: {} + import-meta-resolve@4.1.0: {} imurmurhash@0.1.4: {} @@ -21774,58 +24095,74 @@ snapshots: interface-datastore@8.2.11: dependencies: interface-store: 5.1.8 - uint8arrays: 5.1.0 + uint8arrays: 5.0.3 interface-store@3.0.4: {} interface-store@5.1.8: {} - internal-slot@1.0.7: + internal-slot@1.0.6: dependencies: - es-errors: 1.3.0 - hasown: 2.0.2 - side-channel: 1.0.6 + get-intrinsic: 1.2.4 + hasown: 2.0.1 + side-channel: 1.0.4 - intl-messageformat@10.5.14: + intl-messageformat@10.5.11: dependencies: - '@formatjs/ecma402-abstract': 2.0.0 + '@formatjs/ecma402-abstract': 1.18.2 '@formatjs/fast-memoize': 2.2.0 - '@formatjs/icu-messageformat-parser': 2.7.8 - tslib: 2.6.3 + '@formatjs/icu-messageformat-parser': 2.7.6 + tslib: 2.6.2 invariant@2.2.4: dependencies: loose-envify: 1.4.0 + ioredis@5.3.2: + dependencies: + '@ioredis/commands': 1.2.0 + cluster-key-slot: 1.1.2 + debug: 4.3.4 + denque: 2.1.0 + lodash.defaults: 4.2.0 + lodash.isarguments: 3.1.0 + redis-errors: 1.2.0 + redis-parser: 3.0.0 + standard-as-callback: 2.1.0 + transitivePeerDependencies: + - supports-color + + ip@1.1.9: {} + ipaddr.js@1.9.1: {} ipfs-core-types@0.14.1: dependencies: - '@ipld/dag-pb': 4.1.2 + '@ipld/dag-pb': 4.1.0 '@libp2p/interface-keychain': 2.0.5 '@libp2p/interface-peer-id': 2.0.2 '@libp2p/interface-peer-info': 1.0.10 '@libp2p/interface-pubsub': 3.0.7 '@multiformats/multiaddr': 11.6.1 - '@types/node': 18.19.39 + '@types/node': 18.19.31 interface-datastore: 7.0.4 ipfs-unixfs: 9.0.1 multiformats: 11.0.2 transitivePeerDependencies: - supports-color - ipfs-core-utils@0.18.1: + ipfs-core-utils@0.18.1(encoding@0.1.13): dependencies: '@libp2p/logger': 2.1.1 '@multiformats/multiaddr': 11.6.1 '@multiformats/multiaddr-to-uri': 9.0.8 any-signal: 3.0.1 - blob-to-it: 2.0.7 - browser-readablestream-to-it: 2.0.7 + blob-to-it: 2.0.6 + browser-readablestream-to-it: 2.0.6 err-code: 3.0.1 ipfs-core-types: 0.14.1 ipfs-unixfs: 9.0.1 - ipfs-utils: 9.0.14 + ipfs-utils: 9.0.14(encoding@0.1.13) it-all: 2.0.1 it-map: 2.0.1 it-peekable: 2.0.1 @@ -21840,11 +24177,11 @@ snapshots: - encoding - supports-color - ipfs-http-client@60.0.1: + ipfs-http-client@60.0.1(encoding@0.1.13): dependencies: - '@ipld/dag-cbor': 9.2.1 - '@ipld/dag-json': 10.2.2 - '@ipld/dag-pb': 4.1.2 + '@ipld/dag-cbor': 9.2.0 + '@ipld/dag-json': 10.2.0 + '@ipld/dag-pb': 4.1.0 '@libp2p/logger': 2.1.1 '@libp2p/peer-id': 2.0.4 '@multiformats/multiaddr': 11.6.1 @@ -21852,8 +24189,8 @@ snapshots: dag-jose: 4.0.0 err-code: 3.0.1 ipfs-core-types: 0.14.1 - ipfs-core-utils: 0.18.1 - ipfs-utils: 9.0.14 + ipfs-core-utils: 0.18.1(encoding@0.1.13) + ipfs-utils: 9.0.14(encoding@0.1.13) it-first: 2.0.1 it-last: 2.0.1 merge-options: 3.0.4 @@ -21868,9 +24205,9 @@ snapshots: ipfs-unixfs@9.0.1: dependencies: err-code: 3.0.1 - protobufjs: 7.3.2 + protobufjs: 7.2.6 - ipfs-utils@9.0.14: + ipfs-utils@9.0.14(encoding@0.1.13): dependencies: any-signal: 3.0.1 browser-readablestream-to-it: 1.0.3 @@ -21884,14 +24221,14 @@ snapshots: it-to-stream: 1.0.0 merge-options: 3.0.4 nanoid: 3.3.7 - native-fetch: 3.0.0(node-fetch@2.7.0) - node-fetch: 2.7.0 + native-fetch: 3.0.0(node-fetch@2.7.0(encoding@0.1.13)) + node-fetch: 2.7.0(encoding@0.1.13) react-native-fetch-api: 3.0.0 stream-to-it: 0.2.4 transitivePeerDependencies: - encoding - iron-webcrypto@1.2.1: {} + iron-webcrypto@1.0.0: {} is-absolute-url@4.0.1: {} @@ -21905,12 +24242,13 @@ snapshots: is-arguments@1.1.1: dependencies: call-bind: 1.0.7 - has-tostringtag: 1.0.2 + has-tostringtag: 1.0.0 - is-array-buffer@3.0.4: + is-array-buffer@3.0.2: dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 + is-typed-array: 1.1.12 is-arrayish@0.2.1: {} @@ -21922,12 +24260,12 @@ snapshots: is-binary-path@2.1.0: dependencies: - binary-extensions: 2.3.0 + binary-extensions: 2.2.0 is-boolean-object@1.1.2: dependencies: call-bind: 1.0.7 - has-tostringtag: 1.0.2 + has-tostringtag: 1.0.0 is-buffer@2.0.5: {} @@ -21937,22 +24275,16 @@ snapshots: is-callable@1.2.7: {} - is-core-module@2.14.0: + is-core-module@2.13.1: dependencies: - hasown: 2.0.2 - - is-data-view@1.0.1: - dependencies: - is-typed-array: 1.1.13 + hasown: 2.0.1 is-date-object@1.0.5: dependencies: - has-tostringtag: 1.0.2 + has-tostringtag: 1.0.0 is-decimal@2.0.1: {} - is-deflate@1.0.0: {} - is-directory@0.3.1: {} is-docker@2.2.1: {} @@ -21969,16 +24301,16 @@ snapshots: is-fullwidth-code-point@3.0.0: {} + is-function@1.0.2: {} + is-generator-function@1.0.10: dependencies: - has-tostringtag: 1.0.2 + has-tostringtag: 1.0.0 is-glob@4.0.3: dependencies: is-extglob: 2.1.1 - is-gzip@1.0.0: {} - is-hex-prefixed@1.0.0: {} is-hexadecimal@2.0.1: {} @@ -21991,16 +24323,11 @@ snapshots: is-interactive@2.0.0: {} - is-nan@1.3.2: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - - is-negative-zero@2.0.3: {} + is-negative-zero@2.0.2: {} is-number-object@1.0.7: dependencies: - has-tostringtag: 1.0.2 + has-tostringtag: 1.0.0 is-number@7.0.0: {} @@ -22025,9 +24352,9 @@ snapshots: is-regex@1.1.4: dependencies: call-bind: 1.0.7 - has-tostringtag: 1.0.2 + has-tostringtag: 1.0.0 - is-shared-array-buffer@1.0.3: + is-shared-array-buffer@1.0.2: dependencies: call-bind: 1.0.7 @@ -22037,7 +24364,7 @@ snapshots: is-string@1.0.7: dependencies: - has-tostringtag: 1.0.2 + has-tostringtag: 1.0.0 is-subdir@1.2.0: dependencies: @@ -22047,9 +24374,11 @@ snapshots: dependencies: has-symbols: 1.0.3 - is-typed-array@1.1.13: + is-typed-array@1.1.12: dependencies: - which-typed-array: 1.1.15 + which-typed-array: 1.1.13 + + is-typedarray@1.0.0: {} is-unicode-supported@0.1.0: {} @@ -22089,20 +24418,26 @@ snapshots: isobject@3.0.1: {} - isomorphic-unfetch@3.1.0: + isomorphic-unfetch@3.1.0(encoding@0.1.13): dependencies: - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) unfetch: 4.2.0 transitivePeerDependencies: - encoding - isows@1.0.3(ws@8.13.0): + isows@1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)): + dependencies: + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + + isows@1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)): dependencies: - ws: 8.13.0 + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) - isows@1.0.4(ws@8.17.1): + isows@1.0.4(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)): dependencies: - ws: 8.17.1 + ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + + isstream@0.1.2: {} istanbul-lib-coverage@3.2.2: {} @@ -22112,10 +24447,10 @@ snapshots: make-dir: 4.0.0 supports-color: 7.2.0 - istanbul-lib-source-maps@5.0.5: + istanbul-lib-source-maps@5.0.4: dependencies: '@jridgewell/trace-mapping': 0.3.25 - debug: 4.3.5 + debug: 4.3.4 istanbul-lib-coverage: 3.2.2 transitivePeerDependencies: - supports-color @@ -22159,18 +24494,17 @@ snapshots: p-fifo: 1.0.0 readable-stream: 3.6.2 - jackspeak@3.4.0: + jackspeak@2.3.6: dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 - jake@10.9.1: + jackspeak@4.0.1: dependencies: - async: 3.2.5 - chalk: 4.1.2 - filelist: 1.0.4 - minimatch: 3.1.2 + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 jest-diff@29.7.0: dependencies: @@ -22184,7 +24518,7 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.9 + '@types/node': 20.12.7 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -22199,12 +24533,12 @@ snapshots: jest-message-util@29.7.0: dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.24.2 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 - micromatch: 4.0.7 + micromatch: 4.0.5 pretty-format: 29.7.0 slash: 3.0.0 stack-utils: 2.0.6 @@ -22212,13 +24546,13 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.14.9 + '@types/node': 20.12.7 jest-util: 29.7.0 jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.14.9 + '@types/node': 20.12.7 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -22235,14 +24569,14 @@ snapshots: jest-worker@29.7.0: dependencies: - '@types/node': 20.14.9 + '@types/node': 20.12.7 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jiti@1.21.6: {} + jiti@1.21.0: {} - joi@17.13.3: + joi@17.12.1: dependencies: '@hapi/hoek': 9.3.0 '@hapi/topo': 5.1.0 @@ -22250,11 +24584,15 @@ snapshots: '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 + js-cookie@2.2.1: {} + + js-sha3@0.5.7: {} + js-sha3@0.8.0: {} js-tokens@4.0.0: {} - js-tokens@9.0.0: {} + js-tokens@8.0.3: {} js-yaml@3.14.1: dependencies: @@ -22265,27 +24603,29 @@ snapshots: dependencies: argparse: 2.0.1 + jsbn@0.1.1: {} + jsc-android@250231.0.0: {} jsc-safe-url@0.2.4: {} - jscodeshift@0.14.0(@babel/preset-env@7.24.7): + jscodeshift@0.14.0(@babel/preset-env@7.23.9(@babel/core@7.25.2)): dependencies: '@babel/core': 7.25.2 - '@babel/parser': 7.25.3 + '@babel/parser': 7.25.6 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.2) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.2) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.2) - '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.25.2) - '@babel/preset-env': 7.24.7(@babel/core@7.25.2) - '@babel/preset-flow': 7.24.7(@babel/core@7.25.2) - '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2) - '@babel/register': 7.24.6(@babel/core@7.25.2) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.25.2) + '@babel/preset-env': 7.23.9(@babel/core@7.25.2) + '@babel/preset-flow': 7.23.3(@babel/core@7.25.2) + '@babel/preset-typescript': 7.23.3(@babel/core@7.25.2) + '@babel/register': 7.23.7(@babel/core@7.25.2) babel-core: 7.0.0-bridge.0(@babel/core@7.25.2) chalk: 4.1.2 - flow-parser: 0.238.3 + flow-parser: 0.206.0 graceful-fs: 4.2.11 - micromatch: 4.0.7 + micromatch: 4.0.8 neo-async: 2.6.2 node-dir: 0.1.17 recast: 0.21.5 @@ -22294,33 +24634,35 @@ snapshots: transitivePeerDependencies: - supports-color - jscodeshift@0.15.2(@babel/preset-env@7.24.7): - dependencies: - '@babel/core': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.7) - '@babel/preset-env': 7.24.7(@babel/core@7.24.7) - '@babel/preset-flow': 7.24.7(@babel/core@7.24.7) - '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) - '@babel/register': 7.24.6(@babel/core@7.24.7) - babel-core: 7.0.0-bridge.0(@babel/core@7.24.7) - chalk: 4.1.2 - flow-parser: 0.238.3 - graceful-fs: 4.2.11 - micromatch: 4.0.7 - neo-async: 2.6.2 - node-dir: 0.1.17 - recast: 0.23.9 - temp: 0.8.4 - write-file-atomic: 2.4.3 + jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + cssstyle: 4.0.1 + data-urls: 5.0.0 + decimal.js: 10.4.3 + form-data: 4.0.0 + html-encoding-sniffer: 4.0.0 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.4 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.7 + parse5: 7.1.2 + rrweb-cssom: 0.6.0 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.3 + w3c-xmlserializer: 5.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 3.1.1 + whatwg-mimetype: 4.0.0 + whatwg-url: 14.0.0 + ws: 8.16.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + xml-name-validator: 5.0.0 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate - jsdom@24.1.0: + jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3): dependencies: cssstyle: 4.0.1 data-urls: 5.0.0 @@ -22328,25 +24670,26 @@ snapshots: form-data: 4.0.0 html-encoding-sniffer: 4.0.0 http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.5 + https-proxy-agent: 7.0.4 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.10 + nwsapi: 2.2.7 parse5: 7.1.2 - rrweb-cssom: 0.7.1 + rrweb-cssom: 0.6.0 saxes: 6.0.0 symbol-tree: 3.2.4 - tough-cookie: 4.1.4 + tough-cookie: 4.1.3 w3c-xmlserializer: 5.0.0 webidl-conversions: 7.0.0 whatwg-encoding: 3.1.1 whatwg-mimetype: 4.0.0 whatwg-url: 14.0.0 - ws: 8.17.1 + ws: 8.16.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) xml-name-validator: 5.0.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate + optional: true jsesc@0.5.0: {} @@ -22363,14 +24706,24 @@ snapshots: '@metamask/safe-event-emitter': 2.0.0 eth-rpc-errors: 4.0.3 + json-rpc-middleware-stream@4.2.3: + dependencies: + '@metamask/safe-event-emitter': 3.0.0 + json-rpc-engine: 6.1.0 + readable-stream: 2.3.8 + json-rpc-random-id@1.0.1: {} json-schema-traverse@0.4.1: {} json-schema-traverse@1.0.0: {} + json-schema@0.4.0: {} + json-stable-stringify-without-jsonify@1.0.1: {} + json-stringify-safe@5.0.1: {} + json-to-ast@2.1.0: dependencies: code-error-fragment: 0.0.230 @@ -22384,6 +24737,8 @@ snapshots: jsonc-parser@2.3.1: {} + jsonc-parser@3.2.0: {} + jsonfile@4.0.0: optionalDependencies: graceful-fs: 4.2.11 @@ -22396,10 +24751,30 @@ snapshots: jsonpointer@5.0.1: {} + jsprim@1.4.2: + dependencies: + assert-plus: 1.0.0 + extsprintf: 1.3.0 + json-schema: 0.4.0 + verror: 1.10.0 + + jszip@3.10.1: + dependencies: + lie: 3.3.0 + pako: 1.0.11 + readable-stream: 2.3.8 + setimmediate: 1.0.5 + + keccak256@1.0.6: + dependencies: + bn.js: 5.2.1 + buffer: 6.0.3 + keccak: 3.0.4 + keccak@3.0.4: dependencies: node-addon-api: 2.0.2 - node-gyp-build: 4.8.1 + node-gyp-build: 4.8.0 readable-stream: 3.6.2 keyv@4.5.4: @@ -22414,52 +24789,46 @@ snapshots: kleur@4.1.5: {} - known-css-properties@0.34.0: {} + known-css-properties@0.30.0: {} latest-version@7.0.0: dependencies: package-json: 8.1.1 - lazy-universal-dotenv@4.0.0: - dependencies: - app-root-dir: 1.0.2 - dotenv: 16.4.5 - dotenv-expand: 10.0.0 - - lefthook-darwin-arm64@1.6.18: + lefthook-darwin-arm64@1.6.10: optional: true - lefthook-darwin-x64@1.6.18: + lefthook-darwin-x64@1.6.10: optional: true - lefthook-freebsd-arm64@1.6.18: + lefthook-freebsd-arm64@1.6.10: optional: true - lefthook-freebsd-x64@1.6.18: + lefthook-freebsd-x64@1.6.10: optional: true - lefthook-linux-arm64@1.6.18: + lefthook-linux-arm64@1.6.10: optional: true - lefthook-linux-x64@1.6.18: + lefthook-linux-x64@1.6.10: optional: true - lefthook-windows-arm64@1.6.18: + lefthook-windows-arm64@1.6.10: optional: true - lefthook-windows-x64@1.6.18: + lefthook-windows-x64@1.6.10: optional: true - lefthook@1.6.18: + lefthook@1.6.10: optionalDependencies: - lefthook-darwin-arm64: 1.6.18 - lefthook-darwin-x64: 1.6.18 - lefthook-freebsd-arm64: 1.6.18 - lefthook-freebsd-x64: 1.6.18 - lefthook-linux-arm64: 1.6.18 - lefthook-linux-x64: 1.6.18 - lefthook-windows-arm64: 1.6.18 - lefthook-windows-x64: 1.6.18 + lefthook-darwin-arm64: 1.6.10 + lefthook-darwin-x64: 1.6.10 + lefthook-freebsd-arm64: 1.6.10 + lefthook-freebsd-x64: 1.6.10 + lefthook-linux-arm64: 1.6.10 + lefthook-linux-x64: 1.6.10 + lefthook-windows-arm64: 1.6.10 + lefthook-windows-x64: 1.6.10 leven@3.1.0: {} @@ -22468,6 +24837,10 @@ snapshots: prelude-ls: 1.2.1 type-check: 0.4.0 + lie@3.3.0: + dependencies: + immediate: 3.0.6 + lighthouse-logger@1.4.2: dependencies: debug: 2.6.9 @@ -22477,32 +24850,30 @@ snapshots: lilconfig@2.1.0: {} - lilconfig@3.1.2: {} + lilconfig@3.1.1: {} lines-and-columns@1.2.4: {} - listhen@1.7.2: + listhen@1.6.0: dependencies: - '@parcel/watcher': 2.4.1 - '@parcel/watcher-wasm': 2.4.1 + '@parcel/watcher': 2.4.0 + '@parcel/watcher-wasm': 2.4.0 citty: 0.1.6 clipboardy: 4.0.0 consola: 3.2.3 - crossws: 0.2.4 + crossws: 0.1.1 defu: 6.1.4 get-port-please: 3.1.2 - h3: 1.12.0 + h3: 1.10.2 http-shutdown: 1.2.2 - jiti: 1.21.6 - mlly: 1.7.1 + jiti: 1.21.0 + mlly: 1.5.0 node-forge: 1.3.1 pathe: 1.1.2 std-env: 3.7.0 - ufo: 1.5.3 + ufo: 1.4.0 untun: 0.1.3 uqr: 0.1.2 - transitivePeerDependencies: - - uWebSockets.js lit-element@3.3.3: dependencies: @@ -22510,17 +24881,17 @@ snapshots: '@lit/reactive-element': 1.6.3 lit-html: 2.8.0 - lit-element@4.0.6: + lit-element@4.0.4: dependencies: '@lit-labs/ssr-dom-shim': 1.2.0 '@lit/reactive-element': 2.0.4 - lit-html: 3.1.4 + lit-html: 3.1.2 lit-html@2.8.0: dependencies: '@types/trusted-types': 2.0.7 - lit-html@3.1.4: + lit-html@3.1.2: dependencies: '@types/trusted-types': 2.0.7 @@ -22533,8 +24904,8 @@ snapshots: lit@3.1.0: dependencies: '@lit/reactive-element': 2.0.4 - lit-element: 4.0.6 - lit-html: 3.1.4 + lit-element: 4.0.4 + lit-html: 3.1.2 load-tsconfig@0.2.5: {} @@ -22547,8 +24918,8 @@ snapshots: local-pkg@0.5.0: dependencies: - mlly: 1.7.1 - pkg-types: 1.1.2 + mlly: 1.5.0 + pkg-types: 1.0.3 locate-character@3.0.0: {} @@ -22571,6 +24942,10 @@ snapshots: lodash.debounce@4.0.8: {} + lodash.defaults@4.2.0: {} + + lodash.isarguments@3.1.0: {} + lodash.isequal@4.5.0: {} lodash.merge@4.6.2: {} @@ -22601,7 +24976,7 @@ snapshots: logkitty@0.7.1: dependencies: ansi-fragments: 0.2.1 - dayjs: 1.11.11 + dayjs: 1.11.10 yargs: 15.4.1 lokijs@1.5.12: {} @@ -22618,13 +24993,21 @@ snapshots: dependencies: get-func-name: 2.0.2 + loupe@3.1.1: + dependencies: + get-func-name: 2.0.2 + lower-case@2.0.2: dependencies: - tslib: 2.6.3 + tslib: 2.6.2 + + lowercase-keys@2.0.0: {} lowercase-keys@3.0.0: {} - lru-cache@10.3.0: {} + lru-cache@10.2.0: {} + + lru-cache@11.0.1: {} lru-cache@4.1.5: dependencies: @@ -22635,9 +25018,13 @@ snapshots: dependencies: yallist: 3.1.1 + lru-cache@6.0.0: + dependencies: + yallist: 4.0.0 + lru-queue@0.1.0: dependencies: - es5-ext: 0.10.64 + es5-ext: 0.10.62 lz-string@1.5.0: {} @@ -22649,10 +25036,24 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - magicast@0.3.4: + magic-string@0.30.7: + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + + magic-string@0.30.9: + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + + magicast@0.3.3: + dependencies: + '@babel/parser': 7.23.9 + '@babel/types': 7.23.9 + source-map-js: 1.2.0 + + magicast@0.3.5: dependencies: - '@babel/parser': 7.24.7 - '@babel/types': 7.24.7 + '@babel/parser': 7.25.6 + '@babel/types': 7.25.6 source-map-js: 1.2.0 make-dir@2.1.0: @@ -22666,7 +25067,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.6.3 + semver: 7.6.0 make-error@1.3.6: {} @@ -22680,9 +25081,9 @@ snapshots: markdown-table@3.0.3: {} - markdown-to-jsx@7.3.2(react@18.3.1): + markdown-to-jsx@7.5.0(react@18.2.0): dependencies: - react: 18.3.1 + react: 18.2.0 marky@1.2.5: {} @@ -22703,7 +25104,7 @@ snapshots: '@types/mdast': 4.0.4 '@types/unist': 3.0.2 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 parse-entities: 4.0.1 stringify-entities: 4.0.4 @@ -22718,7 +25119,7 @@ snapshots: unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 - mdast-util-from-markdown@2.0.1: + mdast-util-from-markdown@2.0.0: dependencies: '@types/mdast': 4.0.4 '@types/unist': 3.0.2 @@ -22747,7 +25148,7 @@ snapshots: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 micromark-util-normalize-identifier: 2.0.0 transitivePeerDependencies: @@ -22756,7 +25157,7 @@ snapshots: mdast-util-gfm-strikethrough@2.0.0: dependencies: '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: - supports-color @@ -22766,7 +25167,7 @@ snapshots: '@types/mdast': 4.0.4 devlop: 1.1.0 markdown-table: 3.0.3 - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: - supports-color @@ -22775,14 +25176,14 @@ snapshots: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: - supports-color mdast-util-gfm@3.0.0: dependencies: - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.0 mdast-util-gfm-autolink-literal: 2.0.0 mdast-util-gfm-footnote: 2.0.0 mdast-util-gfm-strikethrough: 2.0.0 @@ -22798,7 +25199,7 @@ snapshots: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: - supports-color @@ -22811,7 +25212,7 @@ snapshots: '@types/unist': 3.0.2 ccount: 2.0.1 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 parse-entities: 4.0.1 stringify-entities: 4.0.4 @@ -22823,7 +25224,7 @@ snapshots: mdast-util-mdx@3.0.0: dependencies: - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.0 mdast-util-mdx-expression: 2.0.0 mdast-util-mdx-jsx: 3.1.2 mdast-util-mdxjs-esm: 2.0.1 @@ -22837,7 +25238,7 @@ snapshots: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: - supports-color @@ -22847,7 +25248,7 @@ snapshots: '@types/mdast': 4.0.4 unist-util-is: 6.0.0 - mdast-util-to-hast@13.2.0: + mdast-util-to-hast@13.1.0: dependencies: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 @@ -22857,7 +25258,7 @@ snapshots: trim-lines: 3.0.1 unist-util-position: 5.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.2 + vfile: 6.0.3 mdast-util-to-markdown@2.1.0: dependencies: @@ -22880,16 +25281,16 @@ snapshots: memoize-one@5.2.1: {} - memoizee@0.4.17: + memoizee@0.4.15: dependencies: - d: 1.0.2 - es5-ext: 0.10.64 + d: 1.0.1 + es5-ext: 0.10.62 es6-weak-map: 2.0.3 event-emitter: 0.3.5 is-promise: 2.2.2 lru-queue: 0.1.0 next-tick: 1.1.0 - timers-ext: 0.1.8 + timers-ext: 0.1.7 memoizerific@1.11.3: dependencies: @@ -22897,7 +25298,7 @@ snapshots: memorystream@0.3.1: {} - merge-descriptors@1.0.1: {} + merge-descriptors@1.0.3: {} merge-options@3.0.4: dependencies: @@ -22917,42 +25318,42 @@ snapshots: methods@1.1.2: {} - metro-babel-transformer@0.80.9: + metro-babel-transformer@0.80.6: dependencies: '@babel/core': 7.25.2 - hermes-parser: 0.20.1 + hermes-parser: 0.19.1 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - metro-cache-key@0.80.9: {} + metro-cache-key@0.80.6: {} - metro-cache@0.80.9: + metro-cache@0.80.6: dependencies: - metro-core: 0.80.9 + metro-core: 0.80.6 rimraf: 3.0.2 - metro-config@0.80.9: + metro-config@0.80.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: connect: 3.7.0 cosmiconfig: 5.2.1 jest-validate: 29.7.0 - metro: 0.80.9 - metro-cache: 0.80.9 - metro-core: 0.80.9 - metro-runtime: 0.80.9 + metro: 0.80.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + metro-cache: 0.80.6 + metro-core: 0.80.6 + metro-runtime: 0.80.6 transitivePeerDependencies: - bufferutil - encoding - supports-color - utf-8-validate - metro-core@0.80.9: + metro-core@0.80.6: dependencies: lodash.throttle: 4.1.1 - metro-resolver: 0.80.9 + metro-resolver: 0.80.6 - metro-file-map@0.80.9: + metro-file-map@0.80.6: dependencies: anymatch: 3.1.3 debug: 2.6.9 @@ -22960,7 +25361,7 @@ snapshots: graceful-fs: 4.2.11 invariant: 2.2.4 jest-worker: 29.7.0 - micromatch: 4.0.7 + micromatch: 4.0.8 node-abort-controller: 3.1.1 nullthrows: 1.1.1 walker: 1.0.8 @@ -22969,33 +25370,33 @@ snapshots: transitivePeerDependencies: - supports-color - metro-minify-terser@0.80.9: + metro-minify-terser@0.80.6: dependencies: - terser: 5.31.1 + terser: 5.27.2 - metro-resolver@0.80.9: {} + metro-resolver@0.80.6: {} - metro-runtime@0.80.9: + metro-runtime@0.80.6: dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.9 - metro-source-map@0.80.9: + metro-source-map@0.80.6: dependencies: - '@babel/traverse': 7.25.3 - '@babel/types': 7.25.2 + '@babel/traverse': 7.25.6 + '@babel/types': 7.25.6 invariant: 2.2.4 - metro-symbolicate: 0.80.9 + metro-symbolicate: 0.80.6 nullthrows: 1.1.1 - ob1: 0.80.9 + ob1: 0.80.6 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: - supports-color - metro-symbolicate@0.80.9: + metro-symbolicate@0.80.6: dependencies: invariant: 2.2.4 - metro-source-map: 0.80.9 + metro-source-map: 0.80.6 nullthrows: 1.1.1 source-map: 0.5.7 through2: 2.0.5 @@ -23003,29 +25404,29 @@ snapshots: transitivePeerDependencies: - supports-color - metro-transform-plugins@0.80.9: + metro-transform-plugins@0.80.6: dependencies: '@babel/core': 7.25.2 - '@babel/generator': 7.25.0 + '@babel/generator': 7.25.6 '@babel/template': 7.25.0 - '@babel/traverse': 7.25.3 + '@babel/traverse': 7.25.6 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - metro-transform-worker@0.80.9: + metro-transform-worker@0.80.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: '@babel/core': 7.25.2 - '@babel/generator': 7.25.0 - '@babel/parser': 7.25.3 - '@babel/types': 7.25.2 - metro: 0.80.9 - metro-babel-transformer: 0.80.9 - metro-cache: 0.80.9 - metro-cache-key: 0.80.9 - metro-minify-terser: 0.80.9 - metro-source-map: 0.80.9 - metro-transform-plugins: 0.80.9 + '@babel/generator': 7.25.6 + '@babel/parser': 7.25.6 + '@babel/types': 7.25.6 + metro: 0.80.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + metro-babel-transformer: 0.80.6 + metro-cache: 0.80.6 + metro-cache-key: 0.80.6 + metro-minify-terser: 0.80.6 + metro-source-map: 0.80.6 + metro-transform-plugins: 0.80.6 nullthrows: 1.1.1 transitivePeerDependencies: - bufferutil @@ -23033,15 +25434,15 @@ snapshots: - supports-color - utf-8-validate - metro@0.80.9: + metro@0.80.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: '@babel/code-frame': 7.24.7 '@babel/core': 7.25.2 - '@babel/generator': 7.25.0 - '@babel/parser': 7.25.3 + '@babel/generator': 7.25.6 + '@babel/parser': 7.25.6 '@babel/template': 7.25.0 - '@babel/traverse': 7.25.3 - '@babel/types': 7.25.2 + '@babel/traverse': 7.25.6 + '@babel/types': 7.25.6 accepts: 1.3.8 chalk: 4.1.2 ci-info: 2.0.0 @@ -23050,33 +25451,33 @@ snapshots: denodeify: 1.2.1 error-stack-parser: 2.1.4 graceful-fs: 4.2.11 - hermes-parser: 0.20.1 + hermes-parser: 0.19.1 image-size: 1.1.1 invariant: 2.2.4 jest-worker: 29.7.0 jsc-safe-url: 0.2.4 lodash.throttle: 4.1.1 - metro-babel-transformer: 0.80.9 - metro-cache: 0.80.9 - metro-cache-key: 0.80.9 - metro-config: 0.80.9 - metro-core: 0.80.9 - metro-file-map: 0.80.9 - metro-resolver: 0.80.9 - metro-runtime: 0.80.9 - metro-source-map: 0.80.9 - metro-symbolicate: 0.80.9 - metro-transform-plugins: 0.80.9 - metro-transform-worker: 0.80.9 + metro-babel-transformer: 0.80.6 + metro-cache: 0.80.6 + metro-cache-key: 0.80.6 + metro-config: 0.80.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + metro-core: 0.80.6 + metro-file-map: 0.80.6 + metro-resolver: 0.80.6 + metro-runtime: 0.80.6 + metro-source-map: 0.80.6 + metro-symbolicate: 0.80.6 + metro-transform-plugins: 0.80.6 + metro-transform-worker: 0.80.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) mime-types: 2.1.35 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) nullthrows: 1.1.1 rimraf: 3.0.2 serialize-error: 2.1.0 source-map: 0.5.7 strip-ansi: 6.0.1 throat: 5.0.0 - ws: 7.5.10 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) yargs: 17.7.2 transitivePeerDependencies: - bufferutil @@ -23341,7 +25742,7 @@ snapshots: micromark@4.0.0: dependencies: '@types/debug': 4.1.12 - debug: 4.3.5 + debug: 4.3.4 decode-named-character-reference: 1.0.2 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 @@ -23360,7 +25761,12 @@ snapshots: transitivePeerDependencies: - supports-color - micromatch@4.0.7: + micromatch@4.0.5: + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + + micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 @@ -23381,10 +25787,18 @@ snapshots: mimic-fn@4.0.0: {} + mimic-function@5.0.1: {} + + mimic-response@1.0.1: {} + mimic-response@3.1.0: {} mimic-response@4.0.0: {} + min-document@2.19.0: + dependencies: + dom-walk: 0.1.2 + min-indent@1.0.1: {} minidenticons@4.2.1: {} @@ -23393,11 +25807,15 @@ snapshots: minimalistic-crypto-utils@1.0.1: {} + minimatch@10.0.1: + dependencies: + brace-expansion: 2.0.1 + minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 - minimatch@5.1.6: + minimatch@5.0.1: dependencies: brace-expansion: 2.0.1 @@ -23405,35 +25823,66 @@ snapshots: dependencies: brace-expansion: 2.0.1 - minimatch@9.0.5: + minimatch@9.0.3: + dependencies: + brace-expansion: 2.0.1 + + minimatch@9.0.4: dependencies: brace-expansion: 2.0.1 minimist@1.2.8: {} - minipass@3.3.6: + minipass@2.9.0: dependencies: - yallist: 4.0.0 + safe-buffer: 5.2.1 + yallist: 3.1.1 - minipass@5.0.0: {} + minipass@7.0.4: {} minipass@7.1.2: {} - minizlib@2.1.2: + minizlib@1.3.3: dependencies: - minipass: 3.3.6 - yallist: 4.0.0 + minipass: 2.9.0 + + mipd@0.0.5(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4): + dependencies: + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + mipd@0.0.5(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8): + dependencies: + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod - mipd@0.0.5(typescript@5.5.3): + mipd@0.0.5(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@6.0.3)(zod@3.23.8): dependencies: - typescript: 5.5.3 - viem: 1.21.4(typescript@5.5.3) + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@6.0.3)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - mkdirp-classic@0.5.3: {} + mipd@0.0.7(typescript@5.4.5): + optionalDependencies: + typescript: 5.4.5 + + mkdirp-promise@5.0.1: + dependencies: + mkdirp: 2.1.6 mkdirp@0.5.6: dependencies: @@ -23443,38 +25892,40 @@ snapshots: mkdirp@2.1.6: {} - mlly@1.7.1: + mlly@1.5.0: dependencies: - acorn: 8.12.0 + acorn: 8.11.3 pathe: 1.1.2 - pkg-types: 1.1.2 - ufo: 1.5.3 - - moralis@2.26.7(debug@4.3.5): - dependencies: - '@moralisweb3/api-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/aptos-api': 2.26.7(debug@4.3.5) - '@moralisweb3/auth': 2.26.7(debug@4.3.5) - '@moralisweb3/common-aptos-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-auth-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-core': 2.26.7(debug@4.3.5) - '@moralisweb3/common-evm-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-sol-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/common-streams-utils': 2.26.7(debug@4.3.5) - '@moralisweb3/evm-api': 2.26.7(debug@4.3.5) - '@moralisweb3/sol-api': 2.26.7(debug@4.3.5) - '@moralisweb3/streams': 2.26.7(debug@4.3.5) + pkg-types: 1.0.3 + ufo: 1.4.0 + + mock-fs@4.14.0: {} + + moralis@2.26.2(debug@4.3.4): + dependencies: + '@moralisweb3/api-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/aptos-api': 2.26.2(debug@4.3.4) + '@moralisweb3/auth': 2.26.2(debug@4.3.4) + '@moralisweb3/common-aptos-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-auth-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-core': 2.26.2(debug@4.3.4) + '@moralisweb3/common-evm-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-sol-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/common-streams-utils': 2.26.2(debug@4.3.4) + '@moralisweb3/evm-api': 2.26.2(debug@4.3.4) + '@moralisweb3/sol-api': 2.26.2(debug@4.3.4) + '@moralisweb3/streams': 2.26.2(debug@4.3.4) '@moralisweb3/streams-typings': 1.0.7 transitivePeerDependencies: - debug motion@10.16.2: dependencies: - '@motionone/animation': 10.18.0 - '@motionone/dom': 10.18.0 + '@motionone/animation': 10.16.3 + '@motionone/dom': 10.16.4 '@motionone/svelte': 10.16.4 - '@motionone/types': 10.17.1 - '@motionone/utils': 10.18.0 + '@motionone/types': 10.16.3 + '@motionone/utils': 10.16.3 '@motionone/vue': 10.16.4 mri@1.2.0: {} @@ -23489,35 +25940,62 @@ snapshots: muggle-string@0.4.1: {} + multibase@0.6.1: + dependencies: + base-x: 3.0.9 + buffer: 5.7.1 + + multibase@0.7.0: + dependencies: + base-x: 3.0.9 + buffer: 5.7.1 + + multicodec@0.5.7: + dependencies: + varint: 5.0.2 + + multicodec@1.0.4: + dependencies: + buffer: 5.7.1 + varint: 5.0.2 + multiformats@11.0.2: {} multiformats@12.1.3: {} - multiformats@13.1.3: {} + multiformats@13.1.0: {} multiformats@9.9.0: {} + multihashes@0.4.21: + dependencies: + buffer: 5.7.1 + multibase: 0.7.0 + varint: 5.0.2 + murky@https://codeload.github.com/dmfxyz/murky/tar.gz/5feccd1253d7da820f7cccccdedf64471025455d: {} + mute-stream@0.0.8: {} + mz@2.7.0: dependencies: any-promise: 1.3.0 object-assign: 4.1.1 thenify-all: 1.6.0 + nano-json-stream-parser@0.1.2: {} + nanoid@3.3.7: {} nanoid@4.0.2: {} - napi-wasm@1.1.0: {} - - native-fetch@3.0.0(node-fetch@2.7.0): + native-fetch@3.0.0(node-fetch@2.7.0(encoding@0.1.13)): dependencies: - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) - native-fetch@4.0.2(undici@5.28.4): + native-fetch@4.0.2(undici@5.28.3): dependencies: - undici: 5.28.4 + undici: 5.28.3 natural-compare@1.4.0: {} @@ -23525,6 +26003,8 @@ snapshots: neo-async@2.6.2: {} + neotraverse@0.6.18: {} + next-tick@1.1.0: {} nlcst-to-string@4.0.0: @@ -23534,7 +26014,7 @@ snapshots: no-case@3.0.4: dependencies: lower-case: 2.0.2 - tslib: 2.6.3 + tslib: 2.6.2 nocache@3.0.4: {} @@ -23550,34 +26030,33 @@ snapshots: dependencies: minimatch: 3.1.2 - node-fetch-native@1.6.4: {} + node-fetch-native@1.6.2: {} - node-fetch@2.7.0: + node-fetch@2.7.0(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 + optionalDependencies: + encoding: 0.1.13 node-forge@1.3.1: {} - node-gyp-build@4.8.1: {} + node-gyp-build@4.8.0: {} node-int64@0.4.0: {} node-releases@2.0.14: {} - node-stream-zip@1.15.0: {} + node-releases@2.0.18: {} - normalize-package-data@2.5.0: - dependencies: - hosted-git-info: 2.8.9 - resolve: 1.22.8 - semver: 5.7.2 - validate-npm-package-license: 3.0.4 + node-stream-zip@1.15.0: {} normalize-path@3.0.0: {} normalize-range@0.1.2: {} - normalize-url@8.0.1: {} + normalize-url@6.1.0: {} + + normalize-url@8.0.0: {} not@0.1.0: {} @@ -23598,7 +26077,7 @@ snapshots: dependencies: path-key: 3.1.1 - npm-run-path@5.3.0: + npm-run-path@5.2.0: dependencies: path-key: 4.0.0 @@ -23613,18 +26092,11 @@ snapshots: bn.js: 4.11.6 strip-hex-prefix: 1.0.0 - nwsapi@2.2.10: {} + nwsapi@2.2.7: {} - nypm@0.3.9: - dependencies: - citty: 0.1.6 - consola: 3.2.3 - execa: 8.0.1 - pathe: 1.1.2 - pkg-types: 1.1.2 - ufo: 1.5.3 + oauth-sign@0.9.0: {} - ob1@0.80.9: {} + ob1@0.80.6: {} obj-multiplex@1.0.0: dependencies: @@ -23636,12 +26108,7 @@ snapshots: object-hash@3.0.0: {} - object-inspect@1.13.2: {} - - object-is@1.1.6: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 + object-inspect@1.13.1: {} object-keys@1.1.1: {} @@ -23652,30 +26119,34 @@ snapshots: has-symbols: 1.0.3 object-keys: 1.1.1 - object.fromentries@2.0.8: + object.fromentries@2.0.7: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.3 - es-object-atoms: 1.0.0 + es-abstract: 1.22.3 - object.groupby@1.0.3: + object.groupby@1.0.1: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.3 + es-abstract: 1.22.3 + get-intrinsic: 1.2.4 - object.values@1.2.0: + object.values@1.1.7: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-object-atoms: 1.0.0 + es-abstract: 1.22.3 + + oboe@2.1.5: + dependencies: + http-https: 1.0.0 - ofetch@1.3.4: + ofetch@1.3.3: dependencies: destr: 2.0.3 - node-fetch-native: 1.6.4 - ufo: 1.5.3 + node-fetch-native: 1.6.2 + ufo: 1.4.0 ohash@1.1.3: {} @@ -23703,6 +26174,14 @@ snapshots: dependencies: mimic-fn: 4.0.0 + onetime@7.0.0: + dependencies: + mimic-function: 5.0.1 + + oniguruma-to-js@0.4.3: + dependencies: + regex: 4.3.2 + open@6.4.0: dependencies: is-wsl: 1.1.0 @@ -23718,20 +26197,27 @@ snapshots: is-docker: 2.2.1 is-wsl: 2.2.0 + open@9.1.0: + dependencies: + default-browser: 4.0.0 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + is-wsl: 2.2.0 + openapi-types@12.1.3: {} optimism@https://codeload.github.com/ethereum-optimism/optimism/tar.gz/ab3a54febb36398539fd3b849c222b7e70169dc8: dependencies: - '@changesets/cli': 2.27.7 + '@changesets/cli': 2.27.8 - optionator@0.9.4: + optionator@0.9.3: dependencies: + '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 - word-wrap: 1.2.5 ora@5.4.1: dependencies: @@ -23757,10 +26243,10 @@ snapshots: strip-ansi: 7.1.0 wcwidth: 1.0.1 - ora@8.0.1: + ora@8.1.0: dependencies: chalk: 5.3.0 - cli-cursor: 4.0.0 + cli-cursor: 5.0.0 cli-spinners: 2.9.2 is-interactive: 2.0.0 is-unicode-supported: 2.0.0 @@ -23773,6 +26259,8 @@ snapshots: outdent@0.5.0: {} + p-cancelable@2.1.1: {} + p-cancelable@3.0.0: {} p-defer@3.0.0: {} @@ -23798,11 +26286,11 @@ snapshots: p-limit@4.0.0: dependencies: - yocto-queue: 1.1.1 + yocto-queue: 1.0.0 p-limit@5.0.0: dependencies: - yocto-queue: 1.1.1 + yocto-queue: 1.0.0 p-limit@6.1.0: dependencies: @@ -23846,7 +26334,9 @@ snapshots: got: 12.6.1 registry-auth-token: 5.0.2 registry-url: 6.0.1 - semver: 7.6.3 + semver: 7.6.2 + + package-manager-detector@0.2.0: {} pagefind@1.1.0: optionalDependencies: @@ -23856,7 +26346,12 @@ snapshots: '@pagefind/linux-x64': 1.1.0 '@pagefind/windows-x64': 1.1.0 - pako@0.2.9: {} + pako@1.0.11: {} + + param-case@3.0.4: + dependencies: + dot-case: 3.0.4 + tslib: 2.6.2 parent-module@1.0.1: dependencies: @@ -23875,6 +26370,8 @@ snapshots: is-decimal: 2.0.1 is-hexadecimal: 2.0.1 + parse-headers@2.0.5: {} + parse-json@4.0.0: dependencies: error-ex: 1.3.2 @@ -23882,7 +26379,7 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.23.5 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -23894,7 +26391,7 @@ snapshots: nlcst-to-string: 4.0.0 unist-util-modify-children: 4.0.0 unist-util-visit-children: 3.0.0 - vfile: 6.0.2 + vfile: 6.0.3 parse5@7.1.2: dependencies: @@ -23905,10 +26402,15 @@ snapshots: pascal-case@3.1.2: dependencies: no-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.6.2 path-browserify@1.0.1: {} + path-case@3.0.4: + dependencies: + dot-case: 3.0.4 + tslib: 2.6.2 + path-exists@3.0.0: {} path-exists@4.0.0: {} @@ -23923,23 +26425,28 @@ snapshots: path-parse@1.0.7: {} - path-scurry@1.11.1: + path-scurry@1.10.1: + dependencies: + lru-cache: 10.2.0 + minipass: 7.0.4 + + path-scurry@2.0.0: dependencies: - lru-cache: 10.3.0 + lru-cache: 11.0.1 minipass: 7.1.2 - path-to-regexp@0.1.7: {} + path-to-regexp@0.1.10: {} path-to-regexp@6.2.2: {} path-type@4.0.0: {} - path-type@5.0.0: {} - pathe@1.1.2: {} pathval@1.1.1: {} + pathval@2.0.0: {} + pbkdf2@3.1.2: dependencies: create-hash: 1.2.0 @@ -23948,11 +26455,7 @@ snapshots: safe-buffer: 5.2.1 sha.js: 2.4.11 - peek-stream@1.1.3: - dependencies: - buffer-from: 1.1.2 - duplexify: 3.7.1 - through2: 2.0.5 + performance-now@2.1.0: {} periscopic@3.1.0: dependencies: @@ -23960,7 +26463,9 @@ snapshots: estree-walker: 3.0.3 is-reference: 3.0.2 - picocolors@1.0.1: {} + picocolors@1.0.0: {} + + picocolors@1.1.0: {} picomatch@2.3.1: {} @@ -23976,7 +26481,7 @@ snapshots: pino-abstract-transport@0.5.0: dependencies: - duplexify: 4.1.3 + duplexify: 4.1.2 split2: 4.2.0 pino-std-serializers@4.0.0: {} @@ -23984,7 +26489,7 @@ snapshots: pino@7.11.0: dependencies: atomic-sleep: 1.0.0 - fast-redact: 3.5.0 + fast-redact: 3.3.0 on-exit-leak-free: 0.2.0 pino-abstract-transport: 0.5.0 pino-std-serializers: 4.0.0 @@ -24005,21 +26510,17 @@ snapshots: dependencies: find-up: 4.1.0 - pkg-dir@5.0.0: - dependencies: - find-up: 5.0.0 - - pkg-types@1.1.2: + pkg-types@1.0.3: dependencies: - confbox: 0.1.7 - mlly: 1.7.1 + jsonc-parser: 3.2.0 + mlly: 1.5.0 pathe: 1.1.2 - playwright-core@1.45.0: {} + playwright-core@1.43.1: {} - playwright@1.45.0: + playwright@1.43.1: dependencies: - playwright-core: 1.45.0 + playwright-core: 1.43.1 optionalDependencies: fsevents: 2.3.2 @@ -24029,100 +26530,125 @@ snapshots: polished@4.3.1: dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.9 - pony-cause@2.1.11: {} + pony-cause@2.1.10: {} - possible-typed-array-names@1.0.0: {} - - postcss-import@15.1.0(postcss@8.4.39): + postcss-import@15.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.39 + postcss: 8.4.38 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - postcss-import@16.1.0(postcss@8.4.39): + postcss-import@16.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.39 + postcss: 8.4.38 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - postcss-js@4.0.1(postcss@8.4.39): + postcss-js@4.0.1(postcss@8.4.38): dependencies: camelcase-css: 2.0.1 - postcss: 8.4.39 + postcss: 8.4.38 - postcss-js@4.0.1(postcss@8.4.41): + postcss-js@4.0.1(postcss@8.4.47): dependencies: camelcase-css: 2.0.1 - postcss: 8.4.41 + postcss: 8.4.47 + + postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)): + dependencies: + lilconfig: 2.1.0 + yaml: 1.10.2 + optionalDependencies: + postcss: 8.4.38 + ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.3) - postcss-load-config@3.1.4(postcss@8.4.39): + postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)): dependencies: lilconfig: 2.1.0 - postcss: 8.4.39 yaml: 1.10.2 + optionalDependencies: + postcss: 8.4.38 + ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.5) + + postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)): + dependencies: + lilconfig: 3.1.1 + yaml: 2.3.4 + optionalDependencies: + postcss: 8.4.38 + ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.3) + + postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)): + dependencies: + lilconfig: 3.1.1 + yaml: 2.3.4 + optionalDependencies: + postcss: 8.4.38 + ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.5) - postcss-load-config@4.0.2(postcss@8.4.39): + postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)): dependencies: - lilconfig: 3.1.2 - postcss: 8.4.39 - yaml: 2.4.5 + lilconfig: 3.1.1 + yaml: 2.3.4 + optionalDependencies: + postcss: 8.4.47 + ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.5) + optional: true - postcss-nested@5.0.6(postcss@8.4.39): + postcss-nested@5.0.6(postcss@8.4.38): dependencies: - postcss: 8.4.39 - postcss-selector-parser: 6.1.0 + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 - postcss-nested@6.0.1(postcss@8.4.39): + postcss-nested@6.0.1(postcss@8.4.38): dependencies: - postcss: 8.4.39 - postcss-selector-parser: 6.1.0 + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 - postcss-nesting@12.1.5(postcss@8.4.39): + postcss-nesting@12.1.0(postcss@8.4.38): dependencies: - '@csstools/selector-resolve-nested': 1.1.0(postcss-selector-parser@6.1.0) - '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.0) - postcss: 8.4.39 - postcss-selector-parser: 6.1.0 + '@csstools/selector-resolve-nested': 1.1.0(postcss-selector-parser@6.0.15) + '@csstools/selector-specificity': 3.0.2(postcss-selector-parser@6.0.15) + postcss: 8.4.38 + postcss-selector-parser: 6.0.15 - postcss-safe-parser@6.0.0(postcss@8.4.39): + postcss-safe-parser@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.39 + postcss: 8.4.38 - postcss-scss@4.0.9(postcss@8.4.39): + postcss-scss@4.0.9(postcss@8.4.38): dependencies: - postcss: 8.4.39 + postcss: 8.4.38 - postcss-selector-parser@6.1.0: + postcss-selector-parser@6.0.15: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-value-parser@4.2.0: {} - - postcss@8.4.39: + postcss-selector-parser@6.0.16: dependencies: - nanoid: 3.3.7 - picocolors: 1.0.1 - source-map-js: 1.2.0 + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss-value-parser@4.2.0: {} - postcss@8.4.41: + postcss@8.4.38: dependencies: nanoid: 3.3.7 - picocolors: 1.0.1 + picocolors: 1.0.0 source-map-js: 1.2.0 - preact@10.22.1: {} - - preferred-pm@3.1.3: - dependencies: - find-up: 5.0.0 - find-yarn-workspace-root2: 1.2.16 - path-exists: 4.0.0 - which-pm: 2.0.0 + postcss@8.4.47: + dependencies: + nanoid: 3.3.7 + picocolors: 1.1.0 + source-map-js: 1.2.1 + + preact@10.19.5: {} preferred-pm@4.0.0: dependencies: @@ -24136,14 +26662,22 @@ snapshots: dependencies: fast-diff: 1.3.0 - prettier-plugin-svelte@3.2.5(prettier@3.3.2)(svelte@4.2.18): + prettier-plugin-svelte@3.2.2(prettier@3.2.5)(svelte@4.2.13): + dependencies: + prettier: 3.2.5 + svelte: 4.2.13 + + prettier-plugin-svelte@3.2.3(prettier@3.2.5)(svelte@4.2.17): dependencies: - prettier: 3.3.2 - svelte: 4.2.18 + prettier: 3.2.5 + svelte: 4.2.17 + + prettier@2.8.7: + optional: true prettier@2.8.8: {} - prettier@3.3.2: {} + prettier@3.2.5: {} pretty-format@26.6.2: dependencies: @@ -24162,12 +26696,12 @@ snapshots: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 - react-is: 18.3.1 - - pretty-hrtime@1.0.3: {} + react-is: 18.2.0 prismjs@1.29.0: {} + process-nextick-args@1.0.7: {} + process-nextick-args@2.0.1: {} process-warning@1.0.0: {} @@ -24182,16 +26716,30 @@ snapshots: dependencies: asap: 2.0.6 + prompt@1.3.0: + dependencies: + '@colors/colors': 1.5.0 + async: 3.2.3 + read: 1.0.7 + revalidator: 0.1.8 + winston: 2.4.7 + prompts@2.4.2: dependencies: kleur: 3.0.3 sisteransi: 1.0.5 + prop-types@15.8.1: + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + property-information@6.5.0: {} proto-list@1.2.4: {} - protobufjs@7.3.2: + protobufjs@7.2.6: dependencies: '@protobufjs/aspromise': 1.1.2 '@protobufjs/base64': 1.1.2 @@ -24203,7 +26751,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 20.14.9 + '@types/node': 20.12.7 long: 5.2.3 proxy-addr@2.0.7: @@ -24222,24 +26770,15 @@ snapshots: publint@0.1.16: dependencies: npm-packlist: 5.1.3 - picocolors: 1.0.1 + picocolors: 1.0.0 sade: 1.8.1 - pump@2.0.1: - dependencies: - end-of-stream: 1.4.4 - once: 1.4.0 - pump@3.0.0: dependencies: end-of-stream: 1.4.4 once: 1.4.0 - pumpify@1.5.1: - dependencies: - duplexify: 3.7.1 - inherits: 2.0.4 - pump: 2.0.1 + punycode@2.1.0: {} punycode@2.3.1: {} @@ -24258,13 +26797,17 @@ snapshots: pngjs: 5.0.0 yargs: 15.4.1 - qs@6.11.0: + qs@6.13.0: dependencies: side-channel: 1.0.6 - qs@6.12.2: + qs@6.5.3: {} + + query-string@5.1.1: dependencies: - side-channel: 1.0.6 + decode-uri-component: 0.2.2 + object-assign: 4.1.1 + strict-uri-encode: 1.1.0 query-string@7.1.3: dependencies: @@ -24273,8 +26816,6 @@ snapshots: split-on-first: 1.1.0 strict-uri-encode: 2.0.0 - querystring@0.2.1: {} - querystringify@2.2.0: {} queue-microtask@1.2.3: {} @@ -24287,9 +26828,7 @@ snapshots: quick-lru@5.1.1: {} - radix3@1.1.2: {} - - ramda@0.29.0: {} + radix3@1.1.0: {} randombytes@2.1.0: dependencies: @@ -24311,92 +26850,97 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-colorful@5.6.1(react-dom@18.3.1)(react@18.3.1): + react-colorful@5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - react-confetti@6.1.0(react@18.3.1): + react-confetti@6.1.0(react@18.2.0): dependencies: - react: 18.3.1 + react: 18.2.0 tween-functions: 1.2.0 - react-devtools-core@5.3.0: + react-devtools-core@4.28.5(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: shell-quote: 1.8.1 - ws: 7.5.10 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - react-dom@18.3.1(react@18.3.1): + react-dom@18.2.0(react@18.2.0): dependencies: loose-envify: 1.4.0 - react: 18.3.1 - scheduler: 0.23.2 + react: 18.2.0 + scheduler: 0.23.0 - react-i18next@13.5.0(i18next@22.5.1)(react-native@0.74.3)(react@18.3.1): + react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0): dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.9 html-parse-stringify: 3.0.1 i18next: 22.5.1 - react: 18.3.1 - react-native: 0.74.3(@babel/core@7.25.2)(@babel/preset-env@7.24.7)(react@18.3.1) + react: 18.2.0 + optionalDependencies: + react-dom: 18.2.0(react@18.2.0) + react-native: 0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + + react-is@16.13.1: {} react-is@17.0.2: {} - react-is@18.3.1: {} + react-is@18.2.0: {} react-native-fetch-api@3.0.0: dependencies: p-defer: 3.0.0 - react-native-webview@11.26.1(react-native@0.74.3)(react@18.3.1): + react-native-webview@11.26.1(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0): dependencies: escape-string-regexp: 2.0.0 invariant: 2.2.4 - react: 18.3.1 - react-native: 0.74.3(@babel/core@7.25.2)(@babel/preset-env@7.24.7)(react@18.3.1) + react: 18.2.0 + react-native: 0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) - react-native@0.74.3(@babel/core@7.25.2)(@babel/preset-env@7.24.7)(react@18.3.1): + react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10): dependencies: '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 13.6.9 - '@react-native-community/cli-platform-android': 13.6.9 - '@react-native-community/cli-platform-ios': 13.6.9 - '@react-native/assets-registry': 0.74.85 - '@react-native/codegen': 0.74.85(@babel/preset-env@7.24.7) - '@react-native/community-cli-plugin': 0.74.85(@babel/core@7.25.2)(@babel/preset-env@7.24.7) - '@react-native/gradle-plugin': 0.74.85 - '@react-native/js-polyfills': 0.74.85 - '@react-native/normalize-colors': 0.74.85 - '@react-native/virtualized-lists': 0.74.85(react-native@0.74.3)(react@18.3.1) + '@react-native-community/cli': 12.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native-community/cli-platform-android': 12.3.2(encoding@0.1.13) + '@react-native-community/cli-platform-ios': 12.3.2(encoding@0.1.13) + '@react-native/assets-registry': 0.73.1 + '@react-native/codegen': 0.73.3(@babel/preset-env@7.23.9(@babel/core@7.25.2)) + '@react-native/community-cli-plugin': 0.73.16(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native/gradle-plugin': 0.73.4 + '@react-native/js-polyfills': 0.73.1 + '@react-native/normalize-colors': 0.73.2 + '@react-native/virtualized-lists': 0.73.4(react-native@0.73.4(@babel/core@7.25.2)(@babel/preset-env@7.23.9(@babel/core@7.25.2))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 base64-js: 1.5.1 chalk: 4.1.2 + deprecated-react-native-prop-types: 5.0.0 event-target-shim: 5.0.1 flow-enums-runtime: 0.0.6 invariant: 2.2.4 jest-environment-node: 29.7.0 jsc-android: 250231.0.0 memoize-one: 5.2.1 - metro-runtime: 0.80.9 - metro-source-map: 0.80.9 + metro-runtime: 0.80.6 + metro-source-map: 0.80.6 mkdirp: 0.5.6 nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 - react: 18.3.1 - react-devtools-core: 5.3.0 - react-refresh: 0.14.2 - react-shallow-renderer: 16.15.0(react@18.3.1) + react: 18.2.0 + react-devtools-core: 4.28.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) + react-refresh: 0.14.0 + react-shallow-renderer: 16.15.0(react@18.2.0) regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 stacktrace-parser: 0.1.10 whatwg-fetch: 3.6.20 - ws: 6.2.3 + ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) yargs: 17.7.2 transitivePeerDependencies: - '@babel/core' @@ -24406,40 +26950,15 @@ snapshots: - supports-color - utf-8-validate - react-refresh@0.14.2: {} - - react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@18.3.1): - dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) - tslib: 2.6.3 - - react-remove-scroll@2.5.7(@types/react@18.3.3)(react@18.3.1): - dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@18.3.1) - react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) - tslib: 2.6.3 - use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.3.1) - use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1) + react-refresh@0.14.0: {} - react-shallow-renderer@16.15.0(react@18.3.1): + react-shallow-renderer@16.15.0(react@18.2.0): dependencies: object-assign: 4.1.1 - react: 18.3.1 - react-is: 18.3.1 - - react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.3.1): - dependencies: - '@types/react': 18.3.3 - get-nonce: 1.0.1 - invariant: 2.2.4 - react: 18.3.1 - tslib: 2.6.3 + react: 18.2.0 + react-is: 18.2.0 - react@18.3.1: + react@18.2.0: dependencies: loose-envify: 1.4.0 @@ -24447,19 +26966,6 @@ snapshots: dependencies: pify: 2.3.0 - read-pkg-up@7.0.1: - dependencies: - find-up: 4.1.0 - read-pkg: 5.2.0 - type-fest: 0.8.1 - - read-pkg@5.2.0: - dependencies: - '@types/normalize-package-data': 2.4.4 - normalize-package-data: 2.5.0 - parse-json: 5.2.0 - type-fest: 0.6.0 - read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 @@ -24467,6 +26973,20 @@ snapshots: pify: 4.0.1 strip-bom: 3.0.0 + read@1.0.7: + dependencies: + mute-stream: 0.0.8 + + readable-stream@2.3.3: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 1.0.7 + safe-buffer: 5.1.2 + string_decoder: 1.0.3 + util-deprecate: 1.0.2 + readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 @@ -24487,6 +27007,8 @@ snapshots: dependencies: picomatch: 2.3.1 + readdirp@4.0.1: {} + readline@1.3.0: {} real-require@0.1.0: {} @@ -24496,7 +27018,7 @@ snapshots: ast-types: 0.15.2 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.6.3 + tslib: 2.6.2 recast@0.23.9: dependencies: @@ -24504,7 +27026,7 @@ snapshots: esprima: 4.0.1 source-map: 0.6.1 tiny-invariant: 1.3.3 - tslib: 2.6.3 + tslib: 2.6.2 receptacle@1.3.2: dependencies: @@ -24515,6 +27037,12 @@ snapshots: indent-string: 4.0.0 strip-indent: 3.0.0 + redis-errors@1.2.0: {} + + redis-parser@3.0.0: + dependencies: + redis-errors: 1.2.0 + regenerate-unicode-properties@10.1.1: dependencies: regenerate: 1.4.2 @@ -24527,14 +27055,15 @@ snapshots: regenerator-transform@0.15.2: dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.9 + + regex@4.3.2: {} - regexp.prototype.flags@1.5.2: + regexp.prototype.flags@1.5.1: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-errors: 1.3.0 - set-function-name: 2.0.2 + set-function-name: 2.0.1 regexpp@3.2.0: {} @@ -24600,8 +27129,8 @@ snapshots: rehype-raw@7.0.0: dependencies: '@types/hast': 3.0.4 - hast-util-raw: 9.0.4 - vfile: 6.0.2 + hast-util-raw: 9.0.3 + vfile: 6.0.3 rehype-slug@6.0.0: dependencies: @@ -24654,7 +27183,7 @@ snapshots: remark-parse@11.0.0: dependencies: '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.0 micromark-util-types: 2.0.0 unified: 11.0.5 transitivePeerDependencies: @@ -24664,14 +27193,14 @@ snapshots: dependencies: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 - mdast-util-to-hast: 13.2.0 + mdast-util-to-hast: 13.1.0 unified: 11.0.5 - vfile: 6.0.2 + vfile: 6.0.3 remark-smartypants@3.0.2: dependencies: retext: 9.0.0 - retext-smartypants: 6.1.0 + retext-smartypants: 6.1.1 unified: 11.0.5 unist-util-visit: 5.0.0 @@ -24681,8 +27210,33 @@ snapshots: mdast-util-to-markdown: 2.1.0 unified: 11.0.5 + request-light@0.5.8: {} + request-light@0.7.0: {} + request@2.88.2: + dependencies: + aws-sign2: 0.7.0 + aws4: 1.13.2 + caseless: 0.12.0 + combined-stream: 1.0.8 + extend: 3.0.2 + forever-agent: 0.6.1 + form-data: 2.3.3 + har-validator: 5.1.5 + http-signature: 1.2.0 + is-typedarray: 1.0.0 + isstream: 0.1.2 + json-stringify-safe: 5.0.1 + mime-types: 2.1.35 + oauth-sign: 0.9.0 + performance-now: 2.1.0 + qs: 6.5.3 + safe-buffer: 5.2.1 + tough-cookie: 2.5.0 + tunnel-agent: 0.6.0 + uuid: 3.4.0 + require-directory@2.1.1: {} require-from-string@2.0.2: {} @@ -24705,10 +27259,14 @@ snapshots: resolve@1.22.8: dependencies: - is-core-module: 2.14.0 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + responselike@2.0.1: + dependencies: + lowercase-keys: 2.0.0 + responselike@3.0.0: dependencies: lowercase-keys: 3.0.0 @@ -24723,13 +27281,18 @@ snapshots: onetime: 5.1.2 signal-exit: 3.0.7 + restore-cursor@5.1.0: + dependencies: + onetime: 7.0.0 + signal-exit: 4.1.0 + retext-latin@4.0.0: dependencies: '@types/nlcst': 2.0.3 parse-latin: 7.0.0 unified: 11.0.5 - retext-smartypants@6.1.0: + retext-smartypants@6.1.1: dependencies: '@types/nlcst': 2.0.3 nlcst-to-string: 4.0.0 @@ -24750,8 +27313,12 @@ snapshots: retimer@3.0.0: {} + retry@0.13.1: {} + reusify@1.0.4: {} + revalidator@0.1.8: {} + rimraf@2.6.3: dependencies: glob: 7.2.3 @@ -24764,6 +27331,10 @@ snapshots: dependencies: glob: 7.2.3 + rimraf@5.0.10: + dependencies: + glob: 10.3.10 + ripemd160@2.0.2: dependencies: hash-base: 3.1.0 @@ -24775,42 +27346,87 @@ snapshots: dependencies: bn.js: 5.2.1 - rollup-plugin-visualizer@5.12.0: + rollup-plugin-visualizer@5.12.0(rollup@4.21.3): dependencies: open: 8.4.2 picomatch: 2.3.1 source-map: 0.7.4 yargs: 17.7.2 + optionalDependencies: + rollup: 4.21.3 rollup@3.29.4: optionalDependencies: fsevents: 2.3.3 - rollup@4.18.0: + rollup@4.12.0: + dependencies: + '@types/estree': 1.0.5 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.12.0 + '@rollup/rollup-android-arm64': 4.12.0 + '@rollup/rollup-darwin-arm64': 4.12.0 + '@rollup/rollup-darwin-x64': 4.12.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.12.0 + '@rollup/rollup-linux-arm64-gnu': 4.12.0 + '@rollup/rollup-linux-arm64-musl': 4.12.0 + '@rollup/rollup-linux-riscv64-gnu': 4.12.0 + '@rollup/rollup-linux-x64-gnu': 4.12.0 + '@rollup/rollup-linux-x64-musl': 4.12.0 + '@rollup/rollup-win32-arm64-msvc': 4.12.0 + '@rollup/rollup-win32-ia32-msvc': 4.12.0 + '@rollup/rollup-win32-x64-msvc': 4.12.0 + fsevents: 2.3.3 + + rollup@4.17.2: dependencies: '@types/estree': 1.0.5 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.18.0 - '@rollup/rollup-android-arm64': 4.18.0 - '@rollup/rollup-darwin-arm64': 4.18.0 - '@rollup/rollup-darwin-x64': 4.18.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.18.0 - '@rollup/rollup-linux-arm-musleabihf': 4.18.0 - '@rollup/rollup-linux-arm64-gnu': 4.18.0 - '@rollup/rollup-linux-arm64-musl': 4.18.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.18.0 - '@rollup/rollup-linux-riscv64-gnu': 4.18.0 - '@rollup/rollup-linux-s390x-gnu': 4.18.0 - '@rollup/rollup-linux-x64-gnu': 4.18.0 - '@rollup/rollup-linux-x64-musl': 4.18.0 - '@rollup/rollup-win32-arm64-msvc': 4.18.0 - '@rollup/rollup-win32-ia32-msvc': 4.18.0 - '@rollup/rollup-win32-x64-msvc': 4.18.0 + '@rollup/rollup-android-arm-eabi': 4.17.2 + '@rollup/rollup-android-arm64': 4.17.2 + '@rollup/rollup-darwin-arm64': 4.17.2 + '@rollup/rollup-darwin-x64': 4.17.2 + '@rollup/rollup-linux-arm-gnueabihf': 4.17.2 + '@rollup/rollup-linux-arm-musleabihf': 4.17.2 + '@rollup/rollup-linux-arm64-gnu': 4.17.2 + '@rollup/rollup-linux-arm64-musl': 4.17.2 + '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2 + '@rollup/rollup-linux-riscv64-gnu': 4.17.2 + '@rollup/rollup-linux-s390x-gnu': 4.17.2 + '@rollup/rollup-linux-x64-gnu': 4.17.2 + '@rollup/rollup-linux-x64-musl': 4.17.2 + '@rollup/rollup-win32-arm64-msvc': 4.17.2 + '@rollup/rollup-win32-ia32-msvc': 4.17.2 + '@rollup/rollup-win32-x64-msvc': 4.17.2 + fsevents: 2.3.3 + + rollup@4.21.3: + dependencies: + '@types/estree': 1.0.5 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.21.3 + '@rollup/rollup-android-arm64': 4.21.3 + '@rollup/rollup-darwin-arm64': 4.21.3 + '@rollup/rollup-darwin-x64': 4.21.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.21.3 + '@rollup/rollup-linux-arm-musleabihf': 4.21.3 + '@rollup/rollup-linux-arm64-gnu': 4.21.3 + '@rollup/rollup-linux-arm64-musl': 4.21.3 + '@rollup/rollup-linux-powerpc64le-gnu': 4.21.3 + '@rollup/rollup-linux-riscv64-gnu': 4.21.3 + '@rollup/rollup-linux-s390x-gnu': 4.21.3 + '@rollup/rollup-linux-x64-gnu': 4.21.3 + '@rollup/rollup-linux-x64-musl': 4.21.3 + '@rollup/rollup-win32-arm64-msvc': 4.21.3 + '@rollup/rollup-win32-ia32-msvc': 4.21.3 + '@rollup/rollup-win32-x64-msvc': 4.21.3 fsevents: 2.3.3 rrweb-cssom@0.6.0: {} - rrweb-cssom@0.7.1: {} + run-applescript@5.0.0: + dependencies: + execa: 5.1.1 run-parallel@1.2.0: dependencies: @@ -24820,7 +27436,7 @@ snapshots: dependencies: mri: 1.2.0 - safe-array-concat@1.1.2: + safe-array-concat@1.0.1: dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 @@ -24831,10 +27447,10 @@ snapshots: safe-buffer@5.2.1: {} - safe-regex-test@1.0.3: + safe-regex-test@1.0.0: dependencies: call-bind: 1.0.7 - es-errors: 1.3.0 + get-intrinsic: 1.2.4 is-regex: 1.1.4 safe-stable-stringify@2.4.3: {} @@ -24848,13 +27464,13 @@ snapshots: mkdirp: 0.5.6 rimraf: 2.7.1 - sax@1.4.1: {} + sax@1.3.0: {} saxes@6.0.0: dependencies: xmlchars: 2.2.0 - scheduler@0.23.2: + scheduler@0.23.0: dependencies: loose-envify: 1.4.0 @@ -24866,35 +27482,34 @@ snapshots: secp256k1@4.0.3: dependencies: - elliptic: 6.5.5 + elliptic: 6.5.7 node-addon-api: 2.0.2 - node-gyp-build: 4.8.1 + node-gyp-build: 4.8.0 secp256k1@5.0.0: dependencies: - elliptic: 6.5.5 + elliptic: 6.5.4 node-addon-api: 5.1.0 - node-gyp-build: 4.8.1 + node-gyp-build: 4.8.0 section-matter@1.0.0: dependencies: extend-shallow: 2.0.1 kind-of: 6.0.3 - selfsigned@2.4.1: - dependencies: - '@types/node-forge': 1.3.11 - node-forge: 1.3.1 - semver@5.7.2: {} semver@6.3.1: {} + semver@7.6.0: + dependencies: + lru-cache: 6.0.0 + semver@7.6.2: {} semver@7.6.3: {} - send@0.18.0: + send@0.19.0: dependencies: debug: 2.6.9 depd: 2.0.0 @@ -24912,14 +27527,39 @@ snapshots: transitivePeerDependencies: - supports-color + sentence-case@3.0.4: + dependencies: + no-case: 3.0.4 + tslib: 2.6.2 + upper-case-first: 2.0.2 + serialize-error@2.1.0: {} - serve-static@1.15.0: + serve-static@1.16.2: dependencies: - encodeurl: 1.0.2 + encodeurl: 2.0.0 escape-html: 1.0.3 parseurl: 1.3.3 - send: 0.18.0 + send: 0.19.0 + transitivePeerDependencies: + - supports-color + + serverless@4.4.3: + dependencies: + axios: 1.7.7 + axios-proxy-builder: 0.1.2 + rimraf: 5.0.10 + xml2js: 0.6.2 + transitivePeerDependencies: + - debug + + servify@0.1.12: + dependencies: + body-parser: 1.20.3 + cors: 2.8.5 + express: 4.21.0 + request: 2.88.2 + xhr: 2.6.0 transitivePeerDependencies: - supports-color @@ -24927,7 +27567,7 @@ snapshots: set-cookie-parser@2.6.0: {} - set-function-length@1.2.2: + set-function-length@1.2.1: dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -24936,10 +27576,9 @@ snapshots: gopd: 1.0.1 has-property-descriptors: 1.0.2 - set-function-name@2.0.2: + set-function-name@2.0.1: dependencies: define-data-property: 1.1.4 - es-errors: 1.3.0 functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 @@ -24956,14 +27595,14 @@ snapshots: dependencies: kind-of: 6.0.3 - sharp@0.33.4: + sharp@0.33.3: dependencies: color: 4.2.3 detect-libc: 2.0.3 - semver: 7.6.2 + semver: 7.6.0 optionalDependencies: - '@img/sharp-darwin-arm64': 0.33.4 - '@img/sharp-darwin-x64': 0.33.4 + '@img/sharp-darwin-arm64': 0.33.3 + '@img/sharp-darwin-x64': 0.33.3 '@img/sharp-libvips-darwin-arm64': 1.0.2 '@img/sharp-libvips-darwin-x64': 1.0.2 '@img/sharp-libvips-linux-arm': 1.0.2 @@ -24972,15 +27611,15 @@ snapshots: '@img/sharp-libvips-linux-x64': 1.0.2 '@img/sharp-libvips-linuxmusl-arm64': 1.0.2 '@img/sharp-libvips-linuxmusl-x64': 1.0.2 - '@img/sharp-linux-arm': 0.33.4 - '@img/sharp-linux-arm64': 0.33.4 - '@img/sharp-linux-s390x': 0.33.4 - '@img/sharp-linux-x64': 0.33.4 - '@img/sharp-linuxmusl-arm64': 0.33.4 - '@img/sharp-linuxmusl-x64': 0.33.4 - '@img/sharp-wasm32': 0.33.4 - '@img/sharp-win32-ia32': 0.33.4 - '@img/sharp-win32-x64': 0.33.4 + '@img/sharp-linux-arm': 0.33.3 + '@img/sharp-linux-arm64': 0.33.3 + '@img/sharp-linux-s390x': 0.33.3 + '@img/sharp-linux-x64': 0.33.3 + '@img/sharp-linuxmusl-arm64': 0.33.3 + '@img/sharp-linuxmusl-x64': 0.33.3 + '@img/sharp-wasm32': 0.33.3 + '@img/sharp-win32-ia32': 0.33.3 + '@img/sharp-win32-x64': 0.33.3 shebang-command@1.2.0: dependencies: @@ -24996,21 +27635,31 @@ snapshots: shell-quote@1.8.1: {} - shiki@1.10.0: + shiki@1.17.6: dependencies: - '@shikijs/core': 1.10.0 + '@shikijs/core': 1.17.6 + '@shikijs/engine-javascript': 1.17.6 + '@shikijs/engine-oniguruma': 1.17.6 + '@shikijs/types': 1.17.6 + '@shikijs/vscode-textmate': 9.2.2 + '@types/hast': 3.0.4 - shiki@1.12.1: + shiki@1.5.2: dependencies: - '@shikijs/core': 1.12.1 - '@types/hast': 3.0.4 + '@shikijs/core': 1.5.2 + + side-channel@1.0.4: + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + object-inspect: 1.13.1 side-channel@1.0.6: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 - object-inspect: 1.13.2 + object-inspect: 1.13.1 siginfo@2.0.0: {} @@ -25018,13 +27667,21 @@ snapshots: signal-exit@4.1.0: {} + simple-concat@1.0.1: {} + + simple-get@2.8.2: + dependencies: + decompress-response: 3.3.0 + once: 1.4.0 + simple-concat: 1.0.1 + simple-swizzle@0.2.2: dependencies: is-arrayish: 0.3.2 sirv@2.0.4: dependencies: - '@polka/url': 1.0.0-next.25 + '@polka/url': 1.0.0-next.24 mrmime: 2.0.0 totalist: 3.0.1 @@ -25035,11 +27692,11 @@ snapshots: '@types/node': 17.0.45 '@types/sax': 1.2.7 arg: 5.0.2 - sax: 1.4.1 + sax: 1.3.0 slash@3.0.0: {} - slash@5.1.0: {} + slash@4.0.0: {} slice-ansi@2.1.0: dependencies: @@ -25053,11 +27710,27 @@ snapshots: astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - socket.io-client@4.7.5: + snake-case@3.0.4: + dependencies: + dot-case: 3.0.4 + tslib: 2.6.2 + + socket.io-client@4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@socket.io/component-emitter': 3.1.0 + debug: 4.3.4 + engine.io-client: 6.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + socket.io-parser: 4.2.4 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + socket.io-client@4.7.4(bufferutil@4.0.8)(utf-8-validate@6.0.3): dependencies: - '@socket.io/component-emitter': 3.1.2 - debug: 4.3.5 - engine.io-client: 6.5.4 + '@socket.io/component-emitter': 3.1.0 + debug: 4.3.4 + engine.io-client: 6.5.3(bufferutil@4.0.8)(utf-8-validate@6.0.3) socket.io-parser: 4.2.4 transitivePeerDependencies: - bufferutil @@ -25066,8 +27739,8 @@ snapshots: socket.io-parser@4.2.4: dependencies: - '@socket.io/component-emitter': 3.1.2 - debug: 4.3.5 + '@socket.io/component-emitter': 3.1.0 + debug: 4.3.4 transitivePeerDependencies: - supports-color @@ -25079,7 +27752,7 @@ snapshots: dependencies: command-exists: 1.2.9 commander: 8.3.0 - follow-redirects: 1.15.6(debug@4.3.5) + follow-redirects: 1.15.5(debug@4.3.4) js-sha3: 0.8.0 memorystream: 0.3.1 semver: 5.7.2 @@ -25087,15 +27760,15 @@ snapshots: transitivePeerDependencies: - debug - solhint@4.5.4(typescript@5.5.3): + solhint@4.5.4(typescript@5.4.3): dependencies: '@solidity-parser/parser': 0.18.0 ajv: 6.12.6 - antlr4: 4.13.1-patch-1 + antlr4: 4.13.1 ast-parents: 0.0.1 chalk: 4.1.2 commander: 10.0.1 - cosmiconfig: 8.3.6(typescript@5.5.3) + cosmiconfig: 8.3.6(typescript@5.4.3) fast-diff: 1.3.0 glob: 8.1.0 ignore: 5.3.1 @@ -25103,24 +27776,24 @@ snapshots: latest-version: 7.0.0 lodash: 4.17.21 pluralize: 8.0.0 - semver: 7.6.2 + semver: 7.6.0 strip-ansi: 6.0.1 - table: 6.8.2 + table: 6.8.1 text-table: 0.2.0 optionalDependencies: prettier: 2.8.8 transitivePeerDependencies: - typescript - solhint@5.0.3(typescript@5.5.3): + solhint@4.5.4(typescript@5.4.5): dependencies: '@solidity-parser/parser': 0.18.0 ajv: 6.12.6 - antlr4: 4.13.1-patch-1 + antlr4: 4.13.1 ast-parents: 0.0.1 chalk: 4.1.2 commander: 10.0.1 - cosmiconfig: 8.3.6(typescript@5.5.3) + cosmiconfig: 8.3.6(typescript@5.4.5) fast-diff: 1.3.0 glob: 8.1.0 ignore: 5.3.1 @@ -25128,9 +27801,34 @@ snapshots: latest-version: 7.0.0 lodash: 4.17.21 pluralize: 8.0.0 - semver: 7.6.3 + semver: 7.6.0 + strip-ansi: 6.0.1 + table: 6.8.1 + text-table: 0.2.0 + optionalDependencies: + prettier: 2.8.8 + transitivePeerDependencies: + - typescript + + solhint@5.0.3(typescript@5.4.3): + dependencies: + '@solidity-parser/parser': 0.18.0 + ajv: 6.12.6 + antlr4: 4.13.1 + ast-parents: 0.0.1 + chalk: 4.1.2 + commander: 10.0.1 + cosmiconfig: 8.3.6(typescript@5.4.3) + fast-diff: 1.3.0 + glob: 8.1.0 + ignore: 5.3.1 + js-yaml: 4.1.0 + latest-version: 7.0.0 + lodash: 4.17.21 + pluralize: 8.0.0 + semver: 7.6.2 strip-ansi: 6.0.1 - table: 6.8.2 + table: 6.8.1 text-table: 0.2.0 optionalDependencies: prettier: 2.8.8 @@ -25143,15 +27841,17 @@ snapshots: dependencies: atomic-sleep: 1.0.0 - sorcery@0.11.1: + sorcery@0.11.0: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 - buffer-crc32: 1.0.0 + buffer-crc32: 0.2.13 minimist: 1.2.8 sander: 0.5.1 source-map-js@1.2.0: {} + source-map-js@1.2.1: {} + source-map-support@0.5.21: dependencies: buffer-from: 1.1.2 @@ -25172,26 +27872,26 @@ snapshots: cross-spawn: 5.1.0 signal-exit: 3.0.7 - spdx-correct@3.2.0: - dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.18 - - spdx-exceptions@2.5.0: {} - - spdx-expression-parse@3.0.1: - dependencies: - spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.18 - - spdx-license-ids@3.0.18: {} - split-on-first@1.1.0: {} split2@4.2.0: {} sprintf-js@1.0.3: {} + sshpk@1.18.0: + dependencies: + asn1: 0.2.6 + assert-plus: 1.0.0 + bcrypt-pbkdf: 1.0.2 + dashdash: 1.14.1 + ecc-jsbn: 0.1.2 + getpass: 0.1.7 + jsbn: 0.1.1 + safer-buffer: 2.1.2 + tweetnacl: 0.14.5 + + stack-trace@0.0.10: {} + stack-utils@2.0.6: dependencies: escape-string-regexp: 2.0.0 @@ -25204,10 +27904,12 @@ snapshots: dependencies: type-fest: 0.7.1 - starlight-links-validator@0.8.0(@astrojs/starlight@0.25.4)(astro@4.13.3): + standard-as-callback@2.1.0: {} + + starlight-links-validator@0.8.0(@astrojs/starlight@0.25.5(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)))(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)): dependencies: - '@astrojs/starlight': 0.25.4(astro@4.13.3) - astro: 4.13.3(typescript@5.5.3) + '@astrojs/starlight': 0.25.5(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)) + astro: 4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5) github-slugger: 2.0.0 hast-util-from-html: 2.0.1 hast-util-has-property: 3.0.0 @@ -25216,12 +27918,12 @@ snapshots: mdast-util-to-string: 4.0.0 unist-util-visit: 5.0.0 - starlight-openapi@0.6.4(@astrojs/markdown-remark@5.2.0)(@astrojs/starlight@0.25.4)(astro@4.13.3)(openapi-types@12.1.3): + starlight-openapi@0.6.3(@astrojs/markdown-remark@5.2.0)(@astrojs/starlight@0.25.5(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)))(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5))(openapi-types@12.1.3): dependencies: '@astrojs/markdown-remark': 5.2.0 - '@astrojs/starlight': 0.25.4(astro@4.13.3) + '@astrojs/starlight': 0.25.5(astro@4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5)) '@readme/openapi-parser': 2.5.0(openapi-types@12.1.3) - astro: 4.13.3(typescript@5.5.3) + astro: 4.15.6(@types/node@20.12.7)(rollup@4.21.3)(terser@5.27.2)(typescript@5.4.5) github-slugger: 2.0.0 transitivePeerDependencies: - openapi-types @@ -25238,17 +27940,11 @@ snapshots: stdin-discarder@0.2.2: {} - store2@2.14.3: {} - - storybook@8.1.11(react-dom@18.3.1)(react@18.3.1): + storybook@8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3): dependencies: - '@storybook/cli': 8.1.11(react-dom@18.3.1)(react@18.3.1) + '@storybook/core': 8.3.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) transitivePeerDependencies: - - '@babel/preset-env' - bufferutil - - encoding - - react - - react-dom - supports-color - utf-8-validate @@ -25259,12 +27955,14 @@ snapshots: stream-replace-string@2.0.0: {} - stream-shift@1.0.3: {} + stream-shift@1.0.1: {} stream-to-it@0.2.4: dependencies: get-iterator: 1.0.2 + strict-uri-encode@1.1.0: {} + strict-uri-encode@2.0.0: {} string-width@4.2.3: @@ -25285,24 +27983,27 @@ snapshots: get-east-asian-width: 1.2.0 strip-ansi: 7.1.0 - string.prototype.trim@1.2.9: + string.prototype.trim@1.2.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.3 - es-object-atoms: 1.0.0 + es-abstract: 1.22.3 - string.prototype.trimend@1.0.8: + string.prototype.trimend@1.0.7: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-object-atoms: 1.0.0 + es-abstract: 1.22.3 - string.prototype.trimstart@1.0.8: + string.prototype.trimstart@1.0.7: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-object-atoms: 1.0.0 + es-abstract: 1.22.3 + + string_decoder@1.0.3: + dependencies: + safe-buffer: 5.1.2 string_decoder@1.1.1: dependencies: @@ -25349,9 +28050,9 @@ snapshots: strip-json-comments@3.1.1: {} - strip-literal@2.1.0: + strip-literal@2.0.0: dependencies: - js-tokens: 9.0.0 + js-tokens: 8.0.3 strnum@1.0.5: {} @@ -25363,11 +28064,13 @@ snapshots: dependencies: inline-style-parser: 0.2.3 + stylis@4.2.0: {} + sucrase@3.35.0: dependencies: - '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/gen-mapping': 0.3.3 commander: 4.1.1 - glob: 10.4.2 + glob: 10.3.10 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.6 @@ -25375,7 +28078,7 @@ snapshots: sudo-prompt@9.2.1: {} - superstruct@1.0.4: {} + superstruct@1.0.3: {} supports-color@5.5.0: dependencies: @@ -25391,15 +28094,61 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - svelte-check@3.8.4(@babel/core@7.24.7)(postcss@8.4.41)(svelte@4.2.18): + svelte-check@3.7.1(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)))(postcss@8.4.38)(svelte@4.2.13): + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + chokidar: 3.6.0 + fast-glob: 3.3.2 + import-fresh: 3.3.0 + picocolors: 1.0.0 + sade: 1.8.1 + svelte: 4.2.13 + svelte-preprocess: 5.1.3(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)))(postcss@8.4.38)(svelte@4.2.13)(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - '@babel/core' + - coffeescript + - less + - postcss + - postcss-load-config + - pug + - sass + - stylus + - sugarss + + svelte-check@3.7.1(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)))(postcss@8.4.38)(svelte@4.2.17): + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + chokidar: 3.6.0 + fast-glob: 3.3.2 + import-fresh: 3.3.0 + picocolors: 1.0.0 + sade: 1.8.1 + svelte: 4.2.17 + svelte-preprocess: 5.1.3(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)))(postcss@8.4.38)(svelte@4.2.17)(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - '@babel/core' + - coffeescript + - less + - postcss + - postcss-load-config + - pug + - sass + - stylus + - sugarss + + svelte-check@3.7.1(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.38)(svelte@4.2.17): dependencies: '@jridgewell/trace-mapping': 0.3.25 chokidar: 3.6.0 - picocolors: 1.0.1 + fast-glob: 3.3.2 + import-fresh: 3.3.0 + picocolors: 1.0.0 sade: 1.8.1 - svelte: 4.2.18 - svelte-preprocess: 5.1.4(@babel/core@7.24.7)(postcss@8.4.41)(svelte@4.2.18)(typescript@5.5.3) - typescript: 5.5.3 + svelte: 4.2.17 + svelte-preprocess: 5.1.3(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.38)(svelte@4.2.17)(typescript@5.4.5) + typescript: 5.4.5 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -25411,15 +28160,17 @@ snapshots: - stylus - sugarss - svelte-check@3.8.4(@babel/core@7.25.2)(postcss@8.4.39)(svelte@4.2.18): + svelte-check@3.7.1(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.47)(svelte@4.2.17): dependencies: '@jridgewell/trace-mapping': 0.3.25 chokidar: 3.6.0 - picocolors: 1.0.1 + fast-glob: 3.3.2 + import-fresh: 3.3.0 + picocolors: 1.0.0 sade: 1.8.1 - svelte: 4.2.18 - svelte-preprocess: 5.1.4(@babel/core@7.25.2)(postcss@8.4.39)(svelte@4.2.18)(typescript@5.5.3) - typescript: 5.5.3 + svelte: 4.2.17 + svelte-preprocess: 5.1.3(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.47)(svelte@4.2.17)(typescript@5.4.5) + typescript: 5.4.5 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -25431,76 +28182,142 @@ snapshots: - stylus - sugarss - svelte-copy@1.4.2(svelte@4.2.18): + svelte-copy@1.4.2(svelte@4.2.13): + dependencies: + svelte: 4.2.13 + + svelte-copy@1.4.2(svelte@4.2.17): + dependencies: + svelte: 4.2.17 + + svelte-eslint-parser@0.35.0(svelte@4.2.13): dependencies: - svelte: 4.2.18 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + postcss: 8.4.38 + postcss-scss: 4.0.9(postcss@8.4.38) + optionalDependencies: + svelte: 4.2.13 - svelte-eslint-parser@0.39.2(svelte@4.2.18): + svelte-eslint-parser@0.35.0(svelte@4.2.17): dependencies: eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - postcss: 8.4.39 - postcss-scss: 4.0.9(postcss@8.4.39) - svelte: 4.2.18 + postcss: 8.4.38 + postcss-scss: 4.0.9(postcss@8.4.38) + optionalDependencies: + svelte: 4.2.17 + + svelte-hmr@0.16.0(svelte@4.2.13): + dependencies: + svelte: 4.2.13 + + svelte-hmr@0.16.0(svelte@4.2.17): + dependencies: + svelte: 4.2.17 - svelte-hmr@0.16.0(svelte@4.2.18): + svelte-i18n@4.0.0(svelte@4.2.13): dependencies: - svelte: 4.2.18 + cli-color: 2.0.3 + deepmerge: 4.3.1 + esbuild: 0.19.12 + estree-walker: 2.0.2 + intl-messageformat: 10.5.11 + sade: 1.8.1 + svelte: 4.2.13 + tiny-glob: 0.2.9 - svelte-i18n@4.0.0(svelte@4.2.18): + svelte-i18n@4.0.0(svelte@4.2.17): dependencies: - cli-color: 2.0.4 + cli-color: 2.0.3 deepmerge: 4.3.1 esbuild: 0.19.12 estree-walker: 2.0.2 - intl-messageformat: 10.5.14 + intl-messageformat: 10.5.11 sade: 1.8.1 - svelte: 4.2.18 + svelte: 4.2.17 tiny-glob: 0.2.9 - svelte-preprocess@5.1.4(@babel/core@7.24.7)(postcss@8.4.41)(svelte@4.2.18)(typescript@5.5.3): + svelte-preprocess@5.1.3(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)))(postcss@8.4.38)(svelte@4.2.13)(typescript@5.4.5): dependencies: - '@babel/core': 7.24.7 '@types/pug': 2.0.10 detect-indent: 6.1.0 - magic-string: 0.30.10 - postcss: 8.4.41 - sorcery: 0.11.1 + magic-string: 0.30.9 + sorcery: 0.11.0 + strip-indent: 3.0.0 + svelte: 4.2.13 + optionalDependencies: + '@babel/core': 7.25.2 + postcss: 8.4.38 + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)) + typescript: 5.4.5 + + svelte-preprocess@5.1.3(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)))(postcss@8.4.38)(svelte@4.2.17)(typescript@5.4.5): + dependencies: + '@types/pug': 2.0.10 + detect-indent: 6.1.0 + magic-string: 0.30.9 + sorcery: 0.11.0 strip-indent: 3.0.0 - svelte: 4.2.18 - typescript: 5.5.3 + svelte: 4.2.17 + optionalDependencies: + '@babel/core': 7.25.2 + postcss: 8.4.38 + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)) + typescript: 5.4.5 - svelte-preprocess@5.1.4(@babel/core@7.25.2)(postcss@8.4.39)(svelte@4.2.18)(typescript@5.5.3): + svelte-preprocess@5.1.3(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.38)(svelte@4.2.17)(typescript@5.4.5): dependencies: + '@types/pug': 2.0.10 + detect-indent: 6.1.0 + magic-string: 0.30.9 + sorcery: 0.11.0 + strip-indent: 3.0.0 + svelte: 4.2.17 + optionalDependencies: '@babel/core': 7.25.2 + postcss: 8.4.38 + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) + typescript: 5.4.5 + + svelte-preprocess@5.1.3(@babel/core@7.25.2)(postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(postcss@8.4.47)(svelte@4.2.17)(typescript@5.4.5): + dependencies: '@types/pug': 2.0.10 detect-indent: 6.1.0 - magic-string: 0.30.10 - postcss: 8.4.39 - sorcery: 0.11.1 + magic-string: 0.30.9 + sorcery: 0.11.0 strip-indent: 3.0.0 - svelte: 4.2.18 - typescript: 5.5.3 + svelte: 4.2.17 + optionalDependencies: + '@babel/core': 7.25.2 + postcss: 8.4.47 + postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) + typescript: 5.4.5 + + svelte-scrolling@1.4.0(svelte@4.2.13): + dependencies: + svelte: 4.2.13 - svelte-scrolling@1.4.0(svelte@4.2.18): + svelte-scrolling@1.4.0(svelte@4.2.17): dependencies: - svelte: 4.2.18 + svelte: 4.2.17 - svelte2tsx@0.7.13(svelte@4.2.18)(typescript@5.5.3): + svelte2tsx@0.7.19(svelte@4.2.17)(typescript@5.4.5): dependencies: dedent-js: 1.0.1 pascal-case: 3.1.2 - svelte: 4.2.18 - typescript: 5.5.3 + svelte: 4.2.17 + typescript: 5.4.5 - svelte@4.2.18: + svelte@4.2.13: dependencies: - '@ampproject/remapping': 2.3.0 + '@ampproject/remapping': 2.2.1 '@jridgewell/sourcemap-codec': 1.4.15 '@jridgewell/trace-mapping': 0.3.25 '@types/estree': 1.0.5 - acorn: 8.12.0 + acorn: 8.11.3 aria-query: 5.3.0 axobject-query: 4.0.0 code-red: 1.0.4 @@ -25508,7 +28325,24 @@ snapshots: estree-walker: 3.0.3 is-reference: 3.0.2 locate-character: 3.0.0 - magic-string: 0.30.10 + magic-string: 0.30.9 + periscopic: 3.1.0 + + svelte@4.2.17: + dependencies: + '@ampproject/remapping': 2.2.1 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.25 + '@types/estree': 1.0.5 + acorn: 8.11.3 + aria-query: 5.3.0 + axobject-query: 4.0.0 + code-red: 1.0.4 + css-tree: 2.3.1 + estree-walker: 3.0.3 + is-reference: 3.0.2 + locate-character: 3.0.0 + magic-string: 0.30.9 periscopic: 3.1.0 sveltedoc-parser@4.2.1: @@ -25519,18 +28353,36 @@ snapshots: transitivePeerDependencies: - supports-color + swarm-js@0.1.42(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + bluebird: 3.7.2 + buffer: 5.7.1 + eth-lib: 0.1.29(bufferutil@4.0.8)(utf-8-validate@5.0.10) + fs-extra: 4.0.3 + got: 11.8.6 + mime-types: 2.1.35 + mkdirp-promise: 5.0.1 + mock-fs: 4.14.0 + setimmediate: 1.0.5 + tar: 4.4.19 + xhr-request: 1.1.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + symbol-tree@3.2.4: {} - synckit@0.8.8: + synckit@0.8.6: dependencies: - '@pkgr/core': 0.1.1 - tslib: 2.6.3 + '@pkgr/utils': 2.4.2 + tslib: 2.6.2 system-architecture@0.1.0: {} - table@6.8.2: + table@6.8.1: dependencies: - ajv: 8.16.0 + ajv: 8.12.0 lodash.truncate: 4.4.2 slice-ansi: 4.0.0 string-width: 4.2.3 @@ -25541,7 +28393,7 @@ snapshots: flat: 4.1.1 lodash: 4.17.21 - tailwindcss@3.4.4: + tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -25551,46 +28403,59 @@ snapshots: fast-glob: 3.3.2 glob-parent: 6.0.2 is-glob: 4.0.3 - jiti: 1.21.6 + jiti: 1.21.0 lilconfig: 2.1.0 - micromatch: 4.0.7 + micromatch: 4.0.5 normalize-path: 3.0.0 object-hash: 3.0.0 - picocolors: 1.0.1 - postcss: 8.4.39 - postcss-import: 15.1.0(postcss@8.4.39) - postcss-js: 4.0.1(postcss@8.4.39) - postcss-load-config: 4.0.2(postcss@8.4.39) - postcss-nested: 6.0.1(postcss@8.4.39) - postcss-selector-parser: 6.1.0 + picocolors: 1.0.0 + postcss: 8.4.38 + postcss-import: 15.1.0(postcss@8.4.38) + postcss-js: 4.0.1(postcss@8.4.38) + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3)) + postcss-nested: 6.0.1(postcss@8.4.38) + postcss-selector-parser: 6.0.15 resolve: 1.22.8 sucrase: 3.35.0 transitivePeerDependencies: - ts-node - tar-fs@2.1.1: - dependencies: - chownr: 1.1.4 - mkdirp-classic: 0.5.3 - pump: 3.0.0 - tar-stream: 2.2.0 - - tar-stream@2.2.0: + tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)): dependencies: - bl: 4.1.0 - end-of-stream: 1.4.4 - fs-constants: 1.0.0 - inherits: 2.0.4 - readable-stream: 3.6.2 + '@alloc/quick-lru': 5.2.0 + arg: 5.0.2 + chokidar: 3.6.0 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.3.2 + glob-parent: 6.0.2 + is-glob: 4.0.3 + jiti: 1.21.0 + lilconfig: 2.1.0 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.0.0 + postcss: 8.4.38 + postcss-import: 15.1.0(postcss@8.4.38) + postcss-js: 4.0.1(postcss@8.4.38) + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) + postcss-nested: 6.0.1(postcss@8.4.38) + postcss-selector-parser: 6.0.15 + resolve: 1.22.8 + sucrase: 3.35.0 + transitivePeerDependencies: + - ts-node - tar@6.2.1: + tar@4.4.19: dependencies: - chownr: 2.0.0 - fs-minipass: 2.1.0 - minipass: 5.0.0 - minizlib: 2.1.2 - mkdirp: 1.0.4 - yallist: 4.0.0 + chownr: 1.1.4 + fs-minipass: 1.2.7 + minipass: 2.9.0 + minizlib: 1.3.3 + mkdirp: 0.5.6 + safe-buffer: 5.2.1 + yallist: 3.1.1 telejson@7.2.0: dependencies: @@ -25598,24 +28463,15 @@ snapshots: temp-dir@2.0.0: {} - temp-dir@3.0.0: {} - temp@0.8.4: dependencies: rimraf: 2.6.3 - tempy@3.1.0: - dependencies: - is-stream: 3.0.0 - temp-dir: 3.0.0 - type-fest: 2.19.0 - unique-string: 3.0.0 - term-size@2.2.1: {} - terser@5.31.1: + terser@5.27.2: dependencies: - '@jridgewell/source-map': 0.3.6 + '@jridgewell/source-map': 0.3.5 acorn: 8.12.1 commander: 2.20.3 source-map-support: 0.5.21 @@ -25647,13 +28503,15 @@ snapshots: readable-stream: 2.3.8 xtend: 4.0.2 + timed-out@4.0.1: {} + timeout-abort-controller@3.0.0: dependencies: retimer: 3.0.0 - timers-ext@0.1.8: + timers-ext@0.1.7: dependencies: - es5-ext: 0.10.64 + es5-ext: 0.10.62 next-tick: 1.1.0 tiny-glob@0.2.9: @@ -25663,11 +28521,19 @@ snapshots: tiny-invariant@1.3.3: {} - tinybench@2.8.0: {} + tinybench@2.6.0: {} + + tinyexec@0.3.0: {} + + tinypool@0.8.3: {} - tinypool@0.8.4: {} + tinyrainbow@1.2.0: {} - tinyspy@2.2.1: {} + tinyspy@2.2.0: {} + + tinyspy@3.0.2: {} + + titleize@3.0.0: {} tmp@0.0.33: dependencies: @@ -25681,13 +28547,16 @@ snapshots: dependencies: is-number: 7.0.0 - tocbot@4.28.2: {} - toidentifier@1.0.1: {} totalist@3.0.1: {} - tough-cookie@4.1.4: + tough-cookie@2.5.0: + dependencies: + psl: 1.9.0 + punycode: 2.3.1 + + tough-cookie@4.1.3: dependencies: psl: 1.9.0 punycode: 2.3.1 @@ -25706,15 +28575,23 @@ snapshots: trough@2.2.0: {} - ts-api-utils@1.3.0(typescript@5.5.3): + ts-api-utils@1.2.1(typescript@5.4.3): dependencies: - typescript: 5.5.3 + typescript: 5.4.3 - ts-dedent@2.2.0: {} + ts-api-utils@1.3.0(typescript@5.4.3): + dependencies: + typescript: 5.4.3 - ts-essentials@9.4.2(typescript@5.5.3): + ts-api-utils@1.3.0(typescript@5.4.5): dependencies: - typescript: 5.5.3 + typescript: 5.4.5 + + ts-dedent@2.2.0: {} + + ts-essentials@9.4.1(typescript@5.4.3): + optionalDependencies: + typescript: 5.4.3 ts-interface-checker@0.1.13: {} @@ -25723,29 +28600,55 @@ snapshots: '@ts-morph/common': 0.20.0 code-block-writer: 12.0.0 - ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3): + ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.3): dependencies: '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.11 + '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.14.9 - acorn: 8.12.0 - acorn-walk: 8.3.3 + '@types/node': 20.12.7 + acorn: 8.11.3 + acorn-walk: 8.3.2 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.5.3 + typescript: 5.4.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - tsconfck@3.1.1(typescript@5.5.3): + ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5): dependencies: - typescript: 5.5.3 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.12.7 + acorn: 8.11.3 + acorn-walk: 8.3.2 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.4.5 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + + tsconfck@3.0.3(typescript@5.4.3): + optionalDependencies: + typescript: 5.4.3 + + tsconfck@3.0.3(typescript@5.4.5): + optionalDependencies: + typescript: 5.4.5 + + tsconfck@3.1.3(typescript@5.4.5): + optionalDependencies: + typescript: 5.4.5 - tsconfig-paths@3.15.0: + tsconfig-paths@3.14.2: dependencies: '@types/json5': 0.0.29 json5: 1.0.2 @@ -25754,15 +28657,30 @@ snapshots: tslib@1.14.1: {} - tslib@2.6.3: {} + tslib@2.4.0: {} + + tslib@2.6.2: {} + + tsutils@3.21.0(typescript@5.4.3): + dependencies: + tslib: 1.14.1 + typescript: 5.4.3 - tsutils@3.21.0(typescript@5.5.3): + tsutils@3.21.0(typescript@5.4.5): dependencies: tslib: 1.14.1 - typescript: 5.5.3 + typescript: 5.4.5 + + tunnel-agent@0.6.0: + dependencies: + safe-buffer: 5.2.1 + + tunnel@0.0.6: {} tween-functions@1.2.0: {} + tweetnacl@0.14.5: {} + type-check@0.4.0: dependencies: prelude-ls: 1.2.1 @@ -25771,14 +28689,8 @@ snapshots: type-fest@0.20.2: {} - type-fest@0.6.0: {} - type-fest@0.7.1: {} - type-fest@0.8.1: {} - - type-fest@1.4.0: {} - type-fest@2.19.0: {} type-is@1.6.18: @@ -25786,61 +28698,61 @@ snapshots: media-typer: 0.3.0 mime-types: 2.1.35 - type@2.7.3: {} + type@1.2.0: {} + + type@2.7.2: {} - typed-array-buffer@1.0.2: + typed-array-buffer@1.0.0: dependencies: call-bind: 1.0.7 - es-errors: 1.3.0 - is-typed-array: 1.1.13 + get-intrinsic: 1.2.4 + is-typed-array: 1.1.12 - typed-array-byte-length@1.0.1: + typed-array-byte-length@1.0.0: dependencies: call-bind: 1.0.7 for-each: 0.3.3 - gopd: 1.0.1 has-proto: 1.0.3 - is-typed-array: 1.1.13 + is-typed-array: 1.1.12 - typed-array-byte-offset@1.0.2: + typed-array-byte-offset@1.0.0: dependencies: - available-typed-arrays: 1.0.7 + available-typed-arrays: 1.0.5 call-bind: 1.0.7 for-each: 0.3.3 - gopd: 1.0.1 has-proto: 1.0.3 - is-typed-array: 1.1.13 + is-typed-array: 1.1.12 - typed-array-length@1.0.6: + typed-array-length@1.0.4: dependencies: call-bind: 1.0.7 for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - possible-typed-array-names: 1.0.0 + is-typed-array: 1.1.12 + + typedarray-to-buffer@3.1.5: + dependencies: + is-typedarray: 1.0.0 typesafe-path@0.2.2: {} typescript-auto-import-cache@0.3.3: dependencies: - semver: 7.6.3 + semver: 7.6.2 - typescript@5.5.3: {} + typescript@5.4.3: {} - ufo@1.5.3: {} + typescript@5.4.5: {} - uglify-js@3.18.0: - optional: true + ufo@1.4.0: {} uint8-varint@2.0.4: dependencies: uint8arraylist: 2.4.8 - uint8arrays: 5.1.0 + uint8arrays: 5.0.3 uint8arraylist@2.4.8: dependencies: - uint8arrays: 5.1.0 + uint8arrays: 5.0.3 uint8arrays@3.1.0: dependencies: @@ -25854,9 +28766,11 @@ snapshots: dependencies: multiformats: 12.1.3 - uint8arrays@5.1.0: + uint8arrays@5.0.3: dependencies: - multiformats: 13.1.3 + multiformats: 13.1.0 + + ultron@1.1.1: {} unbox-primitive@1.0.2: dependencies: @@ -25869,16 +28783,16 @@ snapshots: undici-types@5.26.5: {} - undici@5.28.4: + undici@5.28.3: dependencies: - '@fastify/busboy': 2.1.1 + '@fastify/busboy': 2.1.0 unenv@1.9.0: dependencies: consola: 3.2.3 defu: 6.1.4 mime: 3.0.0 - node-fetch-native: 1.6.4 + node-fetch-native: 1.6.2 pathe: 1.1.2 unfetch@4.2.0: {} @@ -25894,8 +28808,6 @@ snapshots: unicode-property-aliases-ecmascript@2.1.0: {} - unicorn-magic@0.1.0: {} - unified@11.0.5: dependencies: '@types/unist': 3.0.2 @@ -25904,11 +28816,7 @@ snapshots: extend: 3.0.2 is-plain-obj: 4.1.0 trough: 2.2.0 - vfile: 6.0.2 - - unique-string@3.0.0: - dependencies: - crypto-random-string: 4.0.0 + vfile: 6.0.3 unist-util-find-after@5.0.0: dependencies: @@ -25964,28 +28872,28 @@ snapshots: unpipe@1.0.0: {} - unplugin@1.11.0: + unplugin@1.14.1: dependencies: - acorn: 8.12.0 - chokidar: 3.6.0 - webpack-sources: 3.2.3 + acorn: 8.12.1 webpack-virtual-modules: 0.6.2 - unstorage@1.10.2(idb-keyval@6.2.1): + unstorage@1.10.1(idb-keyval@6.2.1): dependencies: anymatch: 3.1.3 chokidar: 3.6.0 destr: 2.0.3 - h3: 1.12.0 - idb-keyval: 6.2.1 - listhen: 1.7.2 - lru-cache: 10.3.0 + h3: 1.10.2 + ioredis: 5.3.2 + listhen: 1.6.0 + lru-cache: 10.2.0 mri: 1.2.0 - node-fetch-native: 1.6.4 - ofetch: 1.3.4 - ufo: 1.5.3 + node-fetch-native: 1.6.2 + ofetch: 1.3.3 + ufo: 1.4.0 + optionalDependencies: + idb-keyval: 6.2.1 transitivePeerDependencies: - - uWebSockets.js + - supports-color untildify@4.0.0: {} @@ -25995,11 +28903,25 @@ snapshots: consola: 3.2.3 pathe: 1.1.2 - update-browserslist-db@1.0.16(browserslist@4.23.1): + update-browserslist-db@1.0.13(browserslist@4.23.0): + dependencies: + browserslist: 4.23.0 + escalade: 3.1.2 + picocolors: 1.0.0 + + update-browserslist-db@1.1.0(browserslist@4.23.3): dependencies: - browserslist: 4.23.1 + browserslist: 4.23.3 escalade: 3.1.2 - picocolors: 1.0.1 + picocolors: 1.1.0 + + upper-case-first@2.0.2: + dependencies: + tslib: 2.6.2 + + upper-case@2.0.2: + dependencies: + tslib: 2.6.2 uqr@0.1.2: {} @@ -26012,30 +28934,19 @@ snapshots: querystringify: 2.2.0 requires-port: 1.0.0 - use-callback-ref@1.3.2(@types/react@18.3.3)(react@18.3.1): - dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - tslib: 2.6.3 - - use-sidecar@1.1.2(@types/react@18.3.3)(react@18.3.1): - dependencies: - '@types/react': 18.3.3 - detect-node-es: 1.1.0 - react: 18.3.1 - tslib: 2.6.3 + url-set-query@1.0.0: {} - use-sync-external-store@1.2.0(react@18.3.1): + use-sync-external-store@1.2.0(react@18.2.0): dependencies: - react: 18.3.1 + react: 18.2.0 utf-8-validate@5.0.10: dependencies: - node-gyp-build: 4.8.1 + node-gyp-build: 4.8.0 - utf-8-validate@6.0.4: + utf-8-validate@6.0.3: dependencies: - node-gyp-build: 4.8.1 + node-gyp-build: 4.8.0 utf8@3.0.0: {} @@ -26046,11 +28957,13 @@ snapshots: inherits: 2.0.4 is-arguments: 1.1.1 is-generator-function: 1.0.10 - is-typed-array: 1.1.13 - which-typed-array: 1.1.15 + is-typed-array: 1.1.12 + which-typed-array: 1.1.13 utils-merge@1.0.1: {} + uuid@3.4.0: {} + uuid@8.3.2: {} uuid@9.0.1: {} @@ -26059,21 +28972,32 @@ snapshots: v8-compile-cache@2.4.0: {} - validate-npm-package-license@3.0.4: + v8-to-istanbul@9.2.0: dependencies: - spdx-correct: 3.2.0 - spdx-expression-parse: 3.0.1 + '@jridgewell/trace-mapping': 0.3.25 + '@types/istanbul-lib-coverage': 2.0.6 + convert-source-map: 2.0.0 - valtio@1.11.2(react@18.3.1): + valtio@1.11.2(@types/react@18.3.5)(react@18.2.0): dependencies: proxy-compare: 2.5.1 - react: 18.3.1 - use-sync-external-store: 1.2.0(react@18.3.1) + use-sync-external-store: 1.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.3.5 + react: 18.2.0 + + varint@5.0.2: {} varint@6.0.0: {} vary@1.1.2: {} + verror@1.10.0: + dependencies: + assert-plus: 1.0.0 + core-util-is: 1.0.2 + extsprintf: 1.3.0 + vfile-location@5.0.2: dependencies: '@types/unist': 3.0.2 @@ -26090,51 +29014,156 @@ snapshots: unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 - vfile@6.0.2: + vfile@6.0.3: dependencies: '@types/unist': 3.0.2 - unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 - viem@1.21.4(typescript@5.5.3): + viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4): + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/bip32': 1.3.2 + '@scure/bip39': 1.2.1 + abitype: 0.9.8(typescript@5.4.3)(zod@3.22.4) + isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8): dependencies: '@adraffy/ens-normalize': 1.10.0 '@noble/curves': 1.2.0 '@noble/hashes': 1.3.2 '@scure/bip32': 1.3.2 '@scure/bip39': 1.2.1 - abitype: 0.9.8(typescript@5.5.3) - isows: 1.0.3(ws@8.13.0) - typescript: 5.5.3 - ws: 8.13.0 + abitype: 0.9.8(typescript@5.4.3)(zod@3.23.8) + isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@6.0.3)(zod@3.23.8): + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/bip32': 1.3.2 + '@scure/bip39': 1.2.1 + abitype: 0.9.8(typescript@5.4.3)(zod@3.23.8) + isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.23.8): + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.4.0 + '@noble/hashes': 1.4.0 + '@scure/bip32': 1.4.0 + '@scure/bip39': 1.4.0 + abitype: 1.0.5(typescript@5.4.3)(zod@3.23.8) + isows: 1.0.4(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + webauthn-p256: 0.0.5 + ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - viem@2.16.5(typescript@5.5.3)(zod@3.23.8): + viem@2.21.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8): dependencies: '@adraffy/ens-normalize': 1.10.0 '@noble/curves': 1.4.0 '@noble/hashes': 1.4.0 '@scure/bip32': 1.4.0 - '@scure/bip39': 1.3.0 - abitype: 1.0.5(typescript@5.5.3)(zod@3.23.8) - isows: 1.0.4(ws@8.17.1) - typescript: 5.5.3 - ws: 8.17.1 + '@scure/bip39': 1.4.0 + abitype: 1.0.5(typescript@5.4.5)(zod@3.23.8) + isows: 1.0.4(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + webauthn-p256: 0.0.5 + ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@5.0.10)(zod@3.22.4): + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/bip32': 1.3.2 + '@scure/bip39': 1.2.1 + abitype: 1.0.0(typescript@5.4.3)(zod@3.22.4) + isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.3 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + viem@2.9.29(bufferutil@4.0.8)(typescript@5.4.3)(utf-8-validate@6.0.3)(zod@3.23.8): + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/bip32': 1.3.2 + '@scure/bip39': 1.2.1 + abitype: 1.0.0(typescript@5.4.3)(zod@3.23.8) + isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) + optionalDependencies: + typescript: 5.4.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - vite-node@1.6.0(@types/node@20.14.9): + vite-node@1.5.0(@types/node@20.12.7)(terser@5.27.2): + dependencies: + cac: 6.7.14 + debug: 4.3.4 + pathe: 1.1.2 + picocolors: 1.0.0 + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser + + vite-node@1.6.0(@types/node@20.12.7)(terser@5.27.2): dependencies: cac: 6.7.14 - debug: 4.3.5 + debug: 4.3.4 pathe: 1.1.2 - picocolors: 1.0.1 - vite: 5.3.2(@types/node@20.14.9) + picocolors: 1.0.0 + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) transitivePeerDependencies: - '@types/node' - less @@ -26145,99 +29174,212 @@ snapshots: - supports-color - terser - vite-tsconfig-paths@4.3.2(typescript@5.5.3)(vite@4.5.3): + vite-tsconfig-paths@4.3.2(typescript@5.4.3)(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)): + dependencies: + debug: 4.3.4 + globrex: 0.1.2 + tsconfck: 3.0.3(typescript@5.4.3) + optionalDependencies: + vite: 4.5.3(@types/node@20.12.7)(terser@5.27.2) + transitivePeerDependencies: + - supports-color + - typescript + + vite-tsconfig-paths@4.3.2(typescript@5.4.3)(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)): dependencies: - debug: 4.3.5 + debug: 4.3.4 globrex: 0.1.2 - tsconfck: 3.1.1(typescript@5.5.3) - vite: 4.5.3 + tsconfck: 3.0.3(typescript@5.4.3) + optionalDependencies: + vite: 5.1.3(@types/node@20.12.7)(terser@5.27.2) transitivePeerDependencies: - supports-color - typescript - vite-tsconfig-paths@4.3.2(typescript@5.5.3)(vite@5.3.2): + vite-tsconfig-paths@4.3.2(typescript@5.4.3)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)): dependencies: - debug: 4.3.5 + debug: 4.3.4 globrex: 0.1.2 - tsconfck: 3.1.1(typescript@5.5.3) - vite: 5.3.2(@types/node@20.14.9) + tsconfck: 3.0.3(typescript@5.4.3) + optionalDependencies: + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) transitivePeerDependencies: - supports-color - typescript - vite@4.5.3: + vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)): + dependencies: + debug: 4.3.4 + globrex: 0.1.2 + tsconfck: 3.0.3(typescript@5.4.5) + optionalDependencies: + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) + transitivePeerDependencies: + - supports-color + - typescript + + vite@4.5.3(@types/node@20.12.7)(terser@5.27.2): dependencies: esbuild: 0.18.20 - postcss: 8.4.39 + postcss: 8.4.38 rollup: 3.29.4 optionalDependencies: + '@types/node': 20.12.7 fsevents: 2.3.3 + terser: 5.27.2 - vite@5.3.2(@types/node@20.14.9): + vite@5.1.3(@types/node@20.12.7)(terser@5.27.2): dependencies: - '@types/node': 20.14.9 - esbuild: 0.21.5 - postcss: 8.4.39 - rollup: 4.18.0 + esbuild: 0.19.12 + postcss: 8.4.38 + rollup: 4.12.0 optionalDependencies: + '@types/node': 20.12.7 fsevents: 2.3.3 + terser: 5.27.2 - vite@5.4.0: + vite@5.2.11(@types/node@20.12.7)(terser@5.27.2): dependencies: - esbuild: 0.21.5 - postcss: 8.4.41 - rollup: 4.18.0 + esbuild: 0.20.2 + postcss: 8.4.38 + rollup: 4.17.2 optionalDependencies: + '@types/node': 20.12.7 fsevents: 2.3.3 + terser: 5.27.2 - vitefu@0.2.5(vite@4.5.3): + vite@5.4.5(@types/node@20.12.7)(terser@5.27.2): dependencies: - vite: 4.5.3 + esbuild: 0.21.5 + postcss: 8.4.47 + rollup: 4.21.3 + optionalDependencies: + '@types/node': 20.12.7 + fsevents: 2.3.3 + terser: 5.27.2 + + vitefu@0.2.5(vite@4.5.3(@types/node@20.12.7)(terser@5.27.2)): + optionalDependencies: + vite: 4.5.3(@types/node@20.12.7)(terser@5.27.2) - vitefu@0.2.5(vite@5.3.2): + vitefu@0.2.5(vite@5.1.3(@types/node@20.12.7)(terser@5.27.2)): + optionalDependencies: + vite: 5.1.3(@types/node@20.12.7)(terser@5.27.2) + + vitefu@0.2.5(vite@5.2.11(@types/node@20.12.7)(terser@5.27.2)): + optionalDependencies: + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) + + vitefu@1.0.2(vite@5.4.5(@types/node@20.12.7)(terser@5.27.2)): + optionalDependencies: + vite: 5.4.5(@types/node@20.12.7)(terser@5.27.2) + + vitest-fetch-mock@0.2.2(encoding@0.1.13)(vitest@1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2)): dependencies: - vite: 5.3.2(@types/node@20.14.9) + cross-fetch: 3.1.8(encoding@0.1.13) + vitest: 1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2) + transitivePeerDependencies: + - encoding - vitefu@0.2.5(vite@5.4.0): + vitest-mock-extended@1.3.1(typescript@5.4.3)(vitest@1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2)): dependencies: - vite: 5.4.0 + ts-essentials: 9.4.1(typescript@5.4.3) + typescript: 5.4.3 + vitest: 1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2) - vitest-fetch-mock@0.2.2(vitest@1.6.0): + vitest@1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2): dependencies: - cross-fetch: 3.1.8 - vitest: 1.6.0(jsdom@24.1.0) + '@vitest/expect': 1.5.0 + '@vitest/runner': 1.5.0 + '@vitest/snapshot': 1.5.0 + '@vitest/spy': 1.5.0 + '@vitest/utils': 1.5.0 + acorn-walk: 8.3.2 + chai: 4.4.1 + debug: 4.3.4 + execa: 8.0.1 + local-pkg: 0.5.0 + magic-string: 0.30.9 + pathe: 1.1.2 + picocolors: 1.0.0 + std-env: 3.7.0 + strip-literal: 2.0.0 + tinybench: 2.6.0 + tinypool: 0.8.3 + vite: 5.1.3(@types/node@20.12.7)(terser@5.27.2) + vite-node: 1.5.0(@types/node@20.12.7)(terser@5.27.2) + why-is-node-running: 2.2.2 + optionalDependencies: + '@types/node': 20.12.7 + jsdom: 24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - - encoding + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser - vitest-mock-extended@1.3.1(typescript@5.5.3)(vitest@1.6.0): + vitest@1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(terser@5.27.2): dependencies: - ts-essentials: 9.4.2(typescript@5.5.3) - typescript: 5.5.3 - vitest: 1.6.0(jsdom@24.1.0) + '@vitest/expect': 1.5.0 + '@vitest/runner': 1.5.0 + '@vitest/snapshot': 1.5.0 + '@vitest/spy': 1.5.0 + '@vitest/utils': 1.5.0 + acorn-walk: 8.3.2 + chai: 4.4.1 + debug: 4.3.4 + execa: 8.0.1 + local-pkg: 0.5.0 + magic-string: 0.30.9 + pathe: 1.1.2 + picocolors: 1.0.0 + std-env: 3.7.0 + strip-literal: 2.0.0 + tinybench: 2.6.0 + tinypool: 0.8.3 + vite: 5.1.3(@types/node@20.12.7)(terser@5.27.2) + vite-node: 1.5.0(@types/node@20.12.7)(terser@5.27.2) + why-is-node-running: 2.2.2 + optionalDependencies: + '@types/node': 20.12.7 + jsdom: 24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) + transitivePeerDependencies: + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser - vitest@1.6.0(@types/node@20.14.9): + vitest@1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.27.2): dependencies: - '@types/node': 20.14.9 '@vitest/expect': 1.6.0 '@vitest/runner': 1.6.0 '@vitest/snapshot': 1.6.0 '@vitest/spy': 1.6.0 '@vitest/utils': 1.6.0 - acorn-walk: 8.3.3 + acorn-walk: 8.3.2 chai: 4.4.1 - debug: 4.3.5 + debug: 4.3.4 execa: 8.0.1 local-pkg: 0.5.0 magic-string: 0.30.10 pathe: 1.1.2 - picocolors: 1.0.1 + picocolors: 1.0.0 std-env: 3.7.0 - strip-literal: 2.1.0 - tinybench: 2.8.0 - tinypool: 0.8.4 - vite: 5.3.2(@types/node@20.14.9) - vite-node: 1.6.0(@types/node@20.14.9) + strip-literal: 2.0.0 + tinybench: 2.6.0 + tinypool: 0.8.3 + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) + vite-node: 1.6.0(@types/node@20.12.7)(terser@5.27.2) why-is-node-running: 2.2.2 + optionalDependencies: + '@types/node': 20.12.7 + jsdom: 24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - less - lightningcss @@ -26247,29 +29389,31 @@ snapshots: - supports-color - terser - vitest@1.6.0(jsdom@24.1.0): + vitest@1.6.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(terser@5.27.2): dependencies: '@vitest/expect': 1.6.0 '@vitest/runner': 1.6.0 '@vitest/snapshot': 1.6.0 '@vitest/spy': 1.6.0 '@vitest/utils': 1.6.0 - acorn-walk: 8.3.3 + acorn-walk: 8.3.2 chai: 4.4.1 - debug: 4.3.5 + debug: 4.3.4 execa: 8.0.1 - jsdom: 24.1.0 local-pkg: 0.5.0 magic-string: 0.30.10 pathe: 1.1.2 - picocolors: 1.0.1 + picocolors: 1.0.0 std-env: 3.7.0 - strip-literal: 2.1.0 - tinybench: 2.8.0 - tinypool: 0.8.4 - vite: 5.3.2(@types/node@20.14.9) - vite-node: 1.6.0(@types/node@20.14.9) + strip-literal: 2.0.0 + tinybench: 2.6.0 + tinypool: 0.8.3 + vite: 5.2.11(@types/node@20.12.7)(terser@5.27.2) + vite-node: 1.6.0(@types/node@20.12.7)(terser@5.27.2) why-is-node-running: 2.2.2 + optionalDependencies: + '@types/node': 20.12.7 + jsdom: 24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) transitivePeerDependencies: - less - lightningcss @@ -26283,65 +29427,100 @@ snapshots: void-elements@3.1.0: {} - volar-service-css@0.0.59(@volar/language-service@2.4.0-alpha.18): + volar-service-css@0.0.61(@volar/language-service@2.4.5): dependencies: - '@volar/language-service': 2.4.0-alpha.18 - vscode-css-languageservice: 6.3.0 + vscode-css-languageservice: 6.3.1 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.5 - volar-service-emmet@0.0.59(@volar/language-service@2.4.0-alpha.18): + volar-service-emmet@0.0.61(@volar/language-service@2.4.5): dependencies: '@emmetio/css-parser': 0.4.0 '@emmetio/html-matcher': 1.3.0 - '@volar/language-service': 2.4.0-alpha.18 '@vscode/emmet-helper': 2.9.3 vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.5 - volar-service-html@0.0.59(@volar/language-service@2.4.0-alpha.18): + volar-service-html@0.0.61(@volar/language-service@2.4.5): dependencies: - '@volar/language-service': 2.4.0-alpha.18 - vscode-html-languageservice: 5.3.0 + vscode-html-languageservice: 5.3.1 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.5 - volar-service-prettier@0.0.59(@volar/language-service@2.4.0-alpha.18)(prettier@3.3.2): + volar-service-prettier@0.0.61(@volar/language-service@2.4.5)(prettier@3.2.5): dependencies: - '@volar/language-service': 2.4.0-alpha.18 - prettier: 3.3.2 vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.5 + prettier: 3.2.5 - volar-service-typescript-twoslash-queries@0.0.59(@volar/language-service@2.4.0-alpha.18): + volar-service-typescript-twoslash-queries@0.0.61(@volar/language-service@2.4.5): dependencies: - '@volar/language-service': 2.4.0-alpha.18 vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.5 - volar-service-typescript@0.0.59(@volar/language-service@2.4.0-alpha.18): + volar-service-typescript@0.0.61(@volar/language-service@2.4.5): dependencies: - '@volar/language-service': 2.4.0-alpha.18 path-browserify: 1.0.1 semver: 7.6.2 typescript-auto-import-cache: 0.3.3 vscode-languageserver-textdocument: 1.0.11 vscode-nls: 5.2.0 vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.5 + + volar-service-yaml@0.0.61(@volar/language-service@2.4.5): + dependencies: + vscode-uri: 3.0.8 + yaml-language-server: 1.15.0 + optionalDependencies: + '@volar/language-service': 2.4.5 + + vscode-css-languageservice@6.3.1: + dependencies: + '@vscode/l10n': 0.0.18 + vscode-languageserver-textdocument: 1.0.12 + vscode-languageserver-types: 3.17.5 + vscode-uri: 3.0.8 - vscode-css-languageservice@6.3.0: + vscode-html-languageservice@5.2.0: dependencies: '@vscode/l10n': 0.0.18 vscode-languageserver-textdocument: 1.0.11 vscode-languageserver-types: 3.17.5 vscode-uri: 3.0.8 - vscode-html-languageservice@5.3.0: + vscode-html-languageservice@5.3.1: dependencies: '@vscode/l10n': 0.0.18 + vscode-languageserver-textdocument: 1.0.12 + vscode-languageserver-types: 3.17.5 + vscode-uri: 3.0.8 + + vscode-json-languageservice@4.1.8: + dependencies: + jsonc-parser: 3.2.0 vscode-languageserver-textdocument: 1.0.11 vscode-languageserver-types: 3.17.5 + vscode-nls: 5.2.0 vscode-uri: 3.0.8 + vscode-jsonrpc@6.0.0: {} + vscode-jsonrpc@8.2.0: {} + vscode-languageserver-protocol@3.16.0: + dependencies: + vscode-jsonrpc: 6.0.0 + vscode-languageserver-types: 3.16.0 + vscode-languageserver-protocol@3.17.5: dependencies: vscode-jsonrpc: 8.2.0 @@ -26349,8 +29528,16 @@ snapshots: vscode-languageserver-textdocument@1.0.11: {} + vscode-languageserver-textdocument@1.0.12: {} + + vscode-languageserver-types@3.16.0: {} + vscode-languageserver-types@3.17.5: {} + vscode-languageserver@7.0.0: + dependencies: + vscode-languageserver-protocol: 3.16.0 + vscode-languageserver@9.0.1: dependencies: vscode-languageserver-protocol: 3.17.5 @@ -26369,43 +29556,249 @@ snapshots: dependencies: makeerror: 1.0.12 - watchpack@2.4.1: - dependencies: - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - wcwidth@1.0.1: dependencies: defaults: 1.0.4 web-namespaces@2.0.1: {} + web3-bzz@1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@types/node': 12.20.55 + got: 12.1.0 + swarm-js: 0.1.42(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + web3-core-helpers@1.10.4: + dependencies: + web3-eth-iban: 1.10.4 + web3-utils: 1.10.4 + + web3-core-method@1.10.4: + dependencies: + '@ethersproject/transactions': 5.7.0 + web3-core-helpers: 1.10.4 + web3-core-promievent: 1.10.4 + web3-core-subscriptions: 1.10.4 + web3-utils: 1.10.4 + + web3-core-promievent@1.10.4: + dependencies: + eventemitter3: 4.0.4 + + web3-core-requestmanager@1.10.4(encoding@0.1.13): + dependencies: + util: 0.12.5 + web3-core-helpers: 1.10.4 + web3-providers-http: 1.10.4(encoding@0.1.13) + web3-providers-ipc: 1.10.4 + web3-providers-ws: 1.10.4 + transitivePeerDependencies: + - encoding + - supports-color + + web3-core-subscriptions@1.10.4: + dependencies: + eventemitter3: 4.0.4 + web3-core-helpers: 1.10.4 + + web3-core@1.10.4(encoding@0.1.13): + dependencies: + '@types/bn.js': 5.1.5 + '@types/node': 12.20.55 + bignumber.js: 9.1.2 + web3-core-helpers: 1.10.4 + web3-core-method: 1.10.4 + web3-core-requestmanager: 1.10.4(encoding@0.1.13) + web3-utils: 1.10.4 + transitivePeerDependencies: + - encoding + - supports-color + web3-eth-abi@1.10.4: dependencies: '@ethersproject/abi': 5.7.0 web3-utils: 1.10.4 + web3-eth-accounts@1.10.4(encoding@0.1.13): + dependencies: + '@ethereumjs/common': 2.6.5 + '@ethereumjs/tx': 3.5.2 + '@ethereumjs/util': 8.1.0 + eth-lib: 0.2.8 + scrypt-js: 3.0.1 + uuid: 9.0.1 + web3-core: 1.10.4(encoding@0.1.13) + web3-core-helpers: 1.10.4 + web3-core-method: 1.10.4 + web3-utils: 1.10.4 + transitivePeerDependencies: + - encoding + - supports-color + + web3-eth-contract@1.10.4(encoding@0.1.13): + dependencies: + '@types/bn.js': 5.1.5 + web3-core: 1.10.4(encoding@0.1.13) + web3-core-helpers: 1.10.4 + web3-core-method: 1.10.4 + web3-core-promievent: 1.10.4 + web3-core-subscriptions: 1.10.4 + web3-eth-abi: 1.10.4 + web3-utils: 1.10.4 + transitivePeerDependencies: + - encoding + - supports-color + + web3-eth-ens@1.10.4(encoding@0.1.13): + dependencies: + content-hash: 2.5.2 + eth-ens-namehash: 2.0.8 + web3-core: 1.10.4(encoding@0.1.13) + web3-core-helpers: 1.10.4 + web3-core-promievent: 1.10.4 + web3-eth-abi: 1.10.4 + web3-eth-contract: 1.10.4(encoding@0.1.13) + web3-utils: 1.10.4 + transitivePeerDependencies: + - encoding + - supports-color + + web3-eth-iban@1.10.4: + dependencies: + bn.js: 5.2.1 + web3-utils: 1.10.4 + + web3-eth-personal@1.10.4(encoding@0.1.13): + dependencies: + '@types/node': 12.20.55 + web3-core: 1.10.4(encoding@0.1.13) + web3-core-helpers: 1.10.4 + web3-core-method: 1.10.4 + web3-net: 1.10.4(encoding@0.1.13) + web3-utils: 1.10.4 + transitivePeerDependencies: + - encoding + - supports-color + + web3-eth@1.10.4(encoding@0.1.13): + dependencies: + web3-core: 1.10.4(encoding@0.1.13) + web3-core-helpers: 1.10.4 + web3-core-method: 1.10.4 + web3-core-subscriptions: 1.10.4 + web3-eth-abi: 1.10.4 + web3-eth-accounts: 1.10.4(encoding@0.1.13) + web3-eth-contract: 1.10.4(encoding@0.1.13) + web3-eth-ens: 1.10.4(encoding@0.1.13) + web3-eth-iban: 1.10.4 + web3-eth-personal: 1.10.4(encoding@0.1.13) + web3-net: 1.10.4(encoding@0.1.13) + web3-utils: 1.10.4 + transitivePeerDependencies: + - encoding + - supports-color + + web3-net@1.10.4(encoding@0.1.13): + dependencies: + web3-core: 1.10.4(encoding@0.1.13) + web3-core-method: 1.10.4 + web3-utils: 1.10.4 + transitivePeerDependencies: + - encoding + - supports-color + + web3-providers-http@1.10.4(encoding@0.1.13): + dependencies: + abortcontroller-polyfill: 1.7.5 + cross-fetch: 4.0.0(encoding@0.1.13) + es6-promise: 4.2.8 + web3-core-helpers: 1.10.4 + transitivePeerDependencies: + - encoding + + web3-providers-ipc@1.10.4: + dependencies: + oboe: 2.1.5 + web3-core-helpers: 1.10.4 + + web3-providers-ws@1.10.4: + dependencies: + eventemitter3: 4.0.4 + web3-core-helpers: 1.10.4 + websocket: 1.0.35 + transitivePeerDependencies: + - supports-color + + web3-shh@1.10.4(encoding@0.1.13): + dependencies: + web3-core: 1.10.4(encoding@0.1.13) + web3-core-method: 1.10.4 + web3-core-subscriptions: 1.10.4 + web3-net: 1.10.4(encoding@0.1.13) + transitivePeerDependencies: + - encoding + - supports-color + web3-utils@1.10.4: dependencies: '@ethereumjs/util': 8.1.0 bn.js: 5.2.1 - ethereum-bloom-filters: 1.1.0 - ethereum-cryptography: 2.2.1 + ethereum-bloom-filters: 1.0.10 + ethereum-cryptography: 2.1.3 ethjs-unit: 0.1.6 number-to-bn: 1.7.0 randombytes: 2.1.0 utf8: 3.0.0 + web3@1.10.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): + dependencies: + web3-bzz: 1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + web3-core: 1.10.4(encoding@0.1.13) + web3-eth: 1.10.4(encoding@0.1.13) + web3-eth-personal: 1.10.4(encoding@0.1.13) + web3-net: 1.10.4(encoding@0.1.13) + web3-shh: 1.10.4(encoding@0.1.13) + web3-utils: 1.10.4 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + webauthn-p256@0.0.5: + dependencies: + '@noble/curves': 1.4.0 + '@noble/hashes': 1.4.0 + + webextension-polyfill-ts@0.25.0: + dependencies: + webextension-polyfill: 0.7.0 + webextension-polyfill@0.10.0: {} + webextension-polyfill@0.7.0: {} + webidl-conversions@3.0.1: {} webidl-conversions@7.0.0: {} - webpack-sources@3.2.3: {} - webpack-virtual-modules@0.6.2: {} + websocket@1.0.35: + dependencies: + bufferutil: 4.0.8 + debug: 2.6.9 + es5-ext: 0.10.64 + typedarray-to-buffer: 3.1.5 + utf-8-validate: 5.0.10 + yaeti: 0.0.6 + transitivePeerDependencies: + - supports-color + whatwg-encoding@3.1.1: dependencies: iconv-lite: 0.6.3 @@ -26436,22 +29829,17 @@ snapshots: which-pm-runs@1.1.0: {} - which-pm@2.0.0: - dependencies: - load-yaml-file: 0.2.0 - path-exists: 4.0.0 - which-pm@3.0.0: dependencies: load-yaml-file: 0.2.0 - which-typed-array@1.1.15: + which-typed-array@1.1.13: dependencies: - available-typed-arrays: 1.0.7 + available-typed-arrays: 1.0.5 call-bind: 1.0.7 for-each: 0.3.3 gopd: 1.0.1 - has-tostringtag: 1.0.2 + has-tostringtag: 1.0.0 which@1.3.1: dependencies: @@ -26474,9 +29862,14 @@ snapshots: dependencies: string-width: 5.1.2 - word-wrap@1.2.5: {} - - wordwrap@1.0.0: {} + winston@2.4.7: + dependencies: + async: 2.6.4 + colors: 1.0.3 + cycle: 1.0.3 + eyes: 0.1.8 + isstream: 0.1.2 + stack-trace: 0.0.10 wrap-ansi@6.2.0: dependencies: @@ -26504,39 +29897,139 @@ snapshots: imurmurhash: 0.1.4 signal-exit: 3.0.7 - ws@6.2.3: + ws@3.3.3(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + async-limiter: 1.0.1 + safe-buffer: 5.1.2 + ultron: 1.1.1 + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 + + ws@6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: async-limiter: 1.0.1 + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 + + ws@7.4.6(bufferutil@4.0.8)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 + + ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 + + ws@8.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 + + ws@8.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.3): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 6.0.3 + + ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 + + ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.3): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 6.0.3 + + ws@8.16.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 - ws@7.4.6: {} + ws@8.16.0(bufferutil@4.0.8)(utf-8-validate@6.0.3): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 6.0.3 + + ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 - ws@7.5.10: {} + xhr-request-promise@0.1.3: + dependencies: + xhr-request: 1.1.0 - ws@8.13.0: {} + xhr-request@1.1.0: + dependencies: + buffer-to-arraybuffer: 0.0.5 + object-assign: 4.1.1 + query-string: 5.1.1 + simple-get: 2.8.2 + timed-out: 4.0.1 + url-set-query: 1.0.0 + xhr: 2.6.0 - ws@8.17.1: {} + xhr@2.6.0: + dependencies: + global: 4.4.0 + is-function: 1.0.2 + parse-headers: 2.0.5 + xtend: 4.0.2 xml-name-validator@5.0.0: {} + xml2js@0.6.2: + dependencies: + sax: 1.3.0 + xmlbuilder: 11.0.1 + + xmlbuilder@11.0.1: {} + xmlchars@2.2.0: {} xmlhttprequest-ssl@2.0.0: {} xtend@4.0.2: {} + xxhash-wasm@1.0.2: {} + y18n@4.0.3: {} y18n@5.0.8: {} + yaeti@0.0.6: {} + yallist@2.1.2: {} yallist@3.1.1: {} yallist@4.0.0: {} + yaml-language-server@1.15.0: + dependencies: + ajv: 8.12.0 + lodash: 4.17.21 + request-light: 0.5.8 + vscode-json-languageservice: 4.1.8 + vscode-languageserver: 7.0.0 + vscode-languageserver-textdocument: 1.0.11 + vscode-languageserver-types: 3.17.5 + vscode-nls: 5.2.0 + vscode-uri: 3.0.8 + yaml: 2.2.2 + optionalDependencies: + prettier: 2.8.7 + yaml@1.10.2: {} - yaml@2.4.5: {} + yaml@2.2.2: {} + + yaml@2.3.4: {} + + yaml@2.5.1: {} yargs-parser@18.1.3: dependencies: @@ -26573,19 +30066,28 @@ snapshots: yocto-queue@0.1.0: {} + yocto-queue@1.0.0: {} + yocto-queue@1.1.1: {} - zod-to-json-schema@3.23.2(zod@3.23.8): + zod-to-json-schema@3.23.3(zod@3.23.8): + dependencies: + zod: 3.23.8 + + zod-to-ts@1.2.0(typescript@5.4.5)(zod@3.23.8): dependencies: + typescript: 5.4.5 zod: 3.23.8 zod@3.22.4: {} zod@3.23.8: {} - zustand@4.4.1(react@18.3.1): + zustand@4.4.1(@types/react@18.3.5)(react@18.2.0): dependencies: - react: 18.3.1 - use-sync-external-store: 1.2.0(react@18.3.1) + use-sync-external-store: 1.2.0(react@18.2.0) + optionalDependencies: + '@types/react': 18.3.5 + react: 18.2.0 zwitch@2.0.4: {}