diff --git a/.openapidoc/README.md b/.openapidoc/README.md index d95449966..fe1101bd1 100644 --- a/.openapidoc/README.md +++ b/.openapidoc/README.md @@ -1,7 +1,7 @@ # Web3Signer OpenAPI Spec Publish This directory contains NodeJS project which publishes Web3Signer OpenAPI specifications to -[`gh-pages`](https://github.com/PegaSysEng/web3signer/tree/gh-pages) branch via CI job after build and acceptanceTests. +[`gh-pages`](https://github.com/ConsenSys/web3signer/tree/gh-pages) branch via CI job after build and acceptanceTests. See `publishOpenApiSpec` job in `.circleci/config.yml`. ## Prerequisite @@ -19,7 +19,7 @@ The script performs following tasks: For release version, it performs following additional steps (the release version do not have `-dev-` in it) * Copy the spec to `dist` as `web3signer--.yaml` -* Fetch `https://github.com/PegaSysEng/web3signer/raw/gh-pages/versions.json` +* Fetch `https://github.com/ConsenSys/web3signer/raw/gh-pages/versions.json` * Update versions' json with release versions by updating `stable.spec` and `stable.source` to the release version and adding a new entry for it. For example after adding spec version `0.0.2`, the `versions.json` would look like: ~~~ @@ -48,7 +48,7 @@ npm module to automate this step. ## Environment variables Following environment variables can be used to override defaults -* `OA_GIT_URL` (default: `git@github.com:PegaSysEng/web3signer.git`) +* `OA_GIT_URL` (default: `git@github.com:ConsenSys/web3signer.git`) * `OA_GH_PAGES_BRANCH` (default: `gh-pages`) * `OA_GIT_USERNAME` (default: `CircleCI Build`) * `OA_GIT_EMAIL` (default: `ci-build@consensys.net`) diff --git a/.openapidoc/config.js b/.openapidoc/config.js index 42d280e48..35046de8b 100644 --- a/.openapidoc/config.js +++ b/.openapidoc/config.js @@ -7,7 +7,7 @@ const distDir = process.env.OA_DIST_DIR || "./dist"; const specDir = process.env.OA_SPEC_DIR || "../core/build/resources/main/openapi"; const gitUrl = - process.env.OA_GIT_URL || "git@github.com:PegaSysEng/web3signer.git"; + process.env.OA_GIT_URL || "git@github.com:ConsenSys/web3signer.git"; const gitUserName = process.env.OA_GIT_USERNAME || "CircleCI Build"; const gitEmail = process.env.OA_GIT_EMAIL || "ci-build@consensys.net"; const branch = process.env.OA_GH_PAGES_BRANCH || "gh-pages"; diff --git a/.openapidoc/package.json b/.openapidoc/package.json index 2db586cb8..e05f050c5 100644 --- a/.openapidoc/package.json +++ b/.openapidoc/package.json @@ -1,13 +1,13 @@ { "name": "openapidoc", "version": "1.0.0", - "description": "Prepare Web3Signer OpenAPI spec to be pusged to gh-pages branch", + "description": "Prepare Web3Signer OpenAPI spec to be pushed to gh-pages branch", "repository": { "type": "git", - "url": "git://github.com/PegaSysEng/web3signer.git" + "url": "git://github.com/ConsenSys/web3signer.git" }, "bugs": { - "url": "https://github.com/PegaSysEng/web3signer/issues" + "url": "https://github.com/ConsenSys/web3signer/issues" }, "main": "./publish.js", "dependencies": { diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 39e080270..66ff64a75 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -148,7 +148,7 @@ This facilitates social contribution, easy testing, and peer review. To contribute changes, use the following workflow: -1. [**Fork the repository**](https://github.com/PegaSysEng/web3signer/fork). +1. [**Fork the repository**](https://github.com/ConsenSys/web3signer/fork). 1. **Clone your fork** to your computer. 1. **Create a topic branch** and name it appropriately. Starting the branch name with the issue number is a good practice and a reminder to fix only one issue in a @@ -244,7 +244,7 @@ These are not strictly enforced during the build, but should be adhered to and c [private-quorum@consensys.net]: mailto:private-quorum@consensys.net [Discord]: https://discord.gg/KMh2Mjh -[GitHub]: https://github.com/PegaSysEng/web3signer +[GitHub]: https://github.com/ConsenSys/web3signer [Web3Signer documentation]: https://doc.eth2signer.pegasys.tech/en/latest/ [CLA.md]: /CLA.md [Code Reviews]: /community/code-reviews.md diff --git a/README.md b/README.md index 7bd5187f2..06de68770 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Web3Signer issues are tracked in GitHub. See our [contribution guidelines](CONTRIBUTING.md) for more detail on searching and creating issues. ## API -* [API Documentation](https://pegasyseng.github.io/web3signer/) +* [API Documentation](https://consensys.github.io/web3signer/) ## Users * [User documentation](https://docs.web3signer.consensys.net/) diff --git a/build.gradle b/build.gradle index 903456155..5764c96d8 100644 --- a/build.gradle +++ b/build.gradle @@ -41,9 +41,9 @@ def bintrayPackage = bintray.pkg { name = 'web3signer' userOrg = 'consensys' licenses = ['Apache-2.0'] - websiteUrl = 'https://github.com/PegaSysEng/web3signer' - issueTrackerUrl = 'https://github.com/PegaSysEng/web3signer/issues' - vcsUrl = 'https://github.com/PegaSysEng/web3signer.git' + websiteUrl = 'https://github.com/ConsenSys/web3signer' + issueTrackerUrl = 'https://github.com/ConsenSys/web3signer/issues' + vcsUrl = 'https://github.com/ConsenSys/web3signer.git' version { name = project.version @@ -257,7 +257,7 @@ subprojects { } pom { name = "web3signer - ${project.name}" - url = 'http://github.com/PegaSysEng/web3signer' + url = 'http://github.com/ConsenSys/web3signer' licenses { license { name = 'The Apache License, Version 2.0' @@ -265,9 +265,9 @@ subprojects { } } scm { - connection = 'scm:git:git://github.com/PegaSysEng/web3signer.git' - developerConnection = 'scm:git:ssh://github.com/PegaSysEng/web3signer.git' - url = 'https://github.com/PegaSysEng/web3signer' + connection = 'scm:git:git://github.com/ConsenSys/web3signer.git' + developerConnection = 'scm:git:ssh://github.com/ConsenSys/web3signer.git' + url = 'https://github.com/ConsenSys/web3signer' } } } diff --git a/docker/Dockerfile b/docker/Dockerfile index e680a4417..33c6240d0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -19,7 +19,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \ org.label-schema.description="Ethereum2 artefact signing application" \ org.label-schema.url="https://docs.web3signer.pegasys.tech/" \ org.label-schema.vcs-ref=$VCS_REF \ - org.label-schema.vcs-url="https://github.com/PegaSysEng/web3signer.git" \ + org.label-schema.vcs-url="https://github.com/ConsenSys/web3signer.git" \ org.label-schema.vendor="Pegasys" \ org.label-schema.version=$VERSION \ org.label-schema.schema-version="1.0"