Skip to content

Commit 05e2014

Browse files
v4.0.0 (#211)
* spot subgraph update (#207) * Removed fixed per-tranche mint cap (#206) * updated per-tranche mint cap * removed redundant constant * added dr to the spot and vault interface * added mintedSupplyPerTranche cleanup * updated rounding * updated unit test * renamed constants in rollover vault to keep consistant with perp * Bill broker (#203) * bill broker * BB Internal audit fixes (#210) * internal audit fixes * code review fixes * Update spot-vaults/contracts/_interfaces/BillBrokerErrors.sol Co-authored-by: Brandon Iles <brandon@fragments.org> --------- Co-authored-by: Brandon Iles <brandon@fragments.org> --------- Co-authored-by: Brandon Iles <brandon@fragments.org> * updated yarn lock * bumped up ci version --------- Co-authored-by: Brandon Iles <brandon@fragments.org> * ci config update * Peck audit changes (#212) * pve001 * pve002 * using msg.sender instead of _msgSender * Perp upgrade and bill-broker deployment (#213) * perp min-cap upgrade deployed to testnet * mock contracts for testnet * tasks to interact with bb * oz testnet deployment * updated yarn lock * removed todo comment * upgraded perp on mainnet * bb mainnet deployment * minor task updates * Delete spot-contracts/notes.txt deleted unused file --------- Co-authored-by: Brandon Iles <brandon@fragments.org>
1 parent c0a9819 commit 05e2014

91 files changed

Lines changed: 13911 additions & 1775 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/nightly.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
node-version: [16.x]
14+
node-version: [20.x]
1515
os: [ubuntu-latest]
1616

1717
steps:
@@ -34,3 +34,12 @@ jobs:
3434
with:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}
3636
path-to-lcov: "./spot-contracts/coverage/lcov.info"
37+
38+
- name: spot-vaults run coverage
39+
run: yarn workspace @ampleforthorg/spot-vaults run coverage
40+
41+
- name: spot-vaults report coverage
42+
uses: coverallsapp/github-action@v2.2.3
43+
with:
44+
github-token: ${{ secrets.GITHUB_TOKEN }}
45+
path-to-lcov: "./spot-vaults/coverage/lcov.info"

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@ on:
44
push:
55
branches: [main]
66
pull_request:
7-
branches: [main]
7+
branches: [main,dev]
88

99
jobs:
1010
test:
1111
runs-on: ${{ matrix.os }}
1212

1313
strategy:
14+
fail-fast: true
1415
matrix:
15-
node-version: [16.x]
16+
node-version: [20.x]
1617
os: [ubuntu-latest]
1718

1819
steps:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16
1+
20

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
"packageManager": "yarn@3.2.1",
99
"workspaces": [
1010
"spot-contracts",
11-
"spot-subgraph"
11+
"spot-vaults",
12+
"spot-subgraph",
13+
"spot-staking-subgraph"
1214
]
1315
}

0 commit comments

Comments
 (0)