@bouncetech/contracts 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +15 -14
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1,19 +1,20 @@
1
+ export type Address = `0x${string}`;
1
2
  export declare const ALL_ADDRESSES: {
2
- Factory: string;
3
- GlobalStorage: string;
4
- GlobalStorageHelper: string;
5
- HyperliquidHandler: string;
6
- LeveragedTokenHelper: string;
7
- LeveragedTokenImplementation: string;
8
- Referrals: string;
3
+ Factory: Address;
4
+ GlobalStorage: Address;
5
+ GlobalStorageHelper: Address;
6
+ HyperliquidHandler: Address;
7
+ LeveragedTokenHelper: Address;
8
+ LeveragedTokenImplementation: Address;
9
+ Referrals: Address;
9
10
  };
10
- export declare const FACTORY_ADDRESS: string;
11
- export declare const GLOBAL_STORAGE_ADDRESS: string;
12
- export declare const GLOBAL_STORAGE_HELPER_ADDRESS: string;
13
- export declare const HYPERLIQUID_HANDLER_ADDRESS: string;
14
- export declare const LEVERAGED_TOKEN_HELPER_ADDRESS: string;
15
- export declare const LEVERAGED_TOKEN_IMPLEMENTATION_ADDRESS: string;
16
- export declare const REFERRALS_ADDRESS: string;
11
+ export declare const FACTORY_ADDRESS: `0x${string}`;
12
+ export declare const GLOBAL_STORAGE_ADDRESS: `0x${string}`;
13
+ export declare const GLOBAL_STORAGE_HELPER_ADDRESS: `0x${string}`;
14
+ export declare const HYPERLIQUID_HANDLER_ADDRESS: `0x${string}`;
15
+ export declare const LEVERAGED_TOKEN_HELPER_ADDRESS: `0x${string}`;
16
+ export declare const LEVERAGED_TOKEN_IMPLEMENTATION_ADDRESS: `0x${string}`;
17
+ export declare const REFERRALS_ADDRESS: `0x${string}`;
17
18
  export declare const LEVERAGED_TOKEN_ABI: {
18
19
  type: string;
19
20
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bouncetech/contracts",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Smart contract addresses and ABIs for Bounce Tech - DeFi Leveraged Token Protocol on HyperEVM",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",