@veil-cash/sdk 0.6.2 → 0.6.3
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 +7 -6
- package/SDK.md +18 -5
- package/dist/cli/index.cjs +227 -168
- package/dist/index.cjs +28 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +38 -1
- package/dist/index.d.ts +38 -1
- package/dist/index.js +28 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/veil/SKILL.md +6 -4
- package/skills/veil/reference.md +5 -5
- package/src/abi.ts +8 -0
- package/src/balance.ts +48 -0
- package/src/cli/commands/deposit.ts +61 -15
- package/src/index.ts +1 -0
package/dist/index.d.cts
CHANGED
|
@@ -818,6 +818,31 @@ declare function getQueueBalance(options: {
|
|
|
818
818
|
rpcUrl?: string;
|
|
819
819
|
onProgress?: ProgressCallback;
|
|
820
820
|
}): Promise<QueueBalanceResult>;
|
|
821
|
+
/**
|
|
822
|
+
* Get remaining daily free deposits for an address.
|
|
823
|
+
* Returns 0 if the queue contract has not been upgraded to V3 yet
|
|
824
|
+
* or if the daily free feature is disabled.
|
|
825
|
+
*
|
|
826
|
+
* @param options - Query options
|
|
827
|
+
* @param options.address - Depositor address to check
|
|
828
|
+
* @param options.pool - Pool identifier ('eth' or 'usdc', default: 'eth')
|
|
829
|
+
* @param options.rpcUrl - Optional RPC URL
|
|
830
|
+
* @returns Number of free deposits remaining today
|
|
831
|
+
*
|
|
832
|
+
* @example
|
|
833
|
+
* ```typescript
|
|
834
|
+
* const remaining = await getDailyFreeRemaining({
|
|
835
|
+
* address: '0x...',
|
|
836
|
+
* pool: 'eth',
|
|
837
|
+
* });
|
|
838
|
+
* console.log(`Free deposits left today: ${remaining}`);
|
|
839
|
+
* ```
|
|
840
|
+
*/
|
|
841
|
+
declare function getDailyFreeRemaining(options: {
|
|
842
|
+
address: `0x${string}`;
|
|
843
|
+
pool?: RelayPool;
|
|
844
|
+
rpcUrl?: string;
|
|
845
|
+
}): Promise<number>;
|
|
821
846
|
/**
|
|
822
847
|
* Get private balance from the Pool contract
|
|
823
848
|
* Decrypts all encrypted outputs, calculates nullifiers, and checks spent status
|
|
@@ -1648,6 +1673,18 @@ declare const QUEUE_ABI: readonly [{
|
|
|
1648
1673
|
}];
|
|
1649
1674
|
readonly stateMutability: "view";
|
|
1650
1675
|
readonly type: "function";
|
|
1676
|
+
}, {
|
|
1677
|
+
readonly inputs: readonly [{
|
|
1678
|
+
readonly name: "_depositor";
|
|
1679
|
+
readonly type: "address";
|
|
1680
|
+
}];
|
|
1681
|
+
readonly name: "getDailyFreeRemaining";
|
|
1682
|
+
readonly outputs: readonly [{
|
|
1683
|
+
readonly name: "remaining";
|
|
1684
|
+
readonly type: "uint256";
|
|
1685
|
+
}];
|
|
1686
|
+
readonly stateMutability: "view";
|
|
1687
|
+
readonly type: "function";
|
|
1651
1688
|
}];
|
|
1652
1689
|
/**
|
|
1653
1690
|
* ETH Pool Contract ABI
|
|
@@ -2779,4 +2816,4 @@ declare function getExtDataHash(extData: ExtDataInput): bigint;
|
|
|
2779
2816
|
*/
|
|
2780
2817
|
declare function shuffle<T>(array: T[]): T[];
|
|
2781
2818
|
|
|
2782
|
-
export { ADDRESSES, type BuildTransferProofOptions, type BuildWithdrawProofOptions, CIRCUIT_CONFIG, type DepositTxOptions, ENTRY_ABI, ERC20_ABI, type EncryptedMessage, type ExtData, type ExtDataInput, FIELD_SIZE, FORWARDER_ABI, FORWARDER_CONTRACT_VERSION, FORWARDER_FACTORY_ABI, Keypair, MAX_SUBACCOUNT_SLOTS, MERKLE_TREE_HEIGHT, type MessageSigner, type NetworkAddresses, POOL_ABI, POOL_CONFIG, type PendingDeposit, type PoolConfig, type PrepareTransactionParams, type PrivateBalanceResult, type ProgressCallback, type ProofArgs, type ProofBuildResult, type ProofInput, QUEUE_ABI, type QueueBalanceResult, type RegisterTxOptions, RelayError, type RelayErrorResponse, type RelayExtData, type RelayMetadata, type RelayPool, type RelayProofArgs, type RelayRequest, type RelayResponse, type RelayType, type SubaccountAsset, type SubaccountAssetBalance, type SubaccountBalances, type SubaccountDeployRequest, type SubaccountMergeOptions, type SubaccountMergeResult, type SubaccountPrivateBalanceStatus, type SubaccountPrivateBalances, type SubaccountQueueStatus, type SubaccountRecoveryResult, type SubaccountRelayResult, type SubaccountSlot, type SubaccountStatusResult, type SubaccountSweepRequest, type SubaccountWithdrawTypedData, type SubmitRelayOptions, type Token, type TransactionData, type TransactionResult, type TransferResult, Utxo, type UtxoInfo, type UtxoParams, type UtxoSelectionResult, VEIL_SIGNED_MESSAGE, type WithdrawResult, buildApproveUSDCTx, buildChangeDepositKeyTx, buildDepositETHTx, buildDepositTx, buildDepositUSDCTx, buildMerkleTree, buildRegisterTx, buildSubaccountRecoveryTx, buildSubaccountWithdrawTypedData, buildTransferProof, buildWithdrawProof, checkRecipientRegistration, checkRelayHealth, deploySubaccountForwarder, deriveSubaccountChildDepositKey, deriveSubaccountChildOwner, deriveSubaccountChildPrivateKey, deriveSubaccountSalt, deriveSubaccountSlot, findNextSubaccountWithdrawNonce, getAddresses, getExtDataHash, getForwarderFactoryAddress, getMerklePath, getPoolAddress, getPrivateBalance, getQueueAddress, getQueueBalance, getRelayInfo, getRelayUrl, getSubaccountPrivateBalance, getSubaccountStatus, isSubaccountForwarderDeployed, isSubaccountWithdrawNonceUsed, mergeSubaccount, mergeUtxos, packEncryptedMessage, poseidonHash, poseidonHash2, predictSubaccountForwarder, prepareTransaction, prove, randomBN, selectCircuit, selectUtxosForWithdraw, shuffle, signSubaccountWithdraw, submitRelay, sweepSubaccountForwarder, toBuffer, toFixedHex, transfer, unpackEncryptedMessage, withdraw };
|
|
2819
|
+
export { ADDRESSES, type BuildTransferProofOptions, type BuildWithdrawProofOptions, CIRCUIT_CONFIG, type DepositTxOptions, ENTRY_ABI, ERC20_ABI, type EncryptedMessage, type ExtData, type ExtDataInput, FIELD_SIZE, FORWARDER_ABI, FORWARDER_CONTRACT_VERSION, FORWARDER_FACTORY_ABI, Keypair, MAX_SUBACCOUNT_SLOTS, MERKLE_TREE_HEIGHT, type MessageSigner, type NetworkAddresses, POOL_ABI, POOL_CONFIG, type PendingDeposit, type PoolConfig, type PrepareTransactionParams, type PrivateBalanceResult, type ProgressCallback, type ProofArgs, type ProofBuildResult, type ProofInput, QUEUE_ABI, type QueueBalanceResult, type RegisterTxOptions, RelayError, type RelayErrorResponse, type RelayExtData, type RelayMetadata, type RelayPool, type RelayProofArgs, type RelayRequest, type RelayResponse, type RelayType, type SubaccountAsset, type SubaccountAssetBalance, type SubaccountBalances, type SubaccountDeployRequest, type SubaccountMergeOptions, type SubaccountMergeResult, type SubaccountPrivateBalanceStatus, type SubaccountPrivateBalances, type SubaccountQueueStatus, type SubaccountRecoveryResult, type SubaccountRelayResult, type SubaccountSlot, type SubaccountStatusResult, type SubaccountSweepRequest, type SubaccountWithdrawTypedData, type SubmitRelayOptions, type Token, type TransactionData, type TransactionResult, type TransferResult, Utxo, type UtxoInfo, type UtxoParams, type UtxoSelectionResult, VEIL_SIGNED_MESSAGE, type WithdrawResult, buildApproveUSDCTx, buildChangeDepositKeyTx, buildDepositETHTx, buildDepositTx, buildDepositUSDCTx, buildMerkleTree, buildRegisterTx, buildSubaccountRecoveryTx, buildSubaccountWithdrawTypedData, buildTransferProof, buildWithdrawProof, checkRecipientRegistration, checkRelayHealth, deploySubaccountForwarder, deriveSubaccountChildDepositKey, deriveSubaccountChildOwner, deriveSubaccountChildPrivateKey, deriveSubaccountSalt, deriveSubaccountSlot, findNextSubaccountWithdrawNonce, getAddresses, getDailyFreeRemaining, getExtDataHash, getForwarderFactoryAddress, getMerklePath, getPoolAddress, getPrivateBalance, getQueueAddress, getQueueBalance, getRelayInfo, getRelayUrl, getSubaccountPrivateBalance, getSubaccountStatus, isSubaccountForwarderDeployed, isSubaccountWithdrawNonceUsed, mergeSubaccount, mergeUtxos, packEncryptedMessage, poseidonHash, poseidonHash2, predictSubaccountForwarder, prepareTransaction, prove, randomBN, selectCircuit, selectUtxosForWithdraw, shuffle, signSubaccountWithdraw, submitRelay, sweepSubaccountForwarder, toBuffer, toFixedHex, transfer, unpackEncryptedMessage, withdraw };
|
package/dist/index.d.ts
CHANGED
|
@@ -818,6 +818,31 @@ declare function getQueueBalance(options: {
|
|
|
818
818
|
rpcUrl?: string;
|
|
819
819
|
onProgress?: ProgressCallback;
|
|
820
820
|
}): Promise<QueueBalanceResult>;
|
|
821
|
+
/**
|
|
822
|
+
* Get remaining daily free deposits for an address.
|
|
823
|
+
* Returns 0 if the queue contract has not been upgraded to V3 yet
|
|
824
|
+
* or if the daily free feature is disabled.
|
|
825
|
+
*
|
|
826
|
+
* @param options - Query options
|
|
827
|
+
* @param options.address - Depositor address to check
|
|
828
|
+
* @param options.pool - Pool identifier ('eth' or 'usdc', default: 'eth')
|
|
829
|
+
* @param options.rpcUrl - Optional RPC URL
|
|
830
|
+
* @returns Number of free deposits remaining today
|
|
831
|
+
*
|
|
832
|
+
* @example
|
|
833
|
+
* ```typescript
|
|
834
|
+
* const remaining = await getDailyFreeRemaining({
|
|
835
|
+
* address: '0x...',
|
|
836
|
+
* pool: 'eth',
|
|
837
|
+
* });
|
|
838
|
+
* console.log(`Free deposits left today: ${remaining}`);
|
|
839
|
+
* ```
|
|
840
|
+
*/
|
|
841
|
+
declare function getDailyFreeRemaining(options: {
|
|
842
|
+
address: `0x${string}`;
|
|
843
|
+
pool?: RelayPool;
|
|
844
|
+
rpcUrl?: string;
|
|
845
|
+
}): Promise<number>;
|
|
821
846
|
/**
|
|
822
847
|
* Get private balance from the Pool contract
|
|
823
848
|
* Decrypts all encrypted outputs, calculates nullifiers, and checks spent status
|
|
@@ -1648,6 +1673,18 @@ declare const QUEUE_ABI: readonly [{
|
|
|
1648
1673
|
}];
|
|
1649
1674
|
readonly stateMutability: "view";
|
|
1650
1675
|
readonly type: "function";
|
|
1676
|
+
}, {
|
|
1677
|
+
readonly inputs: readonly [{
|
|
1678
|
+
readonly name: "_depositor";
|
|
1679
|
+
readonly type: "address";
|
|
1680
|
+
}];
|
|
1681
|
+
readonly name: "getDailyFreeRemaining";
|
|
1682
|
+
readonly outputs: readonly [{
|
|
1683
|
+
readonly name: "remaining";
|
|
1684
|
+
readonly type: "uint256";
|
|
1685
|
+
}];
|
|
1686
|
+
readonly stateMutability: "view";
|
|
1687
|
+
readonly type: "function";
|
|
1651
1688
|
}];
|
|
1652
1689
|
/**
|
|
1653
1690
|
* ETH Pool Contract ABI
|
|
@@ -2779,4 +2816,4 @@ declare function getExtDataHash(extData: ExtDataInput): bigint;
|
|
|
2779
2816
|
*/
|
|
2780
2817
|
declare function shuffle<T>(array: T[]): T[];
|
|
2781
2818
|
|
|
2782
|
-
export { ADDRESSES, type BuildTransferProofOptions, type BuildWithdrawProofOptions, CIRCUIT_CONFIG, type DepositTxOptions, ENTRY_ABI, ERC20_ABI, type EncryptedMessage, type ExtData, type ExtDataInput, FIELD_SIZE, FORWARDER_ABI, FORWARDER_CONTRACT_VERSION, FORWARDER_FACTORY_ABI, Keypair, MAX_SUBACCOUNT_SLOTS, MERKLE_TREE_HEIGHT, type MessageSigner, type NetworkAddresses, POOL_ABI, POOL_CONFIG, type PendingDeposit, type PoolConfig, type PrepareTransactionParams, type PrivateBalanceResult, type ProgressCallback, type ProofArgs, type ProofBuildResult, type ProofInput, QUEUE_ABI, type QueueBalanceResult, type RegisterTxOptions, RelayError, type RelayErrorResponse, type RelayExtData, type RelayMetadata, type RelayPool, type RelayProofArgs, type RelayRequest, type RelayResponse, type RelayType, type SubaccountAsset, type SubaccountAssetBalance, type SubaccountBalances, type SubaccountDeployRequest, type SubaccountMergeOptions, type SubaccountMergeResult, type SubaccountPrivateBalanceStatus, type SubaccountPrivateBalances, type SubaccountQueueStatus, type SubaccountRecoveryResult, type SubaccountRelayResult, type SubaccountSlot, type SubaccountStatusResult, type SubaccountSweepRequest, type SubaccountWithdrawTypedData, type SubmitRelayOptions, type Token, type TransactionData, type TransactionResult, type TransferResult, Utxo, type UtxoInfo, type UtxoParams, type UtxoSelectionResult, VEIL_SIGNED_MESSAGE, type WithdrawResult, buildApproveUSDCTx, buildChangeDepositKeyTx, buildDepositETHTx, buildDepositTx, buildDepositUSDCTx, buildMerkleTree, buildRegisterTx, buildSubaccountRecoveryTx, buildSubaccountWithdrawTypedData, buildTransferProof, buildWithdrawProof, checkRecipientRegistration, checkRelayHealth, deploySubaccountForwarder, deriveSubaccountChildDepositKey, deriveSubaccountChildOwner, deriveSubaccountChildPrivateKey, deriveSubaccountSalt, deriveSubaccountSlot, findNextSubaccountWithdrawNonce, getAddresses, getExtDataHash, getForwarderFactoryAddress, getMerklePath, getPoolAddress, getPrivateBalance, getQueueAddress, getQueueBalance, getRelayInfo, getRelayUrl, getSubaccountPrivateBalance, getSubaccountStatus, isSubaccountForwarderDeployed, isSubaccountWithdrawNonceUsed, mergeSubaccount, mergeUtxos, packEncryptedMessage, poseidonHash, poseidonHash2, predictSubaccountForwarder, prepareTransaction, prove, randomBN, selectCircuit, selectUtxosForWithdraw, shuffle, signSubaccountWithdraw, submitRelay, sweepSubaccountForwarder, toBuffer, toFixedHex, transfer, unpackEncryptedMessage, withdraw };
|
|
2819
|
+
export { ADDRESSES, type BuildTransferProofOptions, type BuildWithdrawProofOptions, CIRCUIT_CONFIG, type DepositTxOptions, ENTRY_ABI, ERC20_ABI, type EncryptedMessage, type ExtData, type ExtDataInput, FIELD_SIZE, FORWARDER_ABI, FORWARDER_CONTRACT_VERSION, FORWARDER_FACTORY_ABI, Keypair, MAX_SUBACCOUNT_SLOTS, MERKLE_TREE_HEIGHT, type MessageSigner, type NetworkAddresses, POOL_ABI, POOL_CONFIG, type PendingDeposit, type PoolConfig, type PrepareTransactionParams, type PrivateBalanceResult, type ProgressCallback, type ProofArgs, type ProofBuildResult, type ProofInput, QUEUE_ABI, type QueueBalanceResult, type RegisterTxOptions, RelayError, type RelayErrorResponse, type RelayExtData, type RelayMetadata, type RelayPool, type RelayProofArgs, type RelayRequest, type RelayResponse, type RelayType, type SubaccountAsset, type SubaccountAssetBalance, type SubaccountBalances, type SubaccountDeployRequest, type SubaccountMergeOptions, type SubaccountMergeResult, type SubaccountPrivateBalanceStatus, type SubaccountPrivateBalances, type SubaccountQueueStatus, type SubaccountRecoveryResult, type SubaccountRelayResult, type SubaccountSlot, type SubaccountStatusResult, type SubaccountSweepRequest, type SubaccountWithdrawTypedData, type SubmitRelayOptions, type Token, type TransactionData, type TransactionResult, type TransferResult, Utxo, type UtxoInfo, type UtxoParams, type UtxoSelectionResult, VEIL_SIGNED_MESSAGE, type WithdrawResult, buildApproveUSDCTx, buildChangeDepositKeyTx, buildDepositETHTx, buildDepositTx, buildDepositUSDCTx, buildMerkleTree, buildRegisterTx, buildSubaccountRecoveryTx, buildSubaccountWithdrawTypedData, buildTransferProof, buildWithdrawProof, checkRecipientRegistration, checkRelayHealth, deploySubaccountForwarder, deriveSubaccountChildDepositKey, deriveSubaccountChildOwner, deriveSubaccountChildPrivateKey, deriveSubaccountSalt, deriveSubaccountSlot, findNextSubaccountWithdrawNonce, getAddresses, getDailyFreeRemaining, getExtDataHash, getForwarderFactoryAddress, getMerklePath, getPoolAddress, getPrivateBalance, getQueueAddress, getQueueBalance, getRelayInfo, getRelayUrl, getSubaccountPrivateBalance, getSubaccountStatus, isSubaccountForwarderDeployed, isSubaccountWithdrawNonceUsed, mergeSubaccount, mergeUtxos, packEncryptedMessage, poseidonHash, poseidonHash2, predictSubaccountForwarder, prepareTransaction, prove, randomBN, selectCircuit, selectUtxosForWithdraw, shuffle, signSubaccountWithdraw, submitRelay, sweepSubaccountForwarder, toBuffer, toFixedHex, transfer, unpackEncryptedMessage, withdraw };
|
package/dist/index.js
CHANGED
|
@@ -597,6 +597,14 @@ var QUEUE_ABI = [
|
|
|
597
597
|
outputs: [{ name: "count", type: "uint256" }],
|
|
598
598
|
stateMutability: "view",
|
|
599
599
|
type: "function"
|
|
600
|
+
},
|
|
601
|
+
// Get remaining daily free deposits for an address (V3+)
|
|
602
|
+
{
|
|
603
|
+
inputs: [{ name: "_depositor", type: "address" }],
|
|
604
|
+
name: "getDailyFreeRemaining",
|
|
605
|
+
outputs: [{ name: "remaining", type: "uint256" }],
|
|
606
|
+
stateMutability: "view",
|
|
607
|
+
type: "function"
|
|
600
608
|
}
|
|
601
609
|
];
|
|
602
610
|
var POOL_ABI = [
|
|
@@ -1314,6 +1322,25 @@ async function getQueueBalance(options) {
|
|
|
1314
1322
|
pendingCount: pendingDeposits.length
|
|
1315
1323
|
};
|
|
1316
1324
|
}
|
|
1325
|
+
async function getDailyFreeRemaining(options) {
|
|
1326
|
+
const { address, pool = "eth", rpcUrl } = options;
|
|
1327
|
+
const queueAddress = getQueueAddress(pool);
|
|
1328
|
+
const publicClient = createPublicClient({
|
|
1329
|
+
chain: base,
|
|
1330
|
+
transport: http(rpcUrl)
|
|
1331
|
+
});
|
|
1332
|
+
try {
|
|
1333
|
+
const remaining = await publicClient.readContract({
|
|
1334
|
+
address: queueAddress,
|
|
1335
|
+
abi: QUEUE_ABI,
|
|
1336
|
+
functionName: "getDailyFreeRemaining",
|
|
1337
|
+
args: [address]
|
|
1338
|
+
});
|
|
1339
|
+
return Number(remaining);
|
|
1340
|
+
} catch {
|
|
1341
|
+
return 0;
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1317
1344
|
async function getPrivateBalance(options) {
|
|
1318
1345
|
const { keypair, pool = "eth", rpcUrl, onProgress } = options;
|
|
1319
1346
|
const poolAddress = getPoolAddress(pool);
|
|
@@ -2654,6 +2681,6 @@ async function mergeSubaccount(options) {
|
|
|
2654
2681
|
};
|
|
2655
2682
|
}
|
|
2656
2683
|
|
|
2657
|
-
export { ADDRESSES, CIRCUIT_CONFIG, ENTRY_ABI, ERC20_ABI, FIELD_SIZE, FORWARDER_ABI, FORWARDER_CONTRACT_VERSION, FORWARDER_FACTORY_ABI, Keypair, MAX_SUBACCOUNT_SLOTS, MERKLE_TREE_HEIGHT, POOL_ABI, POOL_CONFIG, QUEUE_ABI, RelayError, Utxo, VEIL_SIGNED_MESSAGE, buildApproveUSDCTx, buildChangeDepositKeyTx, buildDepositETHTx, buildDepositTx, buildDepositUSDCTx, buildMerkleTree, buildRegisterTx, buildSubaccountRecoveryTx, buildSubaccountWithdrawTypedData, buildTransferProof, buildWithdrawProof, checkRecipientRegistration, checkRelayHealth, deploySubaccountForwarder, deriveSubaccountChildDepositKey, deriveSubaccountChildOwner, deriveSubaccountChildPrivateKey, deriveSubaccountSalt, deriveSubaccountSlot, findNextSubaccountWithdrawNonce, getAddresses, getExtDataHash, getForwarderFactoryAddress, getMerklePath, getPoolAddress, getPrivateBalance, getQueueAddress, getQueueBalance, getRelayInfo, getRelayUrl, getSubaccountPrivateBalance, getSubaccountStatus, isSubaccountForwarderDeployed, isSubaccountWithdrawNonceUsed, mergeSubaccount, mergeUtxos, packEncryptedMessage, poseidonHash, poseidonHash2, predictSubaccountForwarder, prepareTransaction, prove, randomBN, selectCircuit, selectUtxosForWithdraw, shuffle, signSubaccountWithdraw, submitRelay, sweepSubaccountForwarder, toBuffer, toFixedHex, transfer, unpackEncryptedMessage, withdraw };
|
|
2684
|
+
export { ADDRESSES, CIRCUIT_CONFIG, ENTRY_ABI, ERC20_ABI, FIELD_SIZE, FORWARDER_ABI, FORWARDER_CONTRACT_VERSION, FORWARDER_FACTORY_ABI, Keypair, MAX_SUBACCOUNT_SLOTS, MERKLE_TREE_HEIGHT, POOL_ABI, POOL_CONFIG, QUEUE_ABI, RelayError, Utxo, VEIL_SIGNED_MESSAGE, buildApproveUSDCTx, buildChangeDepositKeyTx, buildDepositETHTx, buildDepositTx, buildDepositUSDCTx, buildMerkleTree, buildRegisterTx, buildSubaccountRecoveryTx, buildSubaccountWithdrawTypedData, buildTransferProof, buildWithdrawProof, checkRecipientRegistration, checkRelayHealth, deploySubaccountForwarder, deriveSubaccountChildDepositKey, deriveSubaccountChildOwner, deriveSubaccountChildPrivateKey, deriveSubaccountSalt, deriveSubaccountSlot, findNextSubaccountWithdrawNonce, getAddresses, getDailyFreeRemaining, getExtDataHash, getForwarderFactoryAddress, getMerklePath, getPoolAddress, getPrivateBalance, getQueueAddress, getQueueBalance, getRelayInfo, getRelayUrl, getSubaccountPrivateBalance, getSubaccountStatus, isSubaccountForwarderDeployed, isSubaccountWithdrawNonceUsed, mergeSubaccount, mergeUtxos, packEncryptedMessage, poseidonHash, poseidonHash2, predictSubaccountForwarder, prepareTransaction, prove, randomBN, selectCircuit, selectUtxosForWithdraw, shuffle, signSubaccountWithdraw, submitRelay, sweepSubaccountForwarder, toBuffer, toFixedHex, transfer, unpackEncryptedMessage, withdraw };
|
|
2658
2685
|
//# sourceMappingURL=index.js.map
|
|
2659
2686
|
//# sourceMappingURL=index.js.map
|