@hinkal/common 0.3.11 → 0.3.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -13
- package/common/src/API/API.cjs +1 -1
- package/common/src/API/API.d.ts +3 -0
- package/common/src/API/API.mjs +5 -2
- package/common/src/API/evm-token-assets.cjs +1 -0
- package/common/src/API/evm-token-assets.mjs +14 -0
- package/common/src/API/index.cjs +1 -1
- package/common/src/API/index.d.ts +1 -0
- package/common/src/API/index.mjs +1 -0
- package/common/src/API/receiveVaultCalls.cjs +1 -0
- package/common/src/API/receiveVaultCalls.d.ts +10 -0
- package/common/src/API/receiveVaultCalls.mjs +32 -0
- package/common/src/constants/contracts.constants.cjs +1 -1
- package/common/src/constants/contracts.constants.mjs +5 -1
- package/common/src/constants/deploy-data/deploy-data-arbMainnet.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-arbMainnet.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-arcTestnet.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-arcTestnet.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-base.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-base.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-bnbMainnet.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-bnbMainnet.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-ethMainnet.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-ethMainnet.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-localhost.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-localhost.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-optimism.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-optimism.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-optimismTest.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-optimismTest.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-polygon.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-polygon.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-sepoliaTestnet.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-sepoliaTestnet.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-tempo.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-tempo.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-tronMainnet.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-tronMainnet.json.mjs +2 -1
- package/common/src/constants/deploy-data/deploy-data-tronNile.json.cjs +1 -1
- package/common/src/constants/deploy-data/deploy-data-tronNile.json.mjs +2 -1
- package/common/src/constants/deploy-data/shared-deploy-data-evm.json.cjs +1 -1
- package/common/src/constants/deploy-data/shared-deploy-data-evm.json.mjs +2 -1
- package/common/src/constants/deploy-data/shared-deploy-data-tron.json.cjs +1 -1
- package/common/src/constants/deploy-data/shared-deploy-data-tron.json.mjs +3 -2
- package/common/src/constants/events.constants.d.ts +1 -0
- package/common/src/constants/protocol.constants.cjs +1 -1
- package/common/src/constants/protocol.constants.d.ts +6 -0
- package/common/src/constants/protocol.constants.mjs +2 -2
- package/common/src/constants/server.constants.cjs +1 -1
- package/common/src/constants/server.constants.d.ts +5 -0
- package/common/src/constants/server.constants.mjs +5 -0
- package/common/src/data-structures/Hinkal/Hinkal.cjs +1 -1
- package/common/src/data-structures/Hinkal/Hinkal.d.ts +6 -2
- package/common/src/data-structures/Hinkal/Hinkal.mjs +62 -50
- package/common/src/data-structures/Hinkal/IHinkal.d.ts +6 -2
- package/common/src/data-structures/Hinkal/handleAutoDepositBack.cjs +1 -1
- package/common/src/data-structures/Hinkal/handleAutoDepositBack.mjs +10 -10
- package/common/src/data-structures/Hinkal/hinkalActionReceive.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalActionReceive.mjs +4 -4
- package/common/src/data-structures/Hinkal/hinkalBridgePrivateToPrivate.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalBridgePrivateToPrivate.mjs +24 -24
- package/common/src/data-structures/Hinkal/hinkalDepositAndBridge.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalDepositAndBridge.mjs +33 -33
- package/common/src/data-structures/Hinkal/hinkalDepositAndWithdraw.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalDepositAndWithdraw.mjs +8 -8
- package/common/src/data-structures/Hinkal/hinkalProoflessDeposit.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalProoflessDeposit.d.ts +1 -1
- package/common/src/data-structures/Hinkal/hinkalProoflessDeposit.mjs +22 -22
- package/common/src/data-structures/Hinkal/hinkalProoflessDeposit.utils.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalProoflessDeposit.utils.mjs +8 -8
- package/common/src/data-structures/Hinkal/hinkalProxySwap.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalProxySwap.mjs +5 -5
- package/common/src/data-structures/Hinkal/hinkalProxyToPrivate.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalProxyToPrivate.mjs +4 -4
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultAccount.cjs +1 -0
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultAccount.d.ts +3 -0
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultAccount.mjs +20 -0
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultCreate.cjs +1 -0
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultCreate.d.ts +3 -0
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultCreate.mjs +33 -0
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultRecover.cjs +1 -0
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultRecover.d.ts +5 -0
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultRecover.mjs +59 -0
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultSettle.cjs +1 -0
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultSettle.d.ts +6 -0
- package/common/src/data-structures/Hinkal/hinkalReceiveVaultSettle.mjs +8 -0
- package/common/src/data-structures/Hinkal/hinkalSolanaDeposit.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalSolanaDeposit.d.ts +2 -2
- package/common/src/data-structures/Hinkal/hinkalSolanaDeposit.mjs +61 -49
- package/common/src/data-structures/Hinkal/hinkalSolanaDepositAndWithdraw.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalSolanaDepositAndWithdraw.mjs +7 -7
- package/common/src/data-structures/Hinkal/hinkalSolanaProxyShield.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalSolanaProxyShield.mjs +8 -8
- package/common/src/data-structures/Hinkal/hinkalSolanaProxySwap.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalSolanaProxySwap.d.ts +1 -1
- package/common/src/data-structures/Hinkal/hinkalSolanaProxySwap.mjs +55 -40
- package/common/src/data-structures/Hinkal/hinkalSolanaTransfer.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalSolanaTransfer.mjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalSolanaWithdraw.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalSolanaWithdraw.mjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalTransact.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalTransact.mjs +7 -6
- package/common/src/data-structures/Hinkal/hinkalTransfer.cjs +1 -1
- package/common/src/data-structures/Hinkal/hinkalTransfer.mjs +4 -4
- package/common/src/data-structures/Hinkal/index.d.ts +4 -0
- package/common/src/data-structures/TokenDBs/AlchemyPublicTokensDB.d.ts +0 -3
- package/common/src/data-structures/TokenDBs/EventsPublicTokensDB.d.ts +0 -1
- package/common/src/data-structures/TokenDBs/TronPublicTokensDB.d.ts +0 -2
- package/common/src/data-structures/crypto-keys/index.cjs +1 -1
- package/common/src/data-structures/crypto-keys/index.mjs +1 -1
- package/common/src/error-handling/error-codes.constants.cjs +1 -1
- package/common/src/error-handling/error-codes.constants.d.ts +4 -0
- package/common/src/error-handling/error-codes.constants.mjs +5 -2
- package/common/src/error-handling/get-error.message.cjs +1 -1
- package/common/src/error-handling/get-error.message.mjs +50 -49
- package/common/src/functions/index.cjs +1 -1
- package/common/src/functions/index.mjs +2 -1
- package/common/src/functions/pre-transaction/build-proofless-deposit-fee.cjs +1 -0
- package/common/src/functions/pre-transaction/build-proofless-deposit-fee.d.ts +4 -0
- package/common/src/functions/pre-transaction/build-proofless-deposit-fee.mjs +3 -0
- package/common/src/functions/pre-transaction/index.cjs +1 -1
- package/common/src/functions/pre-transaction/index.d.ts +1 -0
- package/common/src/functions/pre-transaction/index.mjs +1 -0
- package/common/src/functions/snarkjs/constructTxEnclaveVerify.cjs +1 -1
- package/common/src/functions/snarkjs/constructTxEnclaveVerify.mjs +2 -1
- package/common/src/functions/utils/abi.utils.cjs +1 -1
- package/common/src/functions/utils/abi.utils.mjs +4 -1
- package/common/src/functions/utils/encryptInputForEnclave.cjs +1 -1
- package/common/src/functions/utils/encryptInputForEnclave.d.ts +2 -1
- package/common/src/functions/utils/encryptInputForEnclave.mjs +1 -1
- package/common/src/functions/utils/erc20tokenFunctions.cjs +1 -1
- package/common/src/functions/utils/erc20tokenFunctions.mjs +11 -11
- package/common/src/functions/utils/fees.utils.cjs +1 -1
- package/common/src/functions/utils/fees.utils.mjs +1 -1
- package/common/src/functions/utils/getSignerFromContract.cjs +1 -1
- package/common/src/functions/utils/getSignerFromContract.d.ts +1 -1
- package/common/src/functions/utils/getSignerFromContract.mjs +2 -2
- package/common/src/functions/utils/getUtxosFromReceipt.utils.cjs +1 -1
- package/common/src/functions/utils/getUtxosFromReceipt.utils.mjs +1 -1
- package/common/src/functions/utils/getUtxosFromReceiptSolana.cjs +1 -1
- package/common/src/functions/utils/getUtxosFromReceiptSolana.mjs +1 -1
- package/common/src/functions/utils/index.cjs +1 -1
- package/common/src/functions/utils/index.d.ts +1 -0
- package/common/src/functions/utils/index.mjs +2 -1
- package/common/src/functions/utils/isSigner.cjs +1 -0
- package/common/src/functions/utils/isSigner.d.ts +2 -0
- package/common/src/functions/utils/isSigner.mjs +7 -0
- package/common/src/functions/utils/receive-vault-account.utils.cjs +1 -0
- package/common/src/functions/utils/receive-vault-account.utils.d.ts +8 -0
- package/common/src/functions/utils/receive-vault-account.utils.mjs +23 -0
- package/common/src/functions/utils/receive-vault-scan.utils.cjs +1 -0
- package/common/src/functions/utils/receive-vault-scan.utils.d.ts +2 -0
- package/common/src/functions/utils/receive-vault-scan.utils.mjs +60 -0
- package/common/src/functions/utils/receive-vault.utils.cjs +2 -0
- package/common/src/functions/utils/receive-vault.utils.d.ts +29 -0
- package/common/src/functions/utils/receive-vault.utils.mjs +151 -0
- package/common/src/functions/utils/string.utils.cjs +1 -1
- package/common/src/functions/utils/string.utils.mjs +12 -4
- package/common/src/functions/utils/temporary-wallet-recovery.utils.cjs +1 -1
- package/common/src/functions/utils/temporary-wallet-recovery.utils.mjs +1 -1
- package/common/src/functions/utils/transfer-claimable.utils.cjs +1 -1
- package/common/src/functions/utils/transfer-claimable.utils.mjs +1 -1
- package/common/src/functions/utils/wallet-token-discovery.utils.cjs +1 -0
- package/common/src/functions/utils/wallet-token-discovery.utils.d.ts +4 -0
- package/common/src/functions/utils/wallet-token-discovery.utils.mjs +36 -0
- package/common/src/functions/web3/functionCalls/transactCallDirect.cjs +1 -1
- package/common/src/functions/web3/functionCalls/transactCallDirect.mjs +11 -11
- package/common/src/types/ethereum-network.types.cjs +1 -1
- package/common/src/types/ethereum-network.types.d.ts +4 -1
- package/common/src/types/ethereum-network.types.mjs +1 -1
- package/common/src/types/external-action.types.cjs +1 -1
- package/common/src/types/external-action.types.d.ts +2 -1
- package/common/src/types/external-action.types.mjs +1 -1
- package/common/src/types/index.cjs +1 -1
- package/common/src/types/index.d.ts +1 -0
- package/common/src/types/index.mjs +1 -0
- package/common/src/types/receive-vault.types.cjs +1 -0
- package/common/src/types/receive-vault.types.d.ts +68 -0
- package/common/src/types/receive-vault.types.mjs +6 -0
- package/common/src/types/remote-tx-build.types.d.ts +5 -0
- package/common/src/webworker/{logError-cvFNxc-0.js → logError-BeXPKuv9.js} +1 -1
- package/common/src/webworker/package.json +10 -1
- package/common/src/webworker/snarkjsWorker/snarkjsWorkerLauncher.ts?worker&url.cjs +1 -1
- package/common/src/webworker/snarkjsWorker/snarkjsWorkerLauncher.ts?worker&url.mjs +1 -1
- package/common/src/webworker/snarkjsWorkerNode.cjs +1 -1
- package/common/src/webworker/utxoWorker/utxoWorkerLauncher.ts?worker&url.cjs +1 -1
- package/common/src/webworker/utxoWorker/utxoWorkerLauncher.ts?worker&url.mjs +1 -1
- package/common/src/webworker/utxoWorkerNode.cjs +1 -1
- package/common/src/webworker/viteWorkerURL.constant.cjs +3 -3
- package/common/src/webworker/viteWorkerURL.constant.mjs +3 -3
- package/common/src/webworker/workerProxy-DF35H7vU.js +1 -0
- package/common/src/webworker/zkProofWorker/zkProofWorkerLauncher.ts?worker&url.cjs +1 -1
- package/common/src/webworker/zkProofWorker/zkProofWorkerLauncher.ts?worker&url.mjs +1 -1
- package/common/src/webworker/zkProofWorkerNode.cjs +1 -1
- package/package.json +10 -1
- package/services/Hinkal.cjs +1 -1
- package/services/Hinkal.d.ts +1 -1
- package/services/Hinkal.mjs +2 -2
- package/types/IHinkal.d.ts +1 -1
- package/common/src/webworker/workerProxy-BHzCZ9HT.js +0 -1
package/README.md
CHANGED
|
@@ -173,7 +173,7 @@ const readOnlyHinkal = await prepareWagmiHinkalFromNullifyingKey(connector, wagm
|
|
|
173
173
|
readOnlyHinkal.initUserKeysWithNullifyingKey(nullifyingKey);
|
|
174
174
|
```
|
|
175
175
|
|
|
176
|
-
A read-only session can fetch balances (`
|
|
176
|
+
A read-only session can fetch balances (`getTotalBalances`, `privateBalancesWithUSD`) and decrypt incoming shielded outputs. It cannot spend: `transfer`, `withdraw`, `swap`, `actionPrivateWallet`, and every other value-moving call throw, because they require the EdDSA spending key derived from the original wallet signature, which a nullifying key cannot reproduce.
|
|
177
177
|
|
|
178
178
|
Treat an exported nullifying key as sensitive account-specific material, not a public value — hand it out only to contexts you trust with read access to the account's balances and incoming transfers.
|
|
179
179
|
|
|
@@ -551,18 +551,18 @@ In this example:
|
|
|
551
551
|
|
|
552
552
|
Hinkal SDK is available on the following blockchain networks:
|
|
553
553
|
|
|
554
|
-
| Chain
|
|
555
|
-
|
|
|
556
|
-
| Ethereum
|
|
557
|
-
| Arbitrum
|
|
558
|
-
| Polygon
|
|
559
|
-
| Base
|
|
560
|
-
| Tempo
|
|
561
|
-
| BNB
|
|
562
|
-
| Solana
|
|
563
|
-
| Tron
|
|
564
|
-
| Arc Testnet
|
|
565
|
-
| Tron Nile
|
|
554
|
+
| Chain | Chain ID | Status |
|
|
555
|
+
| ----------- | ---------- | ------- |
|
|
556
|
+
| Ethereum | 1 | ✅ Live |
|
|
557
|
+
| Arbitrum | 42161 | ✅ Live |
|
|
558
|
+
| Polygon | 137 | ✅ Live |
|
|
559
|
+
| Base | 8453 | ✅ Live |
|
|
560
|
+
| Tempo | 4217 | ✅ Live |
|
|
561
|
+
| BNB | 56 | ✅ Live |
|
|
562
|
+
| Solana | 501 | ✅ Live |
|
|
563
|
+
| Tron | 728126428 | ✅ Live |
|
|
564
|
+
| Arc Testnet | 5042002 | ✅ Live |
|
|
565
|
+
| Tron Nile | 3448148188 | ✅ Live |
|
|
566
566
|
|
|
567
567
|
Each chain supports the full suite of Hinkal privacy features including shielding, transfers, and confidential interactions with DeFi protocols.
|
|
568
568
|
|
package/common/src/API/API.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=require(`./relayCalls.cjs`),t=require(`./getTokenPrice.cjs`),n=require(`./getOdosPriceForToken.cjs`),r=require(`./simulate-transaction.cjs`),i=require(`./simulate-batch-tx.cjs`),a=require(`./token-calls.cjs`),o=require(`./get-token-data.cjs`),s=require(`./proxyAccountsCalls.cjs`),c=require(`./callMonitor.cjs`),l=require(`./callRelayer.cjs`),u=require(`./seedless-calls.cjs`),d=require(`./temporaryWalletCalls.cjs`),f=require(`./onrampCalls.cjs`),p=require(`./get-token-price-chart-data.cjs`),m=require(`./privacy-score-calls.cjs`),h=require(`./privateSendRecipientInfoCalls.cjs`),g=require(`./privateSendNonceCalls.cjs`),_=require(`./snapshot-event-calls.cjs`),v=require(`./privateSendEmailNotificationsCalls.cjs`),y=require(`./tronSubsidyCalls.cjs`),b=require(`./dashboardAccountCalls.cjs`),x=require(`./dashboardContactCalls.cjs`),S=require(`./dashboardPayoutCalls.cjs`),C=require(`./dashboardAccountMemberCalls.cjs`),w=require(`./dashboardBalanceCalls.cjs`),T=require(`./dashboardTransactionCalls.cjs`),E=require(`./payoutNotificationStateCalls.cjs`),D=require(`./enclaveUtxoCalls.cjs`),O=require(`./rewardsUserCalls.cjs`),k=require(`./weeklyAnalyticCalls.cjs`);var
|
|
1
|
+
const e=require(`./relayCalls.cjs`),t=require(`./getTokenPrice.cjs`),n=require(`./getOdosPriceForToken.cjs`),r=require(`./simulate-transaction.cjs`),i=require(`./simulate-batch-tx.cjs`),a=require(`./token-calls.cjs`),o=require(`./get-token-data.cjs`),s=require(`./proxyAccountsCalls.cjs`),c=require(`./callMonitor.cjs`),l=require(`./callRelayer.cjs`),u=require(`./seedless-calls.cjs`),d=require(`./temporaryWalletCalls.cjs`),f=require(`./onrampCalls.cjs`),p=require(`./get-token-price-chart-data.cjs`),m=require(`./privacy-score-calls.cjs`),h=require(`./privateSendRecipientInfoCalls.cjs`),g=require(`./privateSendNonceCalls.cjs`),_=require(`./snapshot-event-calls.cjs`),v=require(`./privateSendEmailNotificationsCalls.cjs`),y=require(`./tronSubsidyCalls.cjs`),b=require(`./dashboardAccountCalls.cjs`),x=require(`./dashboardContactCalls.cjs`),S=require(`./dashboardPayoutCalls.cjs`),C=require(`./dashboardAccountMemberCalls.cjs`),w=require(`./dashboardBalanceCalls.cjs`),T=require(`./dashboardTransactionCalls.cjs`),E=require(`./payoutNotificationStateCalls.cjs`),D=require(`./enclaveUtxoCalls.cjs`),O=require(`./rewardsUserCalls.cjs`),k=require(`./weeklyAnalyticCalls.cjs`),A=require(`./receiveVaultCalls.cjs`);var j={getTokenPrices:t.getTokenPrices,getOdosPriceForToken:n.getOdosPriceForToken,getTokenPriceChartData:p.getTokenPriceChartData,getTokenPreviousDayPrices:t.getTokenPreviousDayPrices,getIdleRelay:e.getIdleRelay,getUserAnalytics:k.getUserAnalytics,registerReceiveVault:A.registerReceiveVault,fetchReceiveVaultAccount:A.fetchReceiveVaultAccount,updateRewardsUser:O.updateRewardsUser,getRewardsUser:O.getRewardsUser,checkUsernameAvailability:O.checkUsernameAvailability,simulateTransaction:r.simulateTransaction,simulateBatchTx:i.simulateBatchTx,tokensInfoCall:a.tokensInfoCall,getTokenData:o.getTokenData,getBalancesEnclaveCall:D.getBalancesEnclaveCall,storeClaimableKeyEnclaveCall:D.storeClaimableKeyEnclaveCall,getUtxosEnclaveCall:D.getUtxosEnclaveCall,getProxyAccounts:s.getProxyAccounts,updateProxyAccounts:s.updateProxyAccounts,monitor:c.monitor,callRelayerSolanaTransactBatchAPI:l.callRelayerSolanaTransactBatchAPI,callRelayerSolanaSponsoredBuildAPI:l.callRelayerSolanaSponsoredBuildAPI,callRelayerSolanaSponsoredSubmitAPI:l.callRelayerSolanaSponsoredSubmitAPI,seedlessInit:u.seedlessInit,seedlessBackup:u.seedlessBackup,seedlessCheckPassword:u.seedlessCheckPassword,seedlessStatus:u.seedlessStatus,seedlessSalt:u.seedlessSalt,getTemporaryWalletNonces:d.getTemporaryWalletNonces,addTemporaryWalletNonce:d.addTemporaryWalletNonce,encodeMoonPayBuyUrl:f.encodeMoonPayBuyUrl,generateMoonPayQuote:f.generateMoonPayQuote,getPrivateTransactionRatio:m.getPrivateTransactionRatio,savePrivacyScoreAndGetPrivacyRank:m.savePrivacyScoreAndGetPrivacyRank,allocateRecipientInfosEnclaveCall:h.allocateRecipientInfosEnclaveCall,syncPrivateSendNonce:g.syncPrivateSendNonce,reservePrivateSendNonceRange:g.reservePrivateSendNonceRange,getSnapshotServerEvents:_.getSnapshotServerEvents,sendPrivateSendEmailNotifications:v.sendPrivateSendEmailNotifications,checkTronSubsidyEligibility:y.checkTronSubsidyEligibility,recordTronSubsidyUsage:y.recordTronSubsidyUsage,getDashboardAccount:b.getDashboardAccount,updateDashboardAccount:b.updateDashboardAccount,addDashboardContact:x.addDashboardContact,deleteDashboardContact:x.deleteDashboardContact,deleteDashboardAccount:b.deleteDashboardAccount,updateDashboardContact:x.updateDashboardContact,getDashboardContacts:x.getDashboardContacts,updateUserProfile:C.updateUserProfile,sendDashboardInvitationEmail:C.sendDashboardInvitationEmail,resolveInviteRequest:C.resolveInviteRequest,deleteInviteRequest:C.deleteInviteRequest,removeMember:C.removeMember,editMember:C.editMember,createDashboardPayout:S.createDashboardPayout,getDashboardPayouts:S.getDashboardPayouts,syncDashboardBalances:w.syncDashboardBalances,getDashboardBalances:w.getDashboardBalances,changePayoutStatus:S.changePayoutStatus,createDashboardTransactions:T.createDashboardTransactions,getDashboardTransactions:T.getDashboardTransactions,getDashboardScheduledTransactions:T.getDashboardScheduledTransactions,getPayoutNotifications:E.getPayoutNotifications,markPayoutNotificationsRead:E.markPayoutNotificationsRead,dismissPayoutNotification:E.dismissPayoutNotification};exports.API=j;
|
package/common/src/API/API.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ import { dismissPayoutNotification, getPayoutNotifications, markPayoutNotificati
|
|
|
28
28
|
import { getBalancesEnclaveCall, getUtxosEnclaveCall, storeClaimableKeyEnclaveCall } from './enclaveUtxoCalls';
|
|
29
29
|
import { checkUsernameAvailability, getRewardsUser, updateRewardsUser } from './rewardsUserCalls';
|
|
30
30
|
import { getUserAnalytics } from './weeklyAnalyticCalls';
|
|
31
|
+
import { fetchReceiveVaultAccount, registerReceiveVault } from './receiveVaultCalls';
|
|
31
32
|
export type IAPI = {
|
|
32
33
|
getTokenPrices: typeof getTokenPrices;
|
|
33
34
|
getOdosPriceForToken: typeof getOdosPriceForToken;
|
|
@@ -42,6 +43,8 @@ export type IAPI = {
|
|
|
42
43
|
storeClaimableKeyEnclaveCall: typeof storeClaimableKeyEnclaveCall;
|
|
43
44
|
getUtxosEnclaveCall: typeof getUtxosEnclaveCall;
|
|
44
45
|
getUserAnalytics: typeof getUserAnalytics;
|
|
46
|
+
registerReceiveVault: typeof registerReceiveVault;
|
|
47
|
+
fetchReceiveVaultAccount: typeof fetchReceiveVaultAccount;
|
|
45
48
|
updateRewardsUser: typeof updateRewardsUser;
|
|
46
49
|
getRewardsUser: typeof getRewardsUser;
|
|
47
50
|
checkUsernameAvailability: typeof checkUsernameAvailability;
|
package/common/src/API/API.mjs
CHANGED
|
@@ -28,14 +28,17 @@ import { dismissPayoutNotification as ee, getPayoutNotifications as te, markPayo
|
|
|
28
28
|
import { getBalancesEnclaveCall as re, getUtxosEnclaveCall as ie, storeClaimableKeyEnclaveCall as ae } from "./enclaveUtxoCalls.mjs";
|
|
29
29
|
import { checkUsernameAvailability as oe, getRewardsUser as se, updateRewardsUser as ce } from "./rewardsUserCalls.mjs";
|
|
30
30
|
import { getUserAnalytics as le } from "./weeklyAnalyticCalls.mjs";
|
|
31
|
+
import { fetchReceiveVaultAccount as ue, registerReceiveVault as de } from "./receiveVaultCalls.mjs";
|
|
31
32
|
//#region libs/shared/common/src/API/API.ts
|
|
32
|
-
var
|
|
33
|
+
var fe = {
|
|
33
34
|
getTokenPrices: n,
|
|
34
35
|
getOdosPriceForToken: r,
|
|
35
36
|
getTokenPriceChartData: C,
|
|
36
37
|
getTokenPreviousDayPrices: t,
|
|
37
38
|
getIdleRelay: e,
|
|
38
39
|
getUserAnalytics: le,
|
|
40
|
+
registerReceiveVault: de,
|
|
41
|
+
fetchReceiveVaultAccount: ue,
|
|
39
42
|
updateRewardsUser: ce,
|
|
40
43
|
getRewardsUser: se,
|
|
41
44
|
checkUsernameAvailability: oe,
|
|
@@ -96,4 +99,4 @@ var ue = {
|
|
|
96
99
|
dismissPayoutNotification: ee
|
|
97
100
|
};
|
|
98
101
|
//#endregion
|
|
99
|
-
export {
|
|
102
|
+
export { fe as API };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const e=require(`../constants/server.constants.cjs`),t=require(`./getServerURL.cjs`),n=require(`../data-structures/http/HttpClient.cjs`);require(`../data-structures/http/index.cjs`);var r=async(r,i)=>{let{balances:a}=await n.httpClient.post(`${t.SERVER_URL}${e.API_CONFIG.ROUTES.evmTokenBalances}`,{chainId:r,walletAddress:i});return a};exports.getEvmTokenBalancesFromServer=r;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { API_CONFIG as e } from "../constants/server.constants.mjs";
|
|
2
|
+
import { SERVER_URL as t } from "./getServerURL.mjs";
|
|
3
|
+
import { httpClient as n } from "../data-structures/http/HttpClient.mjs";
|
|
4
|
+
import "../data-structures/http/index.mjs";
|
|
5
|
+
//#region libs/shared/common/src/API/evm-token-assets.ts
|
|
6
|
+
var r = async (r, i) => {
|
|
7
|
+
let { balances: a } = await n.post(`${t}${e.ROUTES.evmTokenBalances}`, {
|
|
8
|
+
chainId: r,
|
|
9
|
+
walletAddress: i
|
|
10
|
+
});
|
|
11
|
+
return a;
|
|
12
|
+
};
|
|
13
|
+
//#endregion
|
|
14
|
+
export { r as getEvmTokenBalancesFromServer };
|
package/common/src/API/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
require(`./getServerURL.cjs`),require(`./scheduled-transactions-calls.cjs`),require(`./relayCalls.cjs`),require(`./getTokenPrice.cjs`),require(`./token-calls.cjs`),require(`./callMonitor.cjs`),require(`./callRelayer.cjs`),require(`./seedless-calls.cjs`),require(`./temporaryWalletCalls.cjs`),require(`./privateSendRecipientInfoCalls.cjs`),require(`./privateSendEmailNotificationsCalls.cjs`),require(`./payoutNotificationStateCalls.cjs`),require(`./enclaveUtxoCalls.cjs`),require(`./API.cjs`),require(`./getGasEstimates.cjs`),require(`./admin-calls.cjs`),require(`./resolve-sns.cjs`),require(`./enclaveRecipientInfoCalls.cjs`),require(`./callNearIntentsAPI.cjs`),require(`./callLifiAPI.cjs`),require(`./getCoingeckoPrice.cjs`),require(`./checkRisk.cjs`),require(`./tenderly.api.cjs`),require(`./getWebsiteURL.cjs`);
|
|
1
|
+
require(`./getServerURL.cjs`),require(`./scheduled-transactions-calls.cjs`),require(`./relayCalls.cjs`),require(`./getTokenPrice.cjs`),require(`./token-calls.cjs`),require(`./callMonitor.cjs`),require(`./callRelayer.cjs`),require(`./seedless-calls.cjs`),require(`./temporaryWalletCalls.cjs`),require(`./privateSendRecipientInfoCalls.cjs`),require(`./privateSendEmailNotificationsCalls.cjs`),require(`./payoutNotificationStateCalls.cjs`),require(`./enclaveUtxoCalls.cjs`),require(`./receiveVaultCalls.cjs`),require(`./API.cjs`),require(`./getGasEstimates.cjs`),require(`./admin-calls.cjs`),require(`./resolve-sns.cjs`),require(`./enclaveRecipientInfoCalls.cjs`),require(`./callNearIntentsAPI.cjs`),require(`./callLifiAPI.cjs`),require(`./getCoingeckoPrice.cjs`),require(`./checkRisk.cjs`),require(`./tenderly.api.cjs`),require(`./getWebsiteURL.cjs`);
|
package/common/src/API/index.mjs
CHANGED
|
@@ -11,6 +11,7 @@ import "./privateSendRecipientInfoCalls.mjs";
|
|
|
11
11
|
import "./privateSendEmailNotificationsCalls.mjs";
|
|
12
12
|
import "./payoutNotificationStateCalls.mjs";
|
|
13
13
|
import "./enclaveUtxoCalls.mjs";
|
|
14
|
+
import "./receiveVaultCalls.mjs";
|
|
14
15
|
import "./API.mjs";
|
|
15
16
|
import "./getGasEstimates.mjs";
|
|
16
17
|
import "./admin-calls.mjs";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const e=require(`../constants/vite.constants.cjs`),t=require(`../constants/server.constants.cjs`),n=require(`../functions/snarkjs/constant.cjs`),r=require(`../functions/utils/encryptInputForEnclave.cjs`),i=require(`../functions/utils/receive-vault.utils.cjs`);var a=async(a,o,s,c,l,u)=>{let d=await r.enclavePostSealedSigned(`${n.ENCLAVE_URL}${t.API_CONFIG.ROUTES.registerReceiveVault}`,{vaultAddress:a.vaultAddress,chainId:a.chainId,index:a.index,deploymentMode:e.deploymentMode,params:i.serializeReceiveVaultParams(o),encryptionKey:s,accountKey:c,encryptedOutput:l,outputSignature:u});if(!d.success)throw Error(`Failed to register receive vault`);return d.settled},o=async i=>{let a=await r.enclavePostSealedSigned(`${n.ENCLAVE_URL}${t.API_CONFIG.ROUTES.receiveVaultAccount}`,{...i,deploymentMode:e.deploymentMode});return{records:a.records,blocks:a.blocks}};exports.fetchReceiveVaultAccount=o,exports.registerReceiveVault=a;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ReceiveVaultAccountProof, ReceiveVaultBlock, ReceiveVaultParams, ReceiveVaultRecord } from '../types/receive-vault.types';
|
|
2
|
+
export declare const registerReceiveVault: (record: ReceiveVaultRecord, params: ReceiveVaultParams, encryptionKey: string, accountKey: string, encryptedOutput: string, outputSignature: string) => Promise<boolean>;
|
|
3
|
+
/**
|
|
4
|
+
* The terms of a deposit address live in its CREATE2 salt, so a client that lost them cannot
|
|
5
|
+
* re-derive the address to recover from it. This reads them back for the whole account.
|
|
6
|
+
*/
|
|
7
|
+
export declare const fetchReceiveVaultAccount: (proof: ReceiveVaultAccountProof) => Promise<{
|
|
8
|
+
records: ReceiveVaultRecord[];
|
|
9
|
+
blocks: ReceiveVaultBlock[];
|
|
10
|
+
}>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { deploymentMode as e } from "../constants/vite.constants.mjs";
|
|
2
|
+
import { API_CONFIG as t } from "../constants/server.constants.mjs";
|
|
3
|
+
import { ENCLAVE_URL as n } from "../functions/snarkjs/constant.mjs";
|
|
4
|
+
import { enclavePostSealedSigned as r } from "../functions/utils/encryptInputForEnclave.mjs";
|
|
5
|
+
import { serializeReceiveVaultParams as i } from "../functions/utils/receive-vault.utils.mjs";
|
|
6
|
+
//#region libs/shared/common/src/API/receiveVaultCalls.ts
|
|
7
|
+
var a = async (a, o, s, c, l, u) => {
|
|
8
|
+
let d = await r(`${n}${t.ROUTES.registerReceiveVault}`, {
|
|
9
|
+
vaultAddress: a.vaultAddress,
|
|
10
|
+
chainId: a.chainId,
|
|
11
|
+
index: a.index,
|
|
12
|
+
deploymentMode: e,
|
|
13
|
+
params: i(o),
|
|
14
|
+
encryptionKey: s,
|
|
15
|
+
accountKey: c,
|
|
16
|
+
encryptedOutput: l,
|
|
17
|
+
outputSignature: u
|
|
18
|
+
});
|
|
19
|
+
if (!d.success) throw Error("Failed to register receive vault");
|
|
20
|
+
return d.settled;
|
|
21
|
+
}, o = async (i) => {
|
|
22
|
+
let a = await r(`${n}${t.ROUTES.receiveVaultAccount}`, {
|
|
23
|
+
...i,
|
|
24
|
+
deploymentMode: e
|
|
25
|
+
});
|
|
26
|
+
return {
|
|
27
|
+
records: a.records,
|
|
28
|
+
blocks: a.blocks
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
//#endregion
|
|
32
|
+
export { o as fetchReceiveVaultAccount, a as registerReceiveVault };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=require(`./chains.constants.cjs`),t=require(`../types/ethereum-network.types.cjs`),n=require(`../externalABIs/ERC20.json.cjs`),r=require(`../externalABIs/index.cjs`);require(`ethers`);var i={[t.ContractType.HinkalContract]:e=>({abi:e.hinkalABI,address:e.hinkalAddress}),[t.ContractType.HinkalHelperContract]:e=>({abi:e.hinkalHelperABI,address:e.hinkalHelperAddress}),[t.ContractType.HinkalWrapperContract]:e=>({abi:e.hinkalWrapperABI,address:e.hinkalWrapperAddress}),[t.ContractType.DepositOnChainUtxosContract]:e=>({abi:e.depositOnChainUtxosExternalActionABI,address:e.depositOnChainUtxosExternalActionAddress}),[t.ContractType.MerkleTreeContract]:()=>({abi:[`function getRootHash() public view returns (uint256)`]}),[t.ContractType.ERC20Contract]:()=>({abi:n.default.abi}),[t.ContractType.ERC721Contract]:()=>({abi:r.ERC721ABI}),[t.ContractType.ERC1155Contract]:()=>({abi:r.ERC1155ABI}),[t.ContractType.WATokenContract]:e=>({abi:e.waTokenABI})},a=t=>e.networkRegistry[e.getNonLocalhostChainId(t)]?.contractData.depositOnChainUtxosExternalActionAddress;exports.contractMetadataMapping=i,exports.getDepositOnChainUtxosAddress=a;
|
|
1
|
+
const e=require(`./chains.constants.cjs`),t=require(`../types/ethereum-network.types.cjs`),n=require(`../externalABIs/ERC20.json.cjs`),r=require(`../externalABIs/index.cjs`);require(`ethers`);var i={[t.ContractType.HinkalContract]:e=>({abi:e.hinkalABI,address:e.hinkalAddress}),[t.ContractType.HinkalHelperContract]:e=>({abi:e.hinkalHelperABI,address:e.hinkalHelperAddress}),[t.ContractType.HinkalWrapperContract]:e=>({abi:e.hinkalWrapperABI,address:e.hinkalWrapperAddress}),[t.ContractType.DepositOnChainUtxosContract]:e=>({abi:e.depositOnChainUtxosExternalActionABI,address:e.depositOnChainUtxosExternalActionAddress}),[t.ContractType.MerkleTreeContract]:()=>({abi:[`function getRootHash() public view returns (uint256)`]}),[t.ContractType.ERC20Contract]:()=>({abi:n.default.abi}),[t.ContractType.ERC721Contract]:()=>({abi:r.ERC721ABI}),[t.ContractType.ERC1155Contract]:()=>({abi:r.ERC1155ABI}),[t.ContractType.WATokenContract]:e=>({abi:e.waTokenABI}),[t.ContractType.ReceiveVaultFactoryContract]:e=>({abi:e.receiveVaultFactoryABI,address:e.receiveVaultFactoryAddress})},a=t=>e.networkRegistry[e.getNonLocalhostChainId(t)]?.contractData.depositOnChainUtxosExternalActionAddress;exports.contractMetadataMapping=i,exports.getDepositOnChainUtxosAddress=a;
|
|
@@ -25,7 +25,11 @@ var o = {
|
|
|
25
25
|
[n.ERC20Contract]: () => ({ abi: r.abi }),
|
|
26
26
|
[n.ERC721Contract]: () => ({ abi: a }),
|
|
27
27
|
[n.ERC1155Contract]: () => ({ abi: i }),
|
|
28
|
-
[n.WATokenContract]: (e) => ({ abi: e.waTokenABI })
|
|
28
|
+
[n.WATokenContract]: (e) => ({ abi: e.waTokenABI }),
|
|
29
|
+
[n.ReceiveVaultFactoryContract]: (e) => ({
|
|
30
|
+
abi: e.receiveVaultFactoryABI,
|
|
31
|
+
address: e.receiveVaultFactoryAddress
|
|
32
|
+
})
|
|
29
33
|
}, s = (n) => t[e(n)]?.contractData.depositOnChainUtxosExternalActionAddress;
|
|
30
34
|
//#endregion
|
|
31
35
|
export { o as contractMetadataMapping, s as getDepositOnChainUtxosAddress };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0x6Fac96fc379eFEFB0E6c90CF2480d756F37D8d12`,depositOnChainUtxosExternalActionAddress:`0x0e763c56f1f58Ad85590394522B42019fb353EcC`,hinkalWrapperAddress:`0x2AE2C150c7CFE6662d13Ba9d8f8C1E9b271fEEc1`,emporiumAddress:`0x3f868DA5A511C36473A8B4e0851b1aA36d9a19D0`,hinkalWalletAddress:`0x4a2b15BCAb735c097758cc41522BbCd41897175A`,lifiExternalActionInstanceAddress:`0x8e825f8953B864D20f2A37fdae4EDBa4A6Db7435`,timelockAddress:`0x4c1c127ED7785035A51ce1DA415e6643B911622F`};exports.default=e;
|
|
1
|
+
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0x6Fac96fc379eFEFB0E6c90CF2480d756F37D8d12`,depositOnChainUtxosExternalActionAddress:`0x0e763c56f1f58Ad85590394522B42019fb353EcC`,hinkalWrapperAddress:`0x2AE2C150c7CFE6662d13Ba9d8f8C1E9b271fEEc1`,emporiumAddress:`0x3f868DA5A511C36473A8B4e0851b1aA36d9a19D0`,hinkalWalletAddress:`0x4a2b15BCAb735c097758cc41522BbCd41897175A`,lifiExternalActionInstanceAddress:`0x8e825f8953B864D20f2A37fdae4EDBa4A6Db7435`,timelockAddress:`0x4c1c127ED7785035A51ce1DA415e6643B911622F`,receiveVaultFactoryAddress:`0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532`};exports.default=e;
|
|
@@ -6,7 +6,8 @@ var e = {
|
|
|
6
6
|
emporiumAddress: "0x3f868DA5A511C36473A8B4e0851b1aA36d9a19D0",
|
|
7
7
|
hinkalWalletAddress: "0x4a2b15BCAb735c097758cc41522BbCd41897175A",
|
|
8
8
|
lifiExternalActionInstanceAddress: "0x8e825f8953B864D20f2A37fdae4EDBa4A6Db7435",
|
|
9
|
-
timelockAddress: "0x4c1c127ED7785035A51ce1DA415e6643B911622F"
|
|
9
|
+
timelockAddress: "0x4c1c127ED7785035A51ce1DA415e6643B911622F",
|
|
10
|
+
receiveVaultFactoryAddress: "0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532"
|
|
10
11
|
};
|
|
11
12
|
//#endregion
|
|
12
13
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0x385C83d0A80AfcD23B508D4602f576F09f15097b`,depositOnChainUtxosExternalActionAddress:`0xf2c1e80Fc268AfC50f45145Bd0D97c756D7C2014`,hinkalWrapperAddress:`0xC39A087096430Dd12d288227d7dA749D8Db8c669`,emporiumAddress:`0x70F48817aaE2Bb9dD042D4Ea46ECfe1C168ed3e0`,hinkalWalletAddress:`0x987F7979617361e002E91071978be99D10abeB80`,lifiExternalActionInstanceAddress:`0x8a7f66eCb18aBbe272BD50A04768D88191D84961`};exports.default=e;
|
|
1
|
+
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0x385C83d0A80AfcD23B508D4602f576F09f15097b`,depositOnChainUtxosExternalActionAddress:`0xf2c1e80Fc268AfC50f45145Bd0D97c756D7C2014`,hinkalWrapperAddress:`0xC39A087096430Dd12d288227d7dA749D8Db8c669`,emporiumAddress:`0x70F48817aaE2Bb9dD042D4Ea46ECfe1C168ed3e0`,hinkalWalletAddress:`0x987F7979617361e002E91071978be99D10abeB80`,lifiExternalActionInstanceAddress:`0x8a7f66eCb18aBbe272BD50A04768D88191D84961`,receiveVaultFactoryAddress:`0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532`};exports.default=e;
|
|
@@ -5,7 +5,8 @@ var e = {
|
|
|
5
5
|
hinkalWrapperAddress: "0xC39A087096430Dd12d288227d7dA749D8Db8c669",
|
|
6
6
|
emporiumAddress: "0x70F48817aaE2Bb9dD042D4Ea46ECfe1C168ed3e0",
|
|
7
7
|
hinkalWalletAddress: "0x987F7979617361e002E91071978be99D10abeB80",
|
|
8
|
-
lifiExternalActionInstanceAddress: "0x8a7f66eCb18aBbe272BD50A04768D88191D84961"
|
|
8
|
+
lifiExternalActionInstanceAddress: "0x8a7f66eCb18aBbe272BD50A04768D88191D84961",
|
|
9
|
+
receiveVaultFactoryAddress: "0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532"
|
|
9
10
|
};
|
|
10
11
|
//#endregion
|
|
11
12
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0xf6aFE2Cb1d4b108D14ec89e23999719328B63746`,depositOnChainUtxosExternalActionAddress:`0x6aD588Db8687516E626b037F7a4bc754D8f7d5B1`,hinkalWrapperAddress:`0xEa1765Cc8d3aEB2A3bf5365a7Fa8451597CA9153`,emporiumAddress:`0xf66D101962E20cb49c4934F9fbb43eb7ef75F4cC`,hinkalWalletAddress:`0x2Be66fdF3F0F1A93dce0450074ecb77c44CdC42B`,lifiExternalActionInstanceAddress:`0x3CD1C92D7D9eAC7a7cf5C39f24ebA044359e1bAC`,timelockAddress:`0xeD5545E21cAf6D85BA2fA09277466286001C2539`};exports.default=e;
|
|
1
|
+
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0xf6aFE2Cb1d4b108D14ec89e23999719328B63746`,depositOnChainUtxosExternalActionAddress:`0x6aD588Db8687516E626b037F7a4bc754D8f7d5B1`,hinkalWrapperAddress:`0xEa1765Cc8d3aEB2A3bf5365a7Fa8451597CA9153`,emporiumAddress:`0xf66D101962E20cb49c4934F9fbb43eb7ef75F4cC`,hinkalWalletAddress:`0x2Be66fdF3F0F1A93dce0450074ecb77c44CdC42B`,lifiExternalActionInstanceAddress:`0x3CD1C92D7D9eAC7a7cf5C39f24ebA044359e1bAC`,timelockAddress:`0xeD5545E21cAf6D85BA2fA09277466286001C2539`,receiveVaultFactoryAddress:`0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532`};exports.default=e;
|
|
@@ -6,7 +6,8 @@ var e = {
|
|
|
6
6
|
emporiumAddress: "0xf66D101962E20cb49c4934F9fbb43eb7ef75F4cC",
|
|
7
7
|
hinkalWalletAddress: "0x2Be66fdF3F0F1A93dce0450074ecb77c44CdC42B",
|
|
8
8
|
lifiExternalActionInstanceAddress: "0x3CD1C92D7D9eAC7a7cf5C39f24ebA044359e1bAC",
|
|
9
|
-
timelockAddress: "0xeD5545E21cAf6D85BA2fA09277466286001C2539"
|
|
9
|
+
timelockAddress: "0xeD5545E21cAf6D85BA2fA09277466286001C2539",
|
|
10
|
+
receiveVaultFactoryAddress: "0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532"
|
|
10
11
|
};
|
|
11
12
|
//#endregion
|
|
12
13
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0xF1EaA4cC2BB9b84459d6467AeA81d77F13823592`,depositOnChainUtxosExternalActionAddress:`0x5c678009c53b154dE1baE9a0b6daE5eB9cE902B0`,hinkalWrapperAddress:`0x0fAb8C78cC588D2dc2B96971685747FC980c08fb`,emporiumAddress:`0x0AEcD18E04FB5263155476059fDcAA41a8efF0F9`,hinkalWalletAddress:`0xb34e79F356aBd059DF1B1ef0A136Db65f6659e49`,lifiExternalActionInstanceAddress:`0x93A4b8A37B0282e01340f827b92854B1cf956E29`,timelockAddress:`0x65C649917Df3359FbADdf262adb8Aa8e486897c0`};exports.default=e;
|
|
1
|
+
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0xF1EaA4cC2BB9b84459d6467AeA81d77F13823592`,depositOnChainUtxosExternalActionAddress:`0x5c678009c53b154dE1baE9a0b6daE5eB9cE902B0`,hinkalWrapperAddress:`0x0fAb8C78cC588D2dc2B96971685747FC980c08fb`,emporiumAddress:`0x0AEcD18E04FB5263155476059fDcAA41a8efF0F9`,hinkalWalletAddress:`0xb34e79F356aBd059DF1B1ef0A136Db65f6659e49`,lifiExternalActionInstanceAddress:`0x93A4b8A37B0282e01340f827b92854B1cf956E29`,timelockAddress:`0x65C649917Df3359FbADdf262adb8Aa8e486897c0`,receiveVaultFactoryAddress:`0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532`};exports.default=e;
|
|
@@ -6,7 +6,8 @@ var e = {
|
|
|
6
6
|
emporiumAddress: "0x0AEcD18E04FB5263155476059fDcAA41a8efF0F9",
|
|
7
7
|
hinkalWalletAddress: "0xb34e79F356aBd059DF1B1ef0A136Db65f6659e49",
|
|
8
8
|
lifiExternalActionInstanceAddress: "0x93A4b8A37B0282e01340f827b92854B1cf956E29",
|
|
9
|
-
timelockAddress: "0x65C649917Df3359FbADdf262adb8Aa8e486897c0"
|
|
9
|
+
timelockAddress: "0x65C649917Df3359FbADdf262adb8Aa8e486897c0",
|
|
10
|
+
receiveVaultFactoryAddress: "0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532"
|
|
10
11
|
};
|
|
11
12
|
//#endregion
|
|
12
13
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0x5f912cBBB7F14E4524faAe8559666e7C79227C1b`,depositOnChainUtxosExternalActionAddress:`0x6D9e70F10b93a0E81ae643d0365B517D921ed60d`,hinkalWrapperAddress:`0x6998fE93f3a3AbDb31df1922EB91BC282F42aa1d`,emporiumAddress:`0x795884e56c58D4fF1B26Eb1494F39FcfB38917a1`,hinkalWalletAddress:`0xB24043ebDC72ddC1923ec749cFBDFbEfF3FC82f6`,lifiExternalActionInstanceAddress:`0xfF0b792E9833B8aFb8BDE1f6695717e1A87968A3`,timelockAddress:`0xF04310839973454155d9886a4023451F8D3Db7D0`};exports.default=e;
|
|
1
|
+
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0x5f912cBBB7F14E4524faAe8559666e7C79227C1b`,depositOnChainUtxosExternalActionAddress:`0x6D9e70F10b93a0E81ae643d0365B517D921ed60d`,hinkalWrapperAddress:`0x6998fE93f3a3AbDb31df1922EB91BC282F42aa1d`,emporiumAddress:`0x795884e56c58D4fF1B26Eb1494F39FcfB38917a1`,hinkalWalletAddress:`0xB24043ebDC72ddC1923ec749cFBDFbEfF3FC82f6`,lifiExternalActionInstanceAddress:`0xfF0b792E9833B8aFb8BDE1f6695717e1A87968A3`,timelockAddress:`0xF04310839973454155d9886a4023451F8D3Db7D0`,receiveVaultFactoryAddress:`0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532`};exports.default=e;
|
|
@@ -6,7 +6,8 @@ var e = {
|
|
|
6
6
|
emporiumAddress: "0x795884e56c58D4fF1B26Eb1494F39FcfB38917a1",
|
|
7
7
|
hinkalWalletAddress: "0xB24043ebDC72ddC1923ec749cFBDFbEfF3FC82f6",
|
|
8
8
|
lifiExternalActionInstanceAddress: "0xfF0b792E9833B8aFb8BDE1f6695717e1A87968A3",
|
|
9
|
-
timelockAddress: "0xF04310839973454155d9886a4023451F8D3Db7D0"
|
|
9
|
+
timelockAddress: "0xF04310839973454155d9886a4023451F8D3Db7D0",
|
|
10
|
+
receiveVaultFactoryAddress: "0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532"
|
|
10
11
|
};
|
|
11
12
|
//#endregion
|
|
12
13
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x13b65FA5375af51A12762499602bE7B92afB8CD6`,hinkalHelperAddress:`0x6D5DFa6Ec97bF1Da5396033F305dFA8575c1f5a7`,emporiumAddress:`0x23A64eF68de98C6Cf01e3A5202d47a3bcee6f920`,hinkalWalletFactoryAddress:`0xD0b3FF7e99dcD6058362c7B0894DBB34723D1bfA`,hinkalWalletBeaconAddress:`0x85f525996478fe87e265dfdb99e6C3ebE2D6E876
|
|
1
|
+
var e={hinkalAddress:`0x13b65FA5375af51A12762499602bE7B92afB8CD6`,hinkalHelperAddress:`0x6D5DFa6Ec97bF1Da5396033F305dFA8575c1f5a7`,emporiumAddress:`0x23A64eF68de98C6Cf01e3A5202d47a3bcee6f920`,hinkalWalletFactoryAddress:`0xD0b3FF7e99dcD6058362c7B0894DBB34723D1bfA`,hinkalWalletBeaconAddress:`0x85f525996478fe87e265dfdb99e6C3ebE2D6E876`,receiveVaultFactoryAddress:``};exports.default=e;
|
|
@@ -3,7 +3,8 @@ var e = {
|
|
|
3
3
|
hinkalHelperAddress: "0x6D5DFa6Ec97bF1Da5396033F305dFA8575c1f5a7",
|
|
4
4
|
emporiumAddress: "0x23A64eF68de98C6Cf01e3A5202d47a3bcee6f920",
|
|
5
5
|
hinkalWalletFactoryAddress: "0xD0b3FF7e99dcD6058362c7B0894DBB34723D1bfA",
|
|
6
|
-
hinkalWalletBeaconAddress: "0x85f525996478fe87e265dfdb99e6C3ebE2D6E876"
|
|
6
|
+
hinkalWalletBeaconAddress: "0x85f525996478fe87e265dfdb99e6C3ebE2D6E876",
|
|
7
|
+
receiveVaultFactoryAddress: ""
|
|
7
8
|
};
|
|
8
9
|
//#endregion
|
|
9
10
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x25BBb093BA3cB978a5C00C31fFaC8Fdc343535cF`,hinkalHelperAddress:`0x1d9a22704Cf651184c754B127d51fad80e4887f0`,hinkalWrapperAddress:`0x214D8a8Bc9f671a35deA7e896F1ae1c2f6861b3B`,emporiumAddress:`0xdC677d309D86872B3350E01473B4Cf0D6B0806FE`,hinkalWalletAddress:`0x4B80DDB181bE35A64d378cfd2429ED9F8b6AE6fD`,lifiExternalActionInstanceAddress:`0x8b474575F5138E236474e2f42395c8a803B2487A`,depositOnChainUtxosExternalActionAddress:`0x120478B9643CA3b708D1e06b5dFdC5C727C5A3b4`,timelockAddress:`0xDFaFA4F3Db041546C999B28533FA6B8b7AD474eA
|
|
1
|
+
var e={hinkalAddress:`0x25BBb093BA3cB978a5C00C31fFaC8Fdc343535cF`,hinkalHelperAddress:`0x1d9a22704Cf651184c754B127d51fad80e4887f0`,hinkalWrapperAddress:`0x214D8a8Bc9f671a35deA7e896F1ae1c2f6861b3B`,emporiumAddress:`0xdC677d309D86872B3350E01473B4Cf0D6B0806FE`,hinkalWalletAddress:`0x4B80DDB181bE35A64d378cfd2429ED9F8b6AE6fD`,lifiExternalActionInstanceAddress:`0x8b474575F5138E236474e2f42395c8a803B2487A`,depositOnChainUtxosExternalActionAddress:`0x120478B9643CA3b708D1e06b5dFdC5C727C5A3b4`,timelockAddress:`0xDFaFA4F3Db041546C999B28533FA6B8b7AD474eA`,receiveVaultFactoryAddress:``};exports.default=e;
|
|
@@ -6,7 +6,8 @@ var e = {
|
|
|
6
6
|
hinkalWalletAddress: "0x4B80DDB181bE35A64d378cfd2429ED9F8b6AE6fD",
|
|
7
7
|
lifiExternalActionInstanceAddress: "0x8b474575F5138E236474e2f42395c8a803B2487A",
|
|
8
8
|
depositOnChainUtxosExternalActionAddress: "0x120478B9643CA3b708D1e06b5dFdC5C727C5A3b4",
|
|
9
|
-
timelockAddress: "0xDFaFA4F3Db041546C999B28533FA6B8b7AD474eA"
|
|
9
|
+
timelockAddress: "0xDFaFA4F3Db041546C999B28533FA6B8b7AD474eA",
|
|
10
|
+
receiveVaultFactoryAddress: ""
|
|
10
11
|
};
|
|
11
12
|
//#endregion
|
|
12
13
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x5395d371491b87F656280Ca29b584185Bdc83580`,hinkalHelperAddress:`0xb66469a26C737aCA04128AfEb2AA9be2034f5E76`,hinkalWrapperAddress:`0x4360b2416c77e3a02a0d28Bc1Eed341CB6885f73`,emporiumAddress:`0x9B234163a3b6d315d402e48262Fb411316d7a1F7`,hinkalWalletAddress:`0xFd40a90A71Af2ad674AC38a605c3A8e87582fdC9
|
|
1
|
+
var e={hinkalAddress:`0x5395d371491b87F656280Ca29b584185Bdc83580`,hinkalHelperAddress:`0xb66469a26C737aCA04128AfEb2AA9be2034f5E76`,hinkalWrapperAddress:`0x4360b2416c77e3a02a0d28Bc1Eed341CB6885f73`,emporiumAddress:`0x9B234163a3b6d315d402e48262Fb411316d7a1F7`,hinkalWalletAddress:`0xFd40a90A71Af2ad674AC38a605c3A8e87582fdC9`,receiveVaultFactoryAddress:``};exports.default=e;
|
|
@@ -3,7 +3,8 @@ var e = {
|
|
|
3
3
|
hinkalHelperAddress: "0xb66469a26C737aCA04128AfEb2AA9be2034f5E76",
|
|
4
4
|
hinkalWrapperAddress: "0x4360b2416c77e3a02a0d28Bc1Eed341CB6885f73",
|
|
5
5
|
emporiumAddress: "0x9B234163a3b6d315d402e48262Fb411316d7a1F7",
|
|
6
|
-
hinkalWalletAddress: "0xFd40a90A71Af2ad674AC38a605c3A8e87582fdC9"
|
|
6
|
+
hinkalWalletAddress: "0xFd40a90A71Af2ad674AC38a605c3A8e87582fdC9",
|
|
7
|
+
receiveVaultFactoryAddress: ""
|
|
7
8
|
};
|
|
8
9
|
//#endregion
|
|
9
10
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0x3CD1C92D7D9eAC7a7cf5C39f24ebA044359e1bAC`,depositOnChainUtxosExternalActionAddress:`0x35AfB32e5a7d907f2ca0C8C37808A9274B96A198`,hinkalWrapperAddress:`0xeA179De69AcFcDD1Da5437E70339450bB96Ea5FE`,emporiumAddress:`0x658a7a12A45f59F9c2bB7a5d5A3bb733d9155d24`,hinkalWalletAddress:`0x95Da9777f9fb8d8500592E351676Aa9B560E5956`,lifiExternalActionInstanceAddress:`0xC071C85B373a104Bd4852CBA4f3eaa3c8F5Fb882`,timelockAddress:`0x2296772D624A55e40acf657d4D31E603A6c2c342`};exports.default=e;
|
|
1
|
+
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0x3CD1C92D7D9eAC7a7cf5C39f24ebA044359e1bAC`,depositOnChainUtxosExternalActionAddress:`0x35AfB32e5a7d907f2ca0C8C37808A9274B96A198`,hinkalWrapperAddress:`0xeA179De69AcFcDD1Da5437E70339450bB96Ea5FE`,emporiumAddress:`0x658a7a12A45f59F9c2bB7a5d5A3bb733d9155d24`,hinkalWalletAddress:`0x95Da9777f9fb8d8500592E351676Aa9B560E5956`,lifiExternalActionInstanceAddress:`0xC071C85B373a104Bd4852CBA4f3eaa3c8F5Fb882`,timelockAddress:`0x2296772D624A55e40acf657d4D31E603A6c2c342`,receiveVaultFactoryAddress:`0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532`};exports.default=e;
|
|
@@ -6,7 +6,8 @@ var e = {
|
|
|
6
6
|
emporiumAddress: "0x658a7a12A45f59F9c2bB7a5d5A3bb733d9155d24",
|
|
7
7
|
hinkalWalletAddress: "0x95Da9777f9fb8d8500592E351676Aa9B560E5956",
|
|
8
8
|
lifiExternalActionInstanceAddress: "0xC071C85B373a104Bd4852CBA4f3eaa3c8F5Fb882",
|
|
9
|
-
timelockAddress: "0x2296772D624A55e40acf657d4D31E603A6c2c342"
|
|
9
|
+
timelockAddress: "0x2296772D624A55e40acf657d4D31E603A6c2c342",
|
|
10
|
+
receiveVaultFactoryAddress: "0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532"
|
|
10
11
|
};
|
|
11
12
|
//#endregion
|
|
12
13
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x1858c7E127877430EbEc27D112F319C7091add33`,hinkalHelperAddress:`0x83927CF3049DEA065dB50e6B08aA5A136b70C95b`,depositOnChainUtxosExternalActionAddress:`0xFA3164c6beA5c21d86E14348854d51B08032da2A`,hinkalWrapperAddress:`0x74aFF37065ae1044158A3535248402Ff8FcF90e9
|
|
1
|
+
var e={hinkalAddress:`0x1858c7E127877430EbEc27D112F319C7091add33`,hinkalHelperAddress:`0x83927CF3049DEA065dB50e6B08aA5A136b70C95b`,depositOnChainUtxosExternalActionAddress:`0xFA3164c6beA5c21d86E14348854d51B08032da2A`,hinkalWrapperAddress:`0x74aFF37065ae1044158A3535248402Ff8FcF90e9`,receiveVaultFactoryAddress:``};exports.default=e;
|
|
@@ -2,7 +2,8 @@ var e = {
|
|
|
2
2
|
hinkalAddress: "0x1858c7E127877430EbEc27D112F319C7091add33",
|
|
3
3
|
hinkalHelperAddress: "0x83927CF3049DEA065dB50e6B08aA5A136b70C95b",
|
|
4
4
|
depositOnChainUtxosExternalActionAddress: "0xFA3164c6beA5c21d86E14348854d51B08032da2A",
|
|
5
|
-
hinkalWrapperAddress: "0x74aFF37065ae1044158A3535248402Ff8FcF90e9"
|
|
5
|
+
hinkalWrapperAddress: "0x74aFF37065ae1044158A3535248402Ff8FcF90e9",
|
|
6
|
+
receiveVaultFactoryAddress: ""
|
|
6
7
|
};
|
|
7
8
|
//#endregion
|
|
8
9
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0x617c6124f2641787907A2216614177356DC1e2F1`,depositOnChainUtxosExternalActionAddress:`0x5c678009c53b154dE1baE9a0b6daE5eB9cE902B0`,hinkalWrapperAddress:`0x0B790C436B7A277f24A7f43D74c44db1a56f2A36`,emporiumAddress:`0x94bF69507085a33028Aa111046B85cA1b6846aA3`,hinkalWalletAddress:`0xd05B85a7C2fA4d99C48145eF25e87C2a68826B70`,lifiExternalActionInstanceAddress:`0x894b2a0498840FDdf6519a2a1FAD4AfF0250A5f7`};exports.default=e;
|
|
1
|
+
var e={hinkalAddress:`0x7cb60446d7635C68EDf1c568cac74A1f98c1Cfa4`,hinkalHelperAddress:`0x617c6124f2641787907A2216614177356DC1e2F1`,depositOnChainUtxosExternalActionAddress:`0x5c678009c53b154dE1baE9a0b6daE5eB9cE902B0`,hinkalWrapperAddress:`0x0B790C436B7A277f24A7f43D74c44db1a56f2A36`,emporiumAddress:`0x94bF69507085a33028Aa111046B85cA1b6846aA3`,hinkalWalletAddress:`0xd05B85a7C2fA4d99C48145eF25e87C2a68826B70`,lifiExternalActionInstanceAddress:`0x894b2a0498840FDdf6519a2a1FAD4AfF0250A5f7`,receiveVaultFactoryAddress:`0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532`};exports.default=e;
|
|
@@ -5,7 +5,8 @@ var e = {
|
|
|
5
5
|
hinkalWrapperAddress: "0x0B790C436B7A277f24A7f43D74c44db1a56f2A36",
|
|
6
6
|
emporiumAddress: "0x94bF69507085a33028Aa111046B85cA1b6846aA3",
|
|
7
7
|
hinkalWalletAddress: "0xd05B85a7C2fA4d99C48145eF25e87C2a68826B70",
|
|
8
|
-
lifiExternalActionInstanceAddress: "0x894b2a0498840FDdf6519a2a1FAD4AfF0250A5f7"
|
|
8
|
+
lifiExternalActionInstanceAddress: "0x894b2a0498840FDdf6519a2a1FAD4AfF0250A5f7",
|
|
9
|
+
receiveVaultFactoryAddress: "0x5F4f811Be5a985AE993A54E01F32F79FDc3B5532"
|
|
9
10
|
};
|
|
10
11
|
//#endregion
|
|
11
12
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x2bf3af0ffb6f0b8cdc649d11c91953f700733b17`,hinkalHelperAddress:`0xef3b0c95e5a235ac8d5d4545eee02cf41b572459
|
|
1
|
+
var e={hinkalAddress:`0x2bf3af0ffb6f0b8cdc649d11c91953f700733b17`,hinkalHelperAddress:`0xef3b0c95e5a235ac8d5d4545eee02cf41b572459`,receiveVaultFactoryAddress:``};exports.default=e;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
var e = {
|
|
2
2
|
hinkalAddress: "0x2bf3af0ffb6f0b8cdc649d11c91953f700733b17",
|
|
3
|
-
hinkalHelperAddress: "0xef3b0c95e5a235ac8d5d4545eee02cf41b572459"
|
|
3
|
+
hinkalHelperAddress: "0xef3b0c95e5a235ac8d5d4545eee02cf41b572459",
|
|
4
|
+
receiveVaultFactoryAddress: ""
|
|
4
5
|
};
|
|
5
6
|
//#endregion
|
|
6
7
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalAddress:`0x9046b44155bbf6aa991e86cc30451c4c1c73eb74`,hinkalHelperAddress:`0x4ca5f085914836d11f591769e71a018128759d92`};exports.default=e;
|
|
1
|
+
var e={hinkalAddress:`0x9046b44155bbf6aa991e86cc30451c4c1c73eb74`,hinkalHelperAddress:`0x4ca5f085914836d11f591769e71a018128759d92`,receiveVaultFactoryAddress:`0xfc2a0180dd02c3cad3f879e1885d7860babe8160`};exports.default=e;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
var e = {
|
|
2
2
|
hinkalAddress: "0x9046b44155bbf6aa991e86cc30451c4c1c73eb74",
|
|
3
|
-
hinkalHelperAddress: "0x4ca5f085914836d11f591769e71a018128759d92"
|
|
3
|
+
hinkalHelperAddress: "0x4ca5f085914836d11f591769e71a018128759d92",
|
|
4
|
+
receiveVaultFactoryAddress: "0xfc2a0180dd02c3cad3f879e1885d7860babe8160"
|
|
4
5
|
};
|
|
5
6
|
//#endregion
|
|
6
7
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalABI:`constructor(tuple(uint128 levels, address poseidon2, address poseidon4) constructorArgs, address _hinkalHelper, address _hinkalHelperManager).event BlockedUtxosCreated().event BufferReleased(address approvalTarget, address tokenAddress, uint256 inHinkalAddress).event ExternalActionRegistered(address externalActionAddress).event NewBufferEntry(address approvalTarget, address tokenAddress, uint256 amount, uint256 inHinkalAddress).event NewCommitment(uint256 commitment, int256 index, bytes encryptedOutput).event NewTransaction(address sender, uint256 timestamp, address erc20TokenAddress, int256 publicAmount).event NewUtxo(uint256 amount, address erc20Address, uint256 randomization, uint256 stealthAddress, uint256 timeStamp).event Nullified(uint256 nullifier).event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner).event OwnershipTransferred(address indexed previousOwner, address indexed newOwner).event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole).event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender).event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender).event VerifierRegistered(uint256 verifierId, address verifierAddress).event VerifierRemoved(uint256 verifierId).function DEFAULT_ADMIN_ROLE() view returns (bytes32).function HINKAL_HELPER_MANAGER() view returns (bytes32).function acceptOwnership().function buildVerifierId(tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, uint256 externalActionId) pure returns (uint256).function externalActionMap(uint256) view returns (address).function getRoleAdmin(bytes32 role) view returns (bytes32).function getRootHash() view returns (uint256).function grantRole(bytes32 role, address account).function hasRole(bytes32 role, address account) view returns (bool).function hash2(uint256 a, uint256 b) view returns (uint256 poseidonHash).function hash4(uint256 a0, uint256 a1, uint256 a2, uint256 a3) view returns (uint256 poseidonHash).function hinkalHelper() view returns (address).function logarithm2(uint256 x) pure returns (uint256 y).function m_index() view returns (uint256).function nullifiers(uint256) view returns (bool).function onERC1155BatchReceived(address, address, uint256[], uint256[], bytes) pure returns (bytes4).function onERC1155Received(address, address, uint256, uint256, bytes) pure returns (bytes4).function onERC721Received(address, address, uint256, bytes) pure returns (bytes4).function owner() view returns (address).function pendingOwner() view returns (address).function poseidon2() view returns (address).function poseidon4() view returns (address).function prooflessDeposit(address[] erc20Addresses, uint256[] amounts, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress)[] stealthAddressStructures, bytes[] onChainEncryptedOutputs, bool createBlockedUtxos, string orderId) payable.function registerExternalAction(uint256 externalActionId, address externalActionAddress).function registerVerifiers(uint256[] verifierIds, address[] verifierAddresses).function removeVerifier(uint256 verifierId).function renounceOwnership() view.function renounceRole(bytes32 role, address account).function revokeRole(bytes32 role, address account).function rootHashExists(uint256 _root, uint256 _rootIndex) view returns (bool).function roots(uint256) view returns (uint256).function setHinkalHelper(address _hinkalHelper).function supportsInterface(bytes4 interfaceId) view returns (bool).function transact(uint256[2] a, uint256[2][2] b, uint256[2] c, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, bytes onChainEncryptedOutput, bool[] onChainCreation, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) stealthAddressStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData) circomData) payable.function transferOwnership(address newOwner).function tree(uint256) view returns (uint256).function verifierMap(uint256) view returns (address)`.split(`.`),hinkalHelperABI:[`constructor(address[] _initialRelays)`,`event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)`,`event RelayAdded(address relayAddress)`,`event RelayRemoved(address relayAddress)`,`function MAX_AMOUNT() view returns (int256)`,`function MAX_LEAVES_PD() view returns (uint256)`,`function addRelay(address _relayAddress)`,`function calculateRelayFee(uint256 balance, uint256 flatFee, uint256 variableRate) pure returns (uint256 relayFee)`,`function getRelayStore() view returns (address[])`,`function hinkalAddress() view returns (address)`,`function isRelayInList(address relayAddress) view returns (bool)`,`function owner() view returns (address)`,`function performHinkalChecks(tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, bytes onChainEncryptedOutput, bool[] onChainCreation, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) stealthAddressStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData) circomData, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, address sender) view returns (uint256[])`,`function performProoflessDepositChecks(address[] erc20Addresses, uint256[] amounts, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress)[] stealthAddressStructures, bytes[] onChainEncryptedOutputs) view`,`function performSideEffects(tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, bytes onChainEncryptedOutput, bool[] onChainCreation, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) stealthAddressStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData))`,`function relayStore(uint256) view returns (address)`,`function removeRelay(address _relayAddress)`,`function renounceOwnership()`,`function setHinkalAddress(address _hinkalAddress)`,`function transferOwnership(address newOwner)`],hinkalWrapperABI:[`constructor(address _hinkal)`,`event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner)`,`event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)`,`function acceptOwnership()`,`function onERC1155BatchReceived(address, address, uint256[], uint256[], bytes) pure returns (bytes4)`,`function onERC1155Received(address, address, uint256, uint256, bytes) pure returns (bytes4)`,`function onERC721Received(address, address, uint256, bytes) pure returns (bytes4)`,`function owner() view returns (address)`,`function pendingOwner() view returns (address)`,`function prooflessDeposit(address[] erc20Addresses, uint256[] amounts, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress)[] stealthAddressStructures, bytes[] onChainEncryptedOutputs, bool createBlockedUtxos, tuple(address feeRecipient, address feeToken, uint256 feeAmount) feeStructure, string orderId) payable`,`function renounceOwnership() view`,`function setHinkalAddress(address _hinkal)`,`function supportsInterface(bytes4 _interfaceId) view returns (bool)`,`function transferOwnership(address newOwner)`],depositOnChainUtxosExternalActionABI:[`constructor(address[] _allowedRecipients)`,`event BlockedUtxosCreated()`,`event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner)`,`event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)`,`function acceptOwnership()`,`function onERC1155BatchReceived(address, address, uint256[], uint256[], bytes) pure returns (bytes4)`,`function onERC1155Received(address, address, uint256, uint256, bytes) pure returns (bytes4)`,`function onERC721Received(address, address, uint256, bytes) pure returns (bytes4)`,`function owner() view returns (address)`,`function pendingOwner() view returns (address)`,`function renounceOwnership() view`,`function runAction(tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, bytes onChainEncryptedOutput, bool[] onChainCreation, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) stealthAddressStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData) circomData, int256[] deltaAmounts) returns (tuple(uint256 amount, address erc20Address, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) stealthAddressStructure, uint256 timeStamp)[] utxoSet)`,`function setAllowedRecipients(address[] recipients)`,`function supportsInterface(bytes4 _interfaceId) view returns (bool)`,`function transferOwnership(address newOwner)`]};exports.default=e;
|
|
1
|
+
var e={hinkalABI:`constructor(tuple(uint128 levels, address poseidon2, address poseidon4) constructorArgs, address _hinkalHelper, address _hinkalHelperManager).event BlockedUtxosCreated().event BufferReleased(address approvalTarget, address tokenAddress, uint256 inHinkalAddress).event ExternalActionRegistered(address externalActionAddress).event NewBufferEntry(address approvalTarget, address tokenAddress, uint256 amount, uint256 inHinkalAddress).event NewCommitment(uint256 commitment, int256 index, bytes encryptedOutput).event NewTransaction(address sender, uint256 timestamp, address erc20TokenAddress, int256 publicAmount).event NewUtxo(uint256 amount, address erc20Address, uint256 randomization, uint256 stealthAddress, uint256 timeStamp).event Nullified(uint256 nullifier).event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner).event OwnershipTransferred(address indexed previousOwner, address indexed newOwner).event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole).event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender).event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender).event VerifierRegistered(uint256 verifierId, address verifierAddress).event VerifierRemoved(uint256 verifierId).function DEFAULT_ADMIN_ROLE() view returns (bytes32).function HINKAL_HELPER_MANAGER() view returns (bytes32).function acceptOwnership().function buildVerifierId(tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, uint256 externalActionId) pure returns (uint256).function externalActionMap(uint256) view returns (address).function getRoleAdmin(bytes32 role) view returns (bytes32).function getRootHash() view returns (uint256).function grantRole(bytes32 role, address account).function hasRole(bytes32 role, address account) view returns (bool).function hash2(uint256 a, uint256 b) view returns (uint256 poseidonHash).function hash4(uint256 a0, uint256 a1, uint256 a2, uint256 a3) view returns (uint256 poseidonHash).function hinkalHelper() view returns (address).function logarithm2(uint256 x) pure returns (uint256 y).function m_index() view returns (uint256).function nullifiers(uint256) view returns (bool).function onERC1155BatchReceived(address, address, uint256[], uint256[], bytes) pure returns (bytes4).function onERC1155Received(address, address, uint256, uint256, bytes) pure returns (bytes4).function onERC721Received(address, address, uint256, bytes) pure returns (bytes4).function owner() view returns (address).function pendingOwner() view returns (address).function poseidon2() view returns (address).function poseidon4() view returns (address).function prooflessDeposit(address[] erc20Addresses, uint256[] amounts, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress)[] stealthAddressStructures, bytes[] onChainEncryptedOutputs, bool createBlockedUtxos, string orderId) payable.function registerExternalAction(uint256 externalActionId, address externalActionAddress).function registerVerifiers(uint256[] verifierIds, address[] verifierAddresses).function removeVerifier(uint256 verifierId).function renounceOwnership() view.function renounceRole(bytes32 role, address account).function revokeRole(bytes32 role, address account).function rootHashExists(uint256 _root, uint256 _rootIndex) view returns (bool).function roots(uint256) view returns (uint256).function setHinkalHelper(address _hinkalHelper).function supportsInterface(bytes4 interfaceId) view returns (bool).function transact(uint256[2] a, uint256[2][2] b, uint256[2] c, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, bytes onChainEncryptedOutput, bool[] onChainCreation, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) stealthAddressStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData) circomData) payable.function transferOwnership(address newOwner).function tree(uint256) view returns (uint256).function verifierMap(uint256) view returns (address)`.split(`.`),hinkalHelperABI:[`constructor(address[] _initialRelays)`,`event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)`,`event RelayAdded(address relayAddress)`,`event RelayRemoved(address relayAddress)`,`function MAX_AMOUNT() view returns (int256)`,`function MAX_LEAVES_PD() view returns (uint256)`,`function addRelay(address _relayAddress)`,`function calculateRelayFee(uint256 balance, uint256 flatFee, uint256 variableRate) pure returns (uint256 relayFee)`,`function getRelayStore() view returns (address[])`,`function hinkalAddress() view returns (address)`,`function isRelayInList(address relayAddress) view returns (bool)`,`function owner() view returns (address)`,`function performHinkalChecks(tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, bytes onChainEncryptedOutput, bool[] onChainCreation, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) stealthAddressStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData) circomData, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, address sender) view returns (uint256[])`,`function performProoflessDepositChecks(address[] erc20Addresses, uint256[] amounts, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress)[] stealthAddressStructures, bytes[] onChainEncryptedOutputs) view`,`function performSideEffects(tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, bytes onChainEncryptedOutput, bool[] onChainCreation, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) stealthAddressStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData))`,`function relayStore(uint256) view returns (address)`,`function removeRelay(address _relayAddress)`,`function renounceOwnership()`,`function setHinkalAddress(address _hinkalAddress)`,`function transferOwnership(address newOwner)`],hinkalWrapperABI:[`constructor(address _hinkal)`,`event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner)`,`event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)`,`function acceptOwnership()`,`function onERC1155BatchReceived(address, address, uint256[], uint256[], bytes) pure returns (bytes4)`,`function onERC1155Received(address, address, uint256, uint256, bytes) pure returns (bytes4)`,`function onERC721Received(address, address, uint256, bytes) pure returns (bytes4)`,`function owner() view returns (address)`,`function pendingOwner() view returns (address)`,`function prooflessDeposit(address[] erc20Addresses, uint256[] amounts, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress)[] stealthAddressStructures, bytes[] onChainEncryptedOutputs, bool createBlockedUtxos, tuple(address feeRecipient, address feeToken, uint256 feeAmount) feeStructure, string orderId) payable`,`function renounceOwnership() view`,`function setHinkalAddress(address _hinkal)`,`function supportsInterface(bytes4 _interfaceId) view returns (bool)`,`function transferOwnership(address newOwner)`],depositOnChainUtxosExternalActionABI:[`constructor(address[] _allowedRecipients)`,`event BlockedUtxosCreated()`,`event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner)`,`event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)`,`function acceptOwnership()`,`function onERC1155BatchReceived(address, address, uint256[], uint256[], bytes) pure returns (bytes4)`,`function onERC1155Received(address, address, uint256, uint256, bytes) pure returns (bytes4)`,`function onERC721Received(address, address, uint256, bytes) pure returns (bytes4)`,`function owner() view returns (address)`,`function pendingOwner() view returns (address)`,`function renounceOwnership() view`,`function runAction(tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, bytes onChainEncryptedOutput, bool[] onChainCreation, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) stealthAddressStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData) circomData, int256[] deltaAmounts) returns (tuple(uint256 amount, address erc20Address, tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) stealthAddressStructure, uint256 timeStamp)[] utxoSet)`,`function setAllowedRecipients(address[] recipients)`,`function supportsInterface(bytes4 _interfaceId) view returns (bool)`,`function transferOwnership(address newOwner)`],receiveVaultFactoryABI:`constructor().error BadOutputSignature().error BadRecoverySignature().error FeeTooHigh().error NotARelayer().error NothingToSettle().error RecoveryAlreadyUsed().error RecoveryExpired().error VaultExpired().error VaultInitCodeChanged().error ZeroHinkal().error ZeroOwner().event AdminChanged(address previousAdmin, address newAdmin).event BeaconUpgraded(address indexed beacon).event HinkalSet(address indexed hinkal).event Initialized(uint8 version).event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner).event OwnershipTransferred(address indexed previousOwner, address indexed newOwner).event ReceiveVaultRecovered(address indexed vault, address indexed token, address to, uint256 amount).event ReceiveVaultSettled(address indexed vault, address indexed token, uint256 depositAmount, uint256 relayFee).event Upgraded(address indexed implementation).function acceptOwnership().function hinkal() view returns (address).function hinkalHelper() view returns (address).function initialize(address initialOwner, address _hinkal).function outputDigest(address vault, bytes32 encryptedOutputHash) view returns (bytes32).function owner() view returns (address).function pendingOwner() view returns (address).function proxiableUUID() view returns (bytes32).function recover(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params, address token, address to, uint256 deadline, bytes signature).function recoveryDigest(address vault, address token, address to, uint256 deadline) view returns (bytes32).function recoveryUsed(bytes32 digest) view returns (bool).function renounceOwnership().function setHinkal(address _hinkal).function settle(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params, uint256 flatFee, uint256 variableRate, bytes encryptedOutput, bytes outputSignature).function transferOwnership(address newOwner).function upgradeTo(address newImplementation).function upgradeToAndCall(address newImplementation, bytes data) payable.function vaultAddressOf(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params) view returns (address).function vaultInitCodeHash() view returns (bytes32)`.split(`.`)};exports.default=e;
|
|
@@ -54,7 +54,8 @@ var e = {
|
|
|
54
54
|
"function setAllowedRecipients(address[] recipients)",
|
|
55
55
|
"function supportsInterface(bytes4 _interfaceId) view returns (bool)",
|
|
56
56
|
"function transferOwnership(address newOwner)"
|
|
57
|
-
]
|
|
57
|
+
],
|
|
58
|
+
receiveVaultFactoryABI: /* @__PURE__ */ "constructor().error BadOutputSignature().error BadRecoverySignature().error FeeTooHigh().error NotARelayer().error NothingToSettle().error RecoveryAlreadyUsed().error RecoveryExpired().error VaultExpired().error VaultInitCodeChanged().error ZeroHinkal().error ZeroOwner().event AdminChanged(address previousAdmin, address newAdmin).event BeaconUpgraded(address indexed beacon).event HinkalSet(address indexed hinkal).event Initialized(uint8 version).event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner).event OwnershipTransferred(address indexed previousOwner, address indexed newOwner).event ReceiveVaultRecovered(address indexed vault, address indexed token, address to, uint256 amount).event ReceiveVaultSettled(address indexed vault, address indexed token, uint256 depositAmount, uint256 relayFee).event Upgraded(address indexed implementation).function acceptOwnership().function hinkal() view returns (address).function hinkalHelper() view returns (address).function initialize(address initialOwner, address _hinkal).function outputDigest(address vault, bytes32 encryptedOutputHash) view returns (bytes32).function owner() view returns (address).function pendingOwner() view returns (address).function proxiableUUID() view returns (bytes32).function recover(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params, address token, address to, uint256 deadline, bytes signature).function recoveryDigest(address vault, address token, address to, uint256 deadline) view returns (bytes32).function recoveryUsed(bytes32 digest) view returns (bool).function renounceOwnership().function setHinkal(address _hinkal).function settle(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params, uint256 flatFee, uint256 variableRate, bytes encryptedOutput, bytes outputSignature).function transferOwnership(address newOwner).function upgradeTo(address newImplementation).function upgradeToAndCall(address newImplementation, bytes data) payable.function vaultAddressOf(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params) view returns (address).function vaultInitCodeHash() view returns (bytes32)".split(".")
|
|
58
59
|
};
|
|
59
60
|
//#endregion
|
|
60
61
|
export { e as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={hinkalABI:`constructor(tuple(uint128 levels) constructorArgs, address _hinkalHelper, address _hinkalHelperManager).event BlockedUtxosCreated().event ExternalActionRegistered(address externalActionAddress).event NewCommitment(uint256 commitment, int256 index, bytes encryptedOutput).event Nullified(uint256 nullifier).event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner).event OwnershipTransferred(address indexed previousOwner, address indexed newOwner).event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole).event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender).event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender).event VerifierRegistered(address verifierAddress).event VerifierRemoved(address verifierAddress).function DEFAULT_ADMIN_ROLE() view returns (bytes32).function HINKAL_HELPER_MANAGER() view returns (bytes32).function acceptOwnership().function buildVerifierId(tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, uint256 externalActionId) pure returns (uint256).function externalActionMap(uint256) view returns (address).function getRoleAdmin(bytes32 role) view returns (bytes32).function getRootHash() view returns (uint256).function grantRole(bytes32 role, address account).function hasRole(bytes32 role, address account) view returns (bool).function hinkalHelper() view returns (address).function m_index() view returns (uint256).function nullifiers(uint256) view returns (bool).function owner() view returns (address).function pendingOwner() view returns (address).function registerExternalAction(uint256 externalActionId, address externalActionAddress).function registerVerifiers(address[] verifierAddresses).function removeVerifier(address verifier).function renounceOwnership() view.function renounceRole(bytes32 role, address account).function revokeRole(bytes32 role, address account).function rootHashExists(uint256 _root, uint256 _rootIndex) view returns (bool).function roots(uint256) view returns (uint256).function setHinkalHelper(address _hinkalHelper).function supportsInterface(bytes4 interfaceId) view returns (bool).function transact(tuple(uint8 v, bytes32 r, bytes32 s) proofSignature, uint256[2] a, uint256[2][2] b, uint256[2] c, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256 newRootHash, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData, uint256 insertedLeafIndex, bool createBlockedUtxos) circomData) payable.function transferOwnership(address newOwner).function verifierMap(address) view returns (bool)`.split(`.`),hinkalHelperABI:[`constructor(address[] _initialRelays)`,`event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)`,`event RelayAdded(address relayAddress)`,`event RelayRemoved(address relayAddress)`,`function MAX_AMOUNT() view returns (int256)`,`function addRelay(address _relayAddress)`,`function calculateRelayFee(uint256 balance, uint256 flatFee, uint256 variableRate) pure returns (uint256 relayFee)`,`function getRelayStore() view returns (address[])`,`function hinkalAddress() view returns (address)`,`function isRelayInList(address relayAddress) view returns (bool)`,`function owner() view returns (address)`,`function performHinkalChecks(tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256 newRootHash, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData, uint256 insertedLeafIndex, bool createBlockedUtxos) circomData, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, address sender) view returns (uint256[])`,`function relayList(address) view returns (bool)`,`function relayStore(uint256) view returns (address)`,`function removeRelay(address _relayAddress)`,`function renounceOwnership()`,`function setHinkalAddress(address _hinkalAddress)`,`function transferOwnership(address newOwner)`]};exports.default=e;
|
|
1
|
+
var e={hinkalABI:`constructor(tuple(uint128 levels) constructorArgs, address _hinkalHelper, address _hinkalHelperManager).event BlockedUtxosCreated().event ExternalActionRegistered(address externalActionAddress).event NewCommitment(uint256 commitment, int256 index, bytes encryptedOutput).event Nullified(uint256 nullifier).event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner).event OwnershipTransferred(address indexed previousOwner, address indexed newOwner).event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole).event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender).event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender).event VerifierRegistered(address verifierAddress).event VerifierRemoved(address verifierAddress).function DEFAULT_ADMIN_ROLE() view returns (bytes32).function HINKAL_HELPER_MANAGER() view returns (bytes32).function acceptOwnership().function buildVerifierId(tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, uint256 externalActionId) pure returns (uint256).function externalActionMap(uint256) view returns (address).function getRoleAdmin(bytes32 role) view returns (bytes32).function getRootHash() view returns (uint256).function grantRole(bytes32 role, address account).function hasRole(bytes32 role, address account) view returns (bool).function hinkalHelper() view returns (address).function poseidon4() view returns (address).function m_index() view returns (uint256).function nullifiers(uint256) view returns (bool).function owner() view returns (address).function pendingOwner() view returns (address).function registerExternalAction(uint256 externalActionId, address externalActionAddress).function registerVerifiers(address[] verifierAddresses).function removeVerifier(address verifier).function renounceOwnership() view.function renounceRole(bytes32 role, address account).function revokeRole(bytes32 role, address account).function rootHashExists(uint256 _root, uint256 _rootIndex) view returns (bool).function roots(uint256) view returns (uint256).function setHinkalHelper(address _hinkalHelper).function supportsInterface(bytes4 interfaceId) view returns (bool).function transact(tuple(uint8 v, bytes32 r, bytes32 s) proofSignature, uint256[2] a, uint256[2][2] b, uint256[2] c, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256 newRootHash, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData, uint256 insertedLeafIndex, bool createBlockedUtxos) circomData) payable.function transferOwnership(address newOwner).function verifierMap(address) view returns (bool)`.split(`.`),hinkalHelperABI:[`constructor(address[] _initialRelays)`,`event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)`,`event RelayAdded(address relayAddress)`,`event RelayRemoved(address relayAddress)`,`function MAX_AMOUNT() view returns (int256)`,`function addRelay(address _relayAddress)`,`function calculateRelayFee(uint256 balance, uint256 flatFee, uint256 variableRate) pure returns (uint256 relayFee)`,`function getRelayStore() view returns (address[])`,`function hinkalAddress() view returns (address)`,`function isRelayInList(address relayAddress) view returns (bool)`,`function owner() view returns (address)`,`function performHinkalChecks(tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256 newRootHash, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData, uint256 insertedLeafIndex, bool createBlockedUtxos) circomData, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, address sender) view returns (uint256[])`,`function relayList(address) view returns (bool)`,`function relayStore(uint256) view returns (address)`,`function removeRelay(address _relayAddress)`,`function renounceOwnership()`,`function setHinkalAddress(address _hinkalAddress)`,`function transferOwnership(address newOwner)`],receiveVaultFactoryABI:`constructor().error BadRecoverySignature().error DepositMismatch().error FeeTooHigh().error NotARelayer().error NothingToSettle().error PartialSweep().error RecoveryAlreadyUsed().error RecoveryExpired().error VaultExpired().error VaultInitCodeChanged().error ZeroChainUid().error ZeroHinkal().error ZeroOwner().error ZeroPoseidon().event AdminChanged(address previousAdmin, address newAdmin).event BeaconUpgraded(address indexed beacon).event HinkalSet(address indexed hinkal).event Initialized(uint8 version).event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner).event OwnershipTransferred(address indexed previousOwner, address indexed newOwner).event ReceiveVaultRecovered(address indexed vault, address indexed token, address to, uint256 amount).event ReceiveVaultSettled(address indexed vault, address indexed token, uint256 depositAmount, uint256 relayFee).event Upgraded(address indexed implementation).function acceptOwnership().function chainUid() view returns (uint256).function hinkal() view returns (address).function hinkalHelper() view returns (address).function initialize(address initialOwner, address _hinkal, uint256 _chainUid, address _poseidon4).function owner() view returns (address).function pendingOwner() view returns (address).function poseidon4() view returns (address).function proxiableUUID() view returns (bytes32).function recover(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params, address token, address to, uint256 deadline, bytes signature).function recoveryDigest(address vault, address token, address to, uint256 deadline) view returns (bytes32).function recoveryUsed(bytes32 digest) view returns (bool).function renounceOwnership().function setHinkal(address _hinkal).function settle(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params, uint256 depositAmount, uint256 relayFee, tuple(tuple(uint8 v, bytes32 r, bytes32 s) proofSignature, uint256[2] a, uint256[2][2] b, uint256[2] c, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256 newRootHash, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData, uint256 insertedLeafIndex, bool createBlockedUtxos) circomData) proof).function transferOwnership(address newOwner).function upgradeTo(address newImplementation).function upgradeToAndCall(address newImplementation, bytes data) payable.function vaultAddressOf(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params) view returns (address).function vaultInitCodeHash() view returns (bytes32)`.split(`.`)};exports.default=e;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var e = {
|
|
2
|
-
hinkalABI: /* @__PURE__ */ "constructor(tuple(uint128 levels) constructorArgs, address _hinkalHelper, address _hinkalHelperManager).event BlockedUtxosCreated().event ExternalActionRegistered(address externalActionAddress).event NewCommitment(uint256 commitment, int256 index, bytes encryptedOutput).event Nullified(uint256 nullifier).event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner).event OwnershipTransferred(address indexed previousOwner, address indexed newOwner).event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole).event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender).event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender).event VerifierRegistered(address verifierAddress).event VerifierRemoved(address verifierAddress).function DEFAULT_ADMIN_ROLE() view returns (bytes32).function HINKAL_HELPER_MANAGER() view returns (bytes32).function acceptOwnership().function buildVerifierId(tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, uint256 externalActionId) pure returns (uint256).function externalActionMap(uint256) view returns (address).function getRoleAdmin(bytes32 role) view returns (bytes32).function getRootHash() view returns (uint256).function grantRole(bytes32 role, address account).function hasRole(bytes32 role, address account) view returns (bool).function hinkalHelper() view returns (address).function m_index() view returns (uint256).function nullifiers(uint256) view returns (bool).function owner() view returns (address).function pendingOwner() view returns (address).function registerExternalAction(uint256 externalActionId, address externalActionAddress).function registerVerifiers(address[] verifierAddresses).function removeVerifier(address verifier).function renounceOwnership() view.function renounceRole(bytes32 role, address account).function revokeRole(bytes32 role, address account).function rootHashExists(uint256 _root, uint256 _rootIndex) view returns (bool).function roots(uint256) view returns (uint256).function setHinkalHelper(address _hinkalHelper).function supportsInterface(bytes4 interfaceId) view returns (bool).function transact(tuple(uint8 v, bytes32 r, bytes32 s) proofSignature, uint256[2] a, uint256[2][2] b, uint256[2] c, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256 newRootHash, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData, uint256 insertedLeafIndex, bool createBlockedUtxos) circomData) payable.function transferOwnership(address newOwner).function verifierMap(address) view returns (bool)".split("."),
|
|
2
|
+
hinkalABI: /* @__PURE__ */ "constructor(tuple(uint128 levels) constructorArgs, address _hinkalHelper, address _hinkalHelperManager).event BlockedUtxosCreated().event ExternalActionRegistered(address externalActionAddress).event NewCommitment(uint256 commitment, int256 index, bytes encryptedOutput).event Nullified(uint256 nullifier).event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner).event OwnershipTransferred(address indexed previousOwner, address indexed newOwner).event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole).event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender).event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender).event VerifierRegistered(address verifierAddress).event VerifierRemoved(address verifierAddress).function DEFAULT_ADMIN_ROLE() view returns (bytes32).function HINKAL_HELPER_MANAGER() view returns (bytes32).function acceptOwnership().function buildVerifierId(tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, uint256 externalActionId) pure returns (uint256).function externalActionMap(uint256) view returns (address).function getRoleAdmin(bytes32 role) view returns (bytes32).function getRootHash() view returns (uint256).function grantRole(bytes32 role, address account).function hasRole(bytes32 role, address account) view returns (bool).function hinkalHelper() view returns (address).function poseidon4() view returns (address).function m_index() view returns (uint256).function nullifiers(uint256) view returns (bool).function owner() view returns (address).function pendingOwner() view returns (address).function registerExternalAction(uint256 externalActionId, address externalActionAddress).function registerVerifiers(address[] verifierAddresses).function removeVerifier(address verifier).function renounceOwnership() view.function renounceRole(bytes32 role, address account).function revokeRole(bytes32 role, address account).function rootHashExists(uint256 _root, uint256 _rootIndex) view returns (bool).function roots(uint256) view returns (uint256).function setHinkalHelper(address _hinkalHelper).function supportsInterface(bytes4 interfaceId) view returns (bool).function transact(tuple(uint8 v, bytes32 r, bytes32 s) proofSignature, uint256[2] a, uint256[2][2] b, uint256[2] c, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256 newRootHash, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData, uint256 insertedLeafIndex, bool createBlockedUtxos) circomData) payable.function transferOwnership(address newOwner).function verifierMap(address) view returns (bool)".split("."),
|
|
3
3
|
hinkalHelperABI: [
|
|
4
4
|
"constructor(address[] _initialRelays)",
|
|
5
5
|
"event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)",
|
|
@@ -19,7 +19,8 @@ var e = {
|
|
|
19
19
|
"function renounceOwnership()",
|
|
20
20
|
"function setHinkalAddress(address _hinkalAddress)",
|
|
21
21
|
"function transferOwnership(address newOwner)"
|
|
22
|
-
]
|
|
22
|
+
],
|
|
23
|
+
receiveVaultFactoryABI: /* @__PURE__ */ "constructor().error BadRecoverySignature().error DepositMismatch().error FeeTooHigh().error NotARelayer().error NothingToSettle().error PartialSweep().error RecoveryAlreadyUsed().error RecoveryExpired().error VaultExpired().error VaultInitCodeChanged().error ZeroChainUid().error ZeroHinkal().error ZeroOwner().error ZeroPoseidon().event AdminChanged(address previousAdmin, address newAdmin).event BeaconUpgraded(address indexed beacon).event HinkalSet(address indexed hinkal).event Initialized(uint8 version).event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner).event OwnershipTransferred(address indexed previousOwner, address indexed newOwner).event ReceiveVaultRecovered(address indexed vault, address indexed token, address to, uint256 amount).event ReceiveVaultSettled(address indexed vault, address indexed token, uint256 depositAmount, uint256 relayFee).event Upgraded(address indexed implementation).function acceptOwnership().function chainUid() view returns (uint256).function hinkal() view returns (address).function hinkalHelper() view returns (address).function initialize(address initialOwner, address _hinkal, uint256 _chainUid, address _poseidon4).function owner() view returns (address).function pendingOwner() view returns (address).function poseidon4() view returns (address).function proxiableUUID() view returns (bytes32).function recover(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params, address token, address to, uint256 deadline, bytes signature).function recoveryDigest(address vault, address token, address to, uint256 deadline) view returns (bytes32).function recoveryUsed(bytes32 digest) view returns (bool).function renounceOwnership().function setHinkal(address _hinkal).function settle(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params, uint256 depositAmount, uint256 relayFee, tuple(tuple(uint8 v, bytes32 r, bytes32 s) proofSignature, uint256[2] a, uint256[2][2] b, uint256[2] c, tuple(uint16 tokenNumber, uint16 nullifierAmount, uint16 outputAmount) dimensions, tuple(uint256 rootHashHinkal, uint256 rootHashHinkalIndex, address[] erc20TokenAddresses, int256[] amountChanges, uint256 newRootHash, uint256[][] inputNullifiers, uint256[][] outCommitments, bytes[][] encryptedOutputs, int256[] slippageValues, tuple(address feeToken, uint256 flatFee, uint256 variableRate) feeStructure, uint256 timeStamp, uint256 calldataHash, uint256 emporiumMessage, uint16 publicSignalCount, address relay, tuple(address externalAddress, uint256 externalActionId, bytes externalActionMetadata) externalActionData, tuple(address preHookContract, address postHookContract, bytes preHookMetadata, bytes postHookMetadata) hookData, address originalSender, bytes extraData, uint256 insertedLeafIndex, bool createBlockedUtxos) circomData) proof).function transferOwnership(address newOwner).function upgradeTo(address newImplementation).function upgradeToAndCall(address newImplementation, bytes data) payable.function vaultAddressOf(tuple(tuple(uint256 H0x, uint256 H0y, uint256 H1x, uint256 H1y, uint256 stealthAddress) recipient, address owner, address token, uint256 maxFlatFee, uint16 maxVariableRate, uint64 expiry) params) view returns (address).function vaultInitCodeHash() view returns (bytes32)".split(".")
|
|
23
24
|
};
|
|
24
25
|
//#endregion
|
|
25
26
|
export { e as default };
|