Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Gearbox-protocol/sdk-gov
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmikko committed Aug 13, 2023
2 parents f93fea7 + 8032618 commit 83e1d3c
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
lib
src/types
*.d.ts
*.d.ts
src/dev/
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
lib
src/types
README.md
README.md
src/dev
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "1.0.0",
"description": "Gearbox Governance SDK",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"contracts"
],
"scripts": {
"clean": "rm -rf lib",
"build": "tsc --p tsconfig.build.json",
Expand Down
12 changes: 12 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export * from "./state/contractsRegister";
export * from "./state/core";
export * from "./state/creditManagerV3Config";
export * from "./state/gaugeV3";
export * from "./state/iConfigurator";
export * from "./state/linearIRM";
export * from "./state/poolQuotaKeeperV3";
export * from "./state/poolV3";
export * from "./state/poolV3Core";
export * from "./state/priceOracleV3";
export * from "./state/updatedValue";
export * from "./tx-builders/index";
2 changes: 2 additions & 0 deletions src/tx-builders/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from "./credit-configurator/credit-configurator-v2";
export * from "./price-oracle/price-oracle";
2 changes: 1 addition & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": "./tsconfig.json",
"exclude": ["**/*.spec.ts"]
"exclude": ["**/*.spec.ts", "./src/dev"]
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
"outDir": "./lib/"
},
"include": ["src", "scripts"],
"exclude": ["node_modules", "lib"]
"exclude": ["node_modules", "lib", "src/dev"]
}

0 comments on commit 83e1d3c

Please sign in to comment.