hermes-swap 0.1.6 → 0.1.7

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.
@@ -136,7 +136,8 @@ export declare enum BridgeType {
136
136
  CCIPBRIDGE = "ccip_bridge",
137
137
  WORMHOLEBRIDGE = "wormhole_bridge",
138
138
  WORMHOLENTTBRIDGE = "wormhole_ntt_bridge",
139
- ACROSSBRIDGE = "across_bridge"
139
+ ACROSSBRIDGE = "across_bridge",
140
+ FRAXTALBRIDGE = "fraxtal_bridge"
140
141
  }
141
142
  export declare enum ChainNameEnum {
142
143
  ETH = "ETH",// Ethereum Mainnet
@@ -388,6 +389,7 @@ export declare const AddressConst: {
388
389
  eth: string;
389
390
  sonic: string;
390
391
  etherlink: string;
392
+ fraxtal: string;
391
393
  };
392
394
  link: {
393
395
  eth: string;
package/dist/cjs/types.js CHANGED
@@ -75,6 +75,7 @@ var BridgeType = /* @__PURE__ */ ((BridgeType2) => {
75
75
  BridgeType2["WORMHOLEBRIDGE"] = "wormhole_bridge";
76
76
  BridgeType2["WORMHOLENTTBRIDGE"] = "wormhole_ntt_bridge";
77
77
  BridgeType2["ACROSSBRIDGE"] = "across_bridge";
78
+ BridgeType2["FRAXTALBRIDGE"] = "fraxtal_bridge";
78
79
  return BridgeType2;
79
80
  })(BridgeType || {});
80
81
  var ChainNameEnum = /* @__PURE__ */ ((ChainNameEnum2) => {
@@ -323,7 +324,8 @@ var AddressConst = {
323
324
  arb: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
324
325
  eth: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
325
326
  sonic: "0x29219dd400f2Bf60E5a23d13Be72B486D4038894",
326
- etherlink: "0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9"
327
+ etherlink: "0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9",
328
+ fraxtal: "0xDcc0F2D8F90FDe85b10aC1c8Ab57dc0AE946A543"
327
329
  },
328
330
  link: {
329
331
  eth: "0x514910771AF9Ca656af840dff83E8264EcF986CA"
@@ -136,7 +136,8 @@ export declare enum BridgeType {
136
136
  CCIPBRIDGE = "ccip_bridge",
137
137
  WORMHOLEBRIDGE = "wormhole_bridge",
138
138
  WORMHOLENTTBRIDGE = "wormhole_ntt_bridge",
139
- ACROSSBRIDGE = "across_bridge"
139
+ ACROSSBRIDGE = "across_bridge",
140
+ FRAXTALBRIDGE = "fraxtal_bridge"
140
141
  }
141
142
  export declare enum ChainNameEnum {
142
143
  ETH = "ETH",// Ethereum Mainnet
@@ -388,6 +389,7 @@ export declare const AddressConst: {
388
389
  eth: string;
389
390
  sonic: string;
390
391
  etherlink: string;
392
+ fraxtal: string;
391
393
  };
392
394
  link: {
393
395
  eth: string;
package/dist/esm/types.js CHANGED
@@ -48,6 +48,7 @@ export var BridgeType = /*#__PURE__*/function (BridgeType) {
48
48
  BridgeType["WORMHOLEBRIDGE"] = "wormhole_bridge";
49
49
  BridgeType["WORMHOLENTTBRIDGE"] = "wormhole_ntt_bridge";
50
50
  BridgeType["ACROSSBRIDGE"] = "across_bridge";
51
+ BridgeType["FRAXTALBRIDGE"] = "fraxtal_bridge";
51
52
  return BridgeType;
52
53
  }({});
53
54
  export var ChainNameEnum = /*#__PURE__*/function (ChainNameEnum) {
@@ -296,7 +297,8 @@ export var AddressConst = {
296
297
  arb: '0xaf88d065e77c8cC2239327C5EDb3A432268e5831',
297
298
  eth: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
298
299
  sonic: '0x29219dd400f2Bf60E5a23d13Be72B486D4038894',
299
- etherlink: '0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9'
300
+ etherlink: '0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9',
301
+ fraxtal: '0xDcc0F2D8F90FDe85b10aC1c8Ab57dc0AE946A543'
300
302
  },
301
303
  link: {
302
304
  eth: '0x514910771AF9Ca656af840dff83E8264EcF986CA'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hermes-swap",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "A TypeScript utility library for swap and bridge",
5
5
  "type": "module",
6
6
  "main": "dist/esm/index.js",