@hinkal/common 0.0.49 → 0.0.50

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.
@@ -75,7 +75,6 @@ export declare class Hinkal<ConnectorType> implements IHinkal {
75
75
  actionPendleLP(erc20Addresses: string[], amountChanges: bigint[], pendleLPMetadata: PendleLPMetadata, gasTokenAddress?: string, onlyGasEstimate?: boolean): Promise<RelayerTransaction | bigint>;
76
76
  actionVolatile(erc20Addresses: string[], amountChanges: bigint[], volatileHelperData: VolatileHelperData, onlyGasEstimate?: boolean): Promise<RelayerTransaction | ContractTransaction | bigint>;
77
77
  actionStake(erc20Addresses: string[], amountChanges: bigint[], stakeMode: HinkalStakeMode, stakedTokenRecipient: string): Promise<ContractTransaction>;
78
- actionPrivateWallet(erc20Addresses: string[], amountChanges: bigint[], ops?: string[], walletNonce?: bigint, onlyGasEstimate?: boolean): Promise<RelayerTransaction | bigint>;
79
78
  getPendleLPClaimableParams(wlpTokenAddress: string, wlpTokenBalance: bigint): Promise<{
80
79
  amount: bigint;
81
80
  timestamp: string;
@@ -67,7 +67,6 @@ export interface IHinkal<ConnectorType = unknown> {
67
67
  actionPendle(erc20Addresses: string[], amountChanges: bigint[], pendleMetadata: PendleMetadata, gasTokenAddress?: string, onlyGasEstimate?: boolean): Promise<RelayerTransaction | ContractTransaction | bigint>;
68
68
  actionPendleLP(erc20Addresses: string[], amountChanges: bigint[], pendleLPMetadata: PendleLPMetadata, gasTokenAddress?: string, onlyGasEstimate?: boolean): Promise<RelayerTransaction | bigint>;
69
69
  actionVolatile(erc20Addresses: string[], amountChanges: bigint[], volatileHelperData: VolatileHelperData, onlyGasEstimate?: boolean): Promise<RelayerTransaction | ContractTransaction | bigint>;
70
- actionPrivateWallet(erc20Addresses: string[], amountChanges: bigint[], ops: string[], walletNonce: bigint | undefined, onlyGasEstimate: boolean): Promise<RelayerTransaction | bigint>;
71
70
  getPendleLPClaimableParams(wlpTokenAddress: string, wlpTokenBalance: bigint): Promise<{
72
71
  amount: bigint;
73
72
  timestamp: string;
@@ -8,5 +8,4 @@ export * from './hinkalDeposit';
8
8
  export * from './hinkalSwap';
9
9
  export * from './hinkalTransfer';
10
10
  export * from './hinkalWithdraw';
11
- export * from './hinkalPrivateWallet';
12
11
  export * from './resetMerkleTrees';
@@ -13,7 +13,6 @@ import { abi as USDRABI } from './USDR';
13
13
  import { abi as USDR3CRVABI } from './USDR3CRV';
14
14
  import { abi as USDTABI } from './USDT';
15
15
  import { abi as WETHABI } from './WETH';
16
- import { abi as ISwapRouterABI } from './ISwapRouter.json';
17
16
  import lidoStEthAbi from './LidoStEthAbi.json';
18
17
  import lidoStMaticAbi from './LidoStMaticAbi.json';
19
18
  import lidoWithdrawalQueueERC721Abi from './LidoWithdrawalQueueERC721Abi.json';
@@ -24,4 +23,4 @@ import { abi as transactionProverABI } from './transactionsProver.json';
24
23
  import { abi as BabABI } from './BabPassport.json';
25
24
  import { abi as GalxeABI } from './GalxePassport.json';
26
25
  import optimismGasPriceOracleAbi from './OptimismGasPriceOracle.json';
27
- export { CurveWrappedMainPoolABI, CurveReadingWrapperABI, quoterV2ABI, factoryABI, AmTokenABI, BeefyVaultABI, ERC20ABI, USDCABI, daiABI, USDRABI, USDR3CRVABI, USDTABI, WETHABI, BUSDABI, sanctionsListABI, lidoStEthAbi, lidoStMaticAbi, lidoWithdrawalQueueERC721Abi, lidoWstEthAbi, poLidoNftAbi, lidoStakeManagerAbi, transactionProverABI, BabABI, GalxeABI, optimismGasPriceOracleAbi, ISwapRouterABI };
26
+ export { CurveWrappedMainPoolABI, CurveReadingWrapperABI, quoterV2ABI, factoryABI, AmTokenABI, BeefyVaultABI, ERC20ABI, USDCABI, daiABI, USDRABI, USDR3CRVABI, USDTABI, WETHABI, BUSDABI, sanctionsListABI, lidoStEthAbi, lidoStMaticAbi, lidoWithdrawalQueueERC721Abi, lidoWstEthAbi, poLidoNftAbi, lidoStakeManagerAbi, transactionProverABI, BabABI, GalxeABI, optimismGasPriceOracleAbi, };
@@ -1,2 +1 @@
1
1
  export * from './emporium.helpers';
2
- export * from './opProducer';