Skip to content

Commit

Permalink
Merge pull request #356 from balancer-labs/develop
Browse files Browse the repository at this point in the history
Release 4.1.1-beta.0
  • Loading branch information
John Grant authored Feb 1, 2023
2 parents 5f6f9df + 0a0b7b9 commit 2ab5f8f
Show file tree
Hide file tree
Showing 27 changed files with 3,332 additions and 144 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
- name: Compile
run: yarn build
- name: Run node in background for integration tests
run: npx hardhat --tsconfig tsconfig.testing.json node --hostname 127.0.0.1 --fork https://mainnet.infura.io/v3/${{ secrets.INFURA }} &
- name: Test
run: yarn test
env:
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@balancer-labs/sor",
"version": "4.1.0-beta.0",
"version": "4.1.1-beta.0",
"license": "GPL-3.0-only",
"main": "dist/index.js",
"module": "dist/index.esm.js",
Expand All @@ -9,6 +9,8 @@
"build": "rollup -c",
"prepack": "yarn build",
"test": "TS_NODE_PROJECT='tsconfig.testing.json' nyc mocha -r ts-node/register test/*.spec.ts --timeout 20000",
"test:only": "TS_NODE_PROJECT='tsconfig.testing.json' npx mocha -r ts-node/register --timeout 20000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./src ./test --ext .ts --max-warnings 0",
"node": "npx hardhat node --tsconfig tsconfig.testing.json --fork $(grep ALCHEMY_URL .env | cut -d '=' -f2) --fork-block-number 14828550"
},
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export { WeightedPool } from './pools/weightedPool/weightedPool';
export { StablePool } from './pools/stablePool/stablePool';
export { MetaStablePool } from './pools/metaStablePool/metaStablePool';
export { PhantomStablePool } from './pools/phantomStablePool/phantomStablePool';
export { ComposableStablePool } from './pools/composableStable/composableStablePool';
export { LinearPool } from './pools/linearPool/linearPool';
export { getSpotPriceAfterSwapForPath } from './router/helpersClass';
export * as WeightedMaths from './pools/weightedPool/weightedMath';
Expand Down
Loading

0 comments on commit 2ab5f8f

Please sign in to comment.