Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use latest @graphprotocol/contracts #115

Merged
merged 3 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [16, 18, 20]
node-version: [18, 19, 20]

steps:
- name: Setup PostgreSQL
Expand Down
67 changes: 49 additions & 18 deletions packages/common-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,35 +4,57 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.0] - 2022-11-30
### Changed
- Update @graphprotocol/contracts to v2.1.0
- Add mainnet bridge contracts and L2 contracts
## [Unreleased]

## [2.0.4-testnet] - 2022-11-09
## [2.0.7] - 2023-09-25
### Changed
- Fix L1/L2 specific contracts not being loaded
- Add L2Curation contract

## [2.0.6] - 2023-09-20
### Added
- Add Robustness checks around contract information

## [2.0.3-testnet] - 2022-11-09
## [2.0.5] - 2023-09-19
### Fixed
- Use the correct interface for staking on contracts 5.x

## [2.0.4] - 2023-09-18
### Changed
- Don't error out if contract is not deployed
- Update node-versions of action runners used by CI workflow
- Upgrade many dependencies

## [2.0.1-testnet] - 2022-11-09
## [2.0.2] - 2023-08-23
### Changed
- Update @graphprotocol/contracts to v2.1.0
- Add support for L2 contracts
- Let connection pool size be configured
- Upgrade sequelize dependency

### Fixed
- Remove reservoir contracts
- Don't error out if contract not deployed
- L1/L2 specific contracts weren't being loaded

## [2.0.0-testnet] - 2022-11-09
## [1.8.6] - 2022-08-02
### Changed
- Add support for L2 contracts
- Add GraphChain utils
- Update @graphprotocol/contracts to v2.0.0-testnet
- Upgrade sequelize dependency

## [Unreleased]
## [1.8.5] - 2022-08-02
### Changed
- Upgrade @graphprotocol/contracts

## [1.8.3] - 2022-04-12
### Changed
- Include AllocationExchange in NetworkContracts
- Upgrade dependencies
- Upgrade @graphprotocol/contracts to v1.13.0
- Upgrade sequelize
- Update test for query versioning to match spec
- Allow set version for EIP721 domain separator

## [1.8.2] - 2022-02-23
### Added
- Add AllocationExchange to NetworkContracts

### Changed
- Use TS import for contract addresses

## [1.8.1] - 2021-12-22
### Changed
Expand Down Expand Up @@ -419,7 +441,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Common database module for simplifying database setup
- Connext client module with Postgres-based store implementation

[Unreleased]: https://github.com/graphprotocol/common-ts/compare/v1.8.1...HEAD
[Unreleased]: https://github.com/graphprotocol/common-ts/compare/v2.0.7...HEAD
[2.0.7]: https://github.com/graphprotocol/common-ts/compare/2.0.6...v2.0.7
[2.0.6]: https://github.com/graphprotocol/common-ts/compare/2.0.5...v2.0.6
[2.0.5]: https://github.com/graphprotocol/common-ts/compare/2.0.4...v2.0.5
[2.0.4]: https://github.com/graphprotocol/common-ts/compare/2.0.2...v2.0.4
[2.0.2]: https://github.com/graphprotocol/common-ts/compare/v1.8.6...v2.0.2
[1.8.6]: https://github.com/graphprotocol/common-ts/compare/v1.8.5...v1.8.6
[1.8.5]: https://github.com/graphprotocol/common-ts/compare/v1.8.3...v1.8.5
[1.8.3]: https://github.com/graphprotocol/common-ts/compare/v1.8.2...v1.8.3
[1.8.2]: https://github.com/graphprotocol/common-ts/compare/v1.8.1...v1.8.2
[1.8.1]: https://github.com/graphprotocol/common-ts/compare/v1.5.1...v1.8.1
[1.5.1]: https://github.com/graphprotocol/common/compare/v1.5.0...v1.5.1
[1.5.0]: https://github.com/graphprotocol/common/compare/v1.4.2...v1.5.0
Expand Down
3 changes: 2 additions & 1 deletion packages/common-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"test:watch": "jest --watch --passWithNoTests --detectOpenHandles --verbose"
},
"dependencies": {
"@graphprotocol/contracts": "5.2.1",
"@graphprotocol/contracts": "5.3.3",
"@graphprotocol/pino-sentry-simple": "0.7.1",
"@urql/core": "2.4.4",
"@urql/exchange-execute": "1.2.2",
Expand All @@ -39,6 +39,7 @@
"sequelize": "6.33.0"
},
"devDependencies": {
"@geut/chan": "3.2.9",
"@types/bs58": "4.0.1",
"@types/cors": "2.8.14",
"@types/express": "4.17.17",
Expand Down
Loading
Loading