-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tmigone/allow-early-closure
- Loading branch information
Showing
461 changed files
with
50,229 additions
and
11,391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "restricted", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ runs: | |
run: yarn --immutable | ||
- name: Build | ||
shell: bash | ||
run: yarn build | ||
run: yarn build || yarn build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: CI - packages/token-distribution | ||
|
||
env: | ||
CI: true | ||
|
||
on: | ||
push: | ||
branches: "*" | ||
paths: | ||
- packages/token-distribution/** | ||
pull_request: | ||
branches: "*" | ||
paths: | ||
- packages/token-distribution/** | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test-ci: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up environment | ||
uses: ./.github/actions/setup | ||
- name: Run tests | ||
run: yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
nodeLinker: node-modules | ||
nmHoistingLimits: workspaces |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,10 @@ | |
"packageManager": "[email protected]", | ||
"workspaces": [ | ||
"packages/contracts", | ||
"packages/sdk" | ||
"packages/eslint-graph-config", | ||
"packages/sdk", | ||
"packages/solhint-graph-config", | ||
"packages/token-distribution" | ||
], | ||
"scripts": { | ||
"postinstall": "husky install", | ||
|
@@ -19,6 +22,7 @@ | |
"test": "yarn workspaces foreach --all --parallel --verbose --interlaced run test" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.27.1", | ||
"@commitlint/cli": "^18.4.3", | ||
"@commitlint/config-conventional": "^18.4.3", | ||
"husky": "^8.0.3" | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# @graphprotocol/contracts | ||
|
||
## 6.2.1 | ||
|
||
### Patch Changes | ||
|
||
- Round up when calculating curation tax | ||
- Round up when calculating consecutive stake thawing periods | ||
|
||
## 6.2.0 | ||
|
||
### Minor Changes | ||
|
||
- Update implementation addresses with GGP 31, 34 and 35 | ||
|
||
### Patch Changes | ||
|
||
- 554af2c: feat(utils): add utility to parse subgraph ids | ||
- Updated dependencies [554af2c] | ||
- Updated dependencies [c5641c5] | ||
- @graphprotocol/sdk@0.5.0 | ||
|
||
## 6.1.3 | ||
|
||
### Patch Changes | ||
|
||
- Ensure globbing is enabled in prepack | ||
|
||
## 6.1.2 | ||
|
||
### Patch Changes | ||
|
||
- Correctly pass ts file list to tsc in prepack | ||
|
||
## 6.1.1 | ||
|
||
### Patch Changes | ||
|
||
- Use prepack to correctly prepare outputs for the published package | ||
|
||
## 6.1.0 | ||
|
||
### Minor Changes | ||
|
||
- Introduce changesets for versioning | ||
- Add new staging implementations including GGPs 31, 34 and 35 | ||
- Add new testnet implementations including GGPs 31, 34 and 35 | ||
|
||
### Patch Changes | ||
|
||
- Fixes for verifyAll and bridge:send-to-l2 hardhat tasks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.