Skip to content

Commit

Permalink
Merge pull request #1043 from ethereum/staging
Browse files Browse the repository at this point in the history
Release v2.2.1
  • Loading branch information
kuzdogan authored Jun 1, 2023
2 parents 964f9cb + 9dd1c7c commit 4f9e6ef
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 3 deletions.
18 changes: 18 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/add-new-chain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Add New Chain <chainId>

Thanks for your pull request to add a new support in Sourcify.

If you haven't done so, please follow the instructions on [how to request chain support](https://docs.sourcify.dev/docs/chain-support/) in docs.

Please check the following items before submitting your pull request.

## Checklist

- [ ] The branch is named as `add-chain-<chainId>`.
- [ ] I haven't modified the [chains.json](../../src/chains.json) file directly.
- [ ] In [sourcify-chains.ts](../../src/sourcify-chains.ts) file
- [ ] I've set `supported: true`.
- [ ] I've set `monitored: false`.
- [ ] I haven't added an `rpc` field but the one in [chains.json](../../src/chains.json) is used (if not, please explain why).
- [ ] I've added a test in [chain-tests.js](../../test/chains/chains-test.js) file.
- [ ] `test-new-chain` test in Circle CI is passing.
22 changes: 22 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Release <version>

## Changes

<!-- Add newly supported chains with their chainId, if any-->

- New supported chains:
- X Chain (43)
- Chainname (chainId)

<!-- Please describe the changes the new commits bring in few sentences -->

- Fix: ...
- <Feature>
...

## Checklist

<!-- Please check all items below by putting an x in the box -->

- [ ] I have bumped the versions of the packages under `packages/`, if necessary
- [ ] All tests are passing
11 changes: 11 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Thank you for your contribution to the Sourcify project!

Please check if your pull request fits one of the categories. If so, please use the templates provided at the links:

- Requesting new chain support: Add your username and the branch name to the link below and open:

```
https://github.com/ethereum/sourcify/compare/ethereum:sourcify:staging...<YOUR_USERNAME>:<BRANCH_NAME>?template=add-new-chain.md&title=Add+New+Chain+%3CchainId%3E
```

- New release: [release.md](https://github.com/ethereum/sourcify/compare/master...staging?template=release.md&title=Release+%3Cversion%3E)
2 changes: 1 addition & 1 deletion packages/bytecode-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethereum-sourcify/bytecode-utils",
"version": "1.0.4",
"version": "1.1.0",
"description": "Decode the CBOR encoded data at the end of an Ethereum contract's bytecode.",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-sourcify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethereum-sourcify/lib-sourcify",
"version": "1.0.2",
"version": "1.1.0",
"description": "Library for Sourcify's contract verification methods, contract validation, types, and interfaces.",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion ui/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
_paq.push(["setSiteId", "30"]);
var secondaryTracker =
"https://ethereumfoundation.matomo.cloud/matomo.php";
var secondaryWebsiteId = "15";
var secondaryWebsiteId = "30";
_paq.push(["addTracker", secondaryTracker, secondaryWebsiteId]);
var d = document,
g = d.createElement("script"),
Expand Down

0 comments on commit 4f9e6ef

Please sign in to comment.