@augustdigital/sdk 1.5.1-alpha → 1.5.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.
package/README.md CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  This repo serves as the JS SDK powering the August Digital ecosystem that can easily be used in your web app.
4
4
 
5
- #### In progress
5
+ #### In progress
package/lib/index.d.ts CHANGED
@@ -4,13 +4,19 @@ export * from '@augustdigital/abis';
4
4
  export declare const POOL_ADDRESSES: {
5
5
  10: {};
6
6
  42161: {};
7
- 8453: {};
7
+ 8453: {
8
+ lBTC: string;
9
+ };
8
10
  137: {};
9
- 43114: {};
11
+ 43114: {
12
+ aUSD: string;
13
+ };
10
14
  1: {
11
15
  rsETH: string;
12
16
  upUSD: string;
13
17
  cbBTC: string;
18
+ lBTC: string;
19
+ upUSDC: string;
14
20
  };
15
21
  };
16
22
  import { AugustSDK } from './main';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augustdigital/sdk",
3
- "version": "1.5.1-alpha",
3
+ "version": "1.5.1",
4
4
  "main": "lib/index.js",
5
5
  "keywords": [
6
6
  "augustdigital",
@@ -12,6 +12,11 @@
12
12
  "author": "August Digital",
13
13
  "license": "MIT",
14
14
  "description": "JS SDK powering the August Digital ecosystem.",
15
+ "lint-staged": {
16
+ "*.{json,md,html,js,jsx,ts,tsx}": [
17
+ "pnpm format"
18
+ ]
19
+ },
15
20
  "files": [
16
21
  "lib"
17
22
  ],
@@ -20,14 +25,22 @@
20
25
  },
21
26
  "dependencies": {
22
27
  "ethers": "^6.13.1",
23
- "@augustdigital/abis": "^1.5.1-alpha",
24
- "@augustdigital/utils": "^1.5.1-alpha",
25
- "@augustdigital/pools": "^1.5.1-alpha",
26
- "@augustdigital/types": "^1.5.1-alpha"
28
+ "upshift-earn-app": "link:/Users/angellolazar/Desktop/dev/august/upshift-app",
29
+ "@augustdigital/abis": "^1.5.1",
30
+ "@augustdigital/pools": "^1.5.1",
31
+ "@augustdigital/types": "^1.5.1",
32
+ "@augustdigital/utils": "^1.5.1"
33
+ },
34
+ "devDependencies": {
35
+ "husky": "^9.0.11",
36
+ "lint-staged": "^15.2.10",
37
+ "prettier": "^3.3.2"
27
38
  },
28
39
  "scripts": {
29
40
  "build": "tsc",
30
41
  "test": "pnpm build && cross-env node dist/test",
31
- "clean": "rm -rf ./lib"
42
+ "clean": "rm -rf ./lib",
43
+ "format": "pnpm prettier '**/*.{json,yaml,ts,md}' --write",
44
+ "lint-sdk": "lint-staged"
32
45
  }
33
46
  }