@reyaxyz/common 0.207.0 → 0.208.1

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.
@@ -1,5 +1,6 @@
1
1
  export * from './action';
2
2
  export { abi as CoreAbi } from './abis/CoreProxy.json';
3
+ export { abi as ErrorsAbi } from './abis/Errors.json';
3
4
  export { abi as MulticallAbi } from './abis/CustomMulticall3.json';
4
5
  export { abi as OracleAdaptersAbi } from './abis/OracleAdaptersProxy.json';
5
6
  export { abi as PeripheryAbi } from './abis/Periphery.json';
package/src/types.ts CHANGED
@@ -340,6 +340,14 @@ export type GetSocketBridgeTimeResult = {
340
340
  bridgeTimeInMS: number;
341
341
  };
342
342
 
343
+ export type GetSocketWithdrawMsgGasLimitParams = {
344
+ moneyInOutChainId: MoneyInOutChainId;
345
+ };
346
+
347
+ export type GetSocketWithdrawMsgGasLimitResult = {
348
+ msgGasLimit: bigint;
349
+ };
350
+
343
351
  export type SocketDepositFeesEntry = {
344
352
  moneyInOutChainId: MoneyInOutChainId;
345
353
  tokenName: TokenName;