diff --git a/.github/workflows/deploy-to-develop.yml b/.github/workflows/deploy-to-develop.yml deleted file mode 100644 index b24bf58..0000000 --- a/.github/workflows/deploy-to-develop.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Deploy to Develop cluster - -on: - push: - branches: - - develop - workflow_dispatch: - -jobs: - run-gitlab-pipeline: - name: Run gitlab pipeline - runs-on: ubuntu-latest - steps: - - name: Trigger gitlab - uses: wei/curl@v1 - with: - args: -X POST -F token=${{ secrets.UNIQUE_GITLAB_TOKEN }} -F ref=master -F variables[REMOTE_COMMIT]=${GITHUB_SHA} -F variables[DEPLOY_TO]=dev https://gitlab.uniquenetwork.dev/api/v4/projects/60/trigger/pipeline diff --git a/.github/workflows/deploy-to-prod.yml b/.github/workflows/deploy-to-prod.yml deleted file mode 100644 index c01ddb4..0000000 --- a/.github/workflows/deploy-to-prod.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Deploy to Prod cluster - -on: - push: - branches: - - master - workflow_dispatch: - -jobs: - run-gitlab-pipeline: - name: Run gitlab pipeline - runs-on: ubuntu-latest - steps: - - name: Trigger gitlab - uses: wei/curl@v1 - with: - args: -X POST -F token=${{ secrets.UNIQUE_GITLAB_TOKEN }} -F ref=master -F variables[REMOTE_COMMIT]=${GITHUB_SHA} -F variables[DEPLOY_TO]=prod https://gitlab.uniquenetwork.dev/api/v4/projects/60/trigger/pipeline diff --git a/docs/about/tech-concepts/addresses/index.md b/docs/about/tech-concepts/addresses/index.md index d3ae918..c2c7203 100644 --- a/docs/about/tech-concepts/addresses/index.md +++ b/docs/about/tech-concepts/addresses/index.md @@ -39,7 +39,7 @@ Address.substrate.decode('yGJMj5z32dpBUigGVFgatC382Ti3FNVSKyfgi87UF7f786MJL') The result is the following. Please note that both calls give the same result since we receive a public key, which is the same in both addresses; they are equal, just presented in different formats (Unique and Quartz). -![public key](../images/array-address.png) +![public key](../../images/array-address.png) Now, let's use another decoder that will provide not only a public key as a result. @@ -56,9 +56,9 @@ array will be 42). This depends on how many bites are needed to store a prefix v Checksum is calculated using both prefix and public key. Thus, these values depend on the chain prefix, as well. -![full address](../images/array-full.png) +![full address](../../images/array-full.png) -![prefix 42](../images/prefix42.png) +![prefix 42](../../images/prefix42.png) The reverse operation will show that the encoding and decoding work in both directions.