-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into MERC-3331-draft-implement-link-w-eth-bill…
…ing-contract-change-dev
- Loading branch information
Showing
94 changed files
with
4,228 additions
and
2,945 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
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ postgres 13.3 | |
helm 3.10.3 | ||
zig 0.10.1 | ||
golangci-lint 1.55.2 | ||
protoc 23.2 | ||
protoc 25.1 |
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 |
---|---|---|
|
@@ -88,7 +88,7 @@ abigen: ## Build & install abigen. | |
./tools/bin/build_abigen | ||
|
||
.PHONY: generate | ||
generate: abigen codecgen mockery ## Execute all go:generate commands. | ||
generate: abigen codecgen mockery protoc ## Execute all go:generate commands. | ||
go generate -x ./... | ||
|
||
.PHONY: testscripts | ||
|
@@ -124,6 +124,11 @@ mockery: $(mockery) ## Install mockery. | |
codecgen: $(codecgen) ## Install codecgen | ||
go install github.com/ugorji/go/codec/[email protected] | ||
|
||
.PHONY: protoc | ||
protoc: ## Install protoc | ||
core/scripts/install-protoc.sh 25.1 / | ||
go install google.golang.org/protobuf/cmd/protoc-gen-go@`go list -m -json google.golang.org/protobuf | jq -r .Version` | ||
|
||
.PHONY: telemetry-protobuf | ||
telemetry-protobuf: $(telemetry-protobuf) ## Generate telemetry protocol buffers. | ||
protoc \ | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
"prepublishOnly": "pnpm compile && ./scripts/prepublish_generate_abi_folder", | ||
"publish-beta": "pnpm publish --tag beta", | ||
"publish-prod": "npm dist-tag add @chainlink/[email protected] latest", | ||
"solhint": "solhint --max-warnings 33 \"./src/v0.8/**/*.sol\"" | ||
"solhint": "solhint --max-warnings 20 \"./src/v0.8/**/*.sol\"" | ||
}, | ||
"files": [ | ||
"src/v0.8", | ||
|
@@ -51,17 +51,17 @@ | |
"@types/debug": "^4.1.12", | ||
"@types/deep-equal-in-any-order": "^1.0.3", | ||
"@types/mocha": "^10.0.6", | ||
"@types/node": "^16.18.68", | ||
"@typescript-eslint/eslint-plugin": "^6.14.0", | ||
"@typescript-eslint/parser": "^6.14.0", | ||
"@types/node": "^16.18.80", | ||
"@typescript-eslint/eslint-plugin": "^6.21.0", | ||
"@typescript-eslint/parser": "^6.21.0", | ||
"abi-to-sol": "^0.6.6", | ||
"cbor": "^5.2.0", | ||
"chai": "^4.3.10", | ||
"debug": "^4.3.4", | ||
"eslint": "^8.55.0", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"deep-equal-in-any-order": "^2.0.6", | ||
"eslint-plugin-prettier": "^5.0.1", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"ethereum-waffle": "^3.4.4", | ||
"ethers": "~5.7.2", | ||
"hardhat": "~2.19.2", | ||
|
@@ -71,11 +71,11 @@ | |
"hardhat-ignore-warnings": "^0.2.6", | ||
"istanbul": "^0.4.5", | ||
"moment": "^2.29.4", | ||
"prettier": "^3.1.1", | ||
"prettier-plugin-solidity": "1.2.0", | ||
"prettier": "^3.2.5", | ||
"prettier-plugin-solidity": "1.3.1", | ||
"rlp": "^2.2.7", | ||
"solhint": "^4.0.0", | ||
"solhint-plugin-chainlink-solidity": "git+https://github.com/smartcontractkit/chainlink-solhint-rules.git#v1.2.0", | ||
"solhint": "^4.1.1", | ||
"solhint-plugin-chainlink-solidity": "git+https://github.com/smartcontractkit/chainlink-solhint-rules.git#v1.2.1", | ||
"solhint-plugin-prettier": "^0.1.0", | ||
"solidity-coverage": "^0.8.5", | ||
"ts-node": "^10.9.2", | ||
|
Oops, something went wrong.