Compare commits
42
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d353f24f01 | ||
|
|
5755347a31 | ||
|
|
ade1dff30d | ||
|
|
5ca65260c9 | ||
|
|
c276106cfc | ||
|
|
a1ec426a6e | ||
|
|
e20202f895 | ||
|
|
58cc074538 | ||
|
|
852c9bb8f4 | ||
|
|
efe9b7a0e7 | ||
|
|
695a059dde | ||
|
|
5d7e4d273a | ||
|
|
b137e024c6 | ||
|
|
6651ee52b4 | ||
|
|
0d14722c5d | ||
|
|
4968b537b8 | ||
|
|
5f5c45f3b9 | ||
|
|
6b10df015d | ||
|
|
6d7e24732b | ||
|
|
b33cf04e16 | ||
|
|
66ebb26b0f | ||
|
|
51c88d2fce | ||
|
|
2786a984b0 | ||
|
|
39c53a7326 | ||
|
|
3371e8e2cc | ||
|
|
5843a36851 | ||
|
|
68b4909dff | ||
|
|
da8e382454 | ||
|
|
81ebefc329 | ||
|
|
1ed7d6fda2 | ||
|
|
a2e4f34b0d | ||
|
|
3a1bb855aa | ||
|
|
b4ca0a8390 | ||
|
|
349c790ecc | ||
|
|
4c8a15cc01 | ||
|
|
f433a030ff | ||
|
|
63a6e4ecbd | ||
|
|
555f6e2a6d | ||
|
|
c116762865 | ||
|
|
b47bd49e83 | ||
|
|
4b942cfb7d | ||
|
|
c27443fc13 |
@@ -82,3 +82,38 @@ jobs:
|
|||||||
https://${{ env.IPFS_V1 }}.ipfs.dweb.link/
|
https://${{ env.IPFS_V1 }}.ipfs.dweb.link/
|
||||||
https://${{ env.IPFS_V1 }}.ipfs.cf-ipfs.com/
|
https://${{ env.IPFS_V1 }}.ipfs.cf-ipfs.com/
|
||||||
ipfs://${{ env.IPFS_V0 }}/
|
ipfs://${{ env.IPFS_V0 }}/
|
||||||
|
|
||||||
|
- name: Ensure 'Released' label exists
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
run: |
|
||||||
|
REPO="${{ github.repository }}"
|
||||||
|
LABEL_EXIST=$(curl -s -H "Authorization: token $GITHUB_TOKEN" \
|
||||||
|
-H "Accept: application/vnd.github.v3+json" \
|
||||||
|
"https://api.github.com/repos/$REPO/labels/Released")
|
||||||
|
if [[ "$LABEL_EXIST" == *"Not Found"* ]]; then
|
||||||
|
curl -s -H "Authorization: token $GITHUB_TOKEN" \
|
||||||
|
-H "Accept: application/vnd.github.v3+json" \
|
||||||
|
-X POST "https://api.github.com/repos/$REPO/labels" \
|
||||||
|
-d '{"name": "Released", "color": "FFFFFF"}'
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Extract issues from release notes
|
||||||
|
id: extract-issues
|
||||||
|
run: |
|
||||||
|
ISSUES=$(echo "${{ github.event.release.body }}" | grep -o -E '#[0-9]+' | tr -d '#' | jq -R . | jq -cs .)
|
||||||
|
echo "Issues to label: $ISSUES"
|
||||||
|
echo "::set-output name=issue_numbers::$ISSUES"
|
||||||
|
|
||||||
|
- name: Add 'Released' label to issues
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
run: |
|
||||||
|
ISSUE_NUMBERS="${{ steps.extract-issues.outputs.issue_numbers }}"
|
||||||
|
REPO="${{ github.repository }}"
|
||||||
|
for ISSUE in $(echo "$ISSUE_NUMBERS" | jq -r '.[]'); do
|
||||||
|
curl -s -H "Authorization: token $GITHUB_TOKEN" \
|
||||||
|
-H "Accept: application/vnd.github.v3+json" \
|
||||||
|
-X POST "https://api.github.com/repos/$REPO/issues/$ISSUE/labels" \
|
||||||
|
-d '{"labels": ["Released"]}'
|
||||||
|
done
|
||||||
|
|||||||
@@ -170,15 +170,6 @@ jobs:
|
|||||||
preview_explorer: ${{ env.PREVIEW_EXPLORER }}
|
preview_explorer: ${{ env.PREVIEW_EXPLORER }}
|
||||||
preview_tools: ${{ env.PREVIEW_TOOLS }}
|
preview_tools: ${{ env.PREVIEW_TOOLS }}
|
||||||
|
|
||||||
# console-e2e:
|
|
||||||
# needs: build-sources
|
|
||||||
# name: '(CI) console python'
|
|
||||||
# uses: ./.github/workflows/console-test-run.yml
|
|
||||||
# secrets: inherit
|
|
||||||
# if: ${{ contains(fromJSON(needs.build-sources.outputs.projects), 'trading') && github.event_name == 'pull_request' }}
|
|
||||||
# with:
|
|
||||||
# github-sha: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
||||||
|
|
||||||
check-e2e-needed:
|
check-e2e-needed:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build-sources
|
needs: build-sources
|
||||||
@@ -212,6 +203,15 @@ jobs:
|
|||||||
projects: ${{ needs.build-sources.outputs.projects-e2e }}
|
projects: ${{ needs.build-sources.outputs.projects-e2e }}
|
||||||
tags: '@smoke'
|
tags: '@smoke'
|
||||||
|
|
||||||
|
console-e2e:
|
||||||
|
needs: [build-sources, check-e2e-needed]
|
||||||
|
name: '(CI) console python'
|
||||||
|
uses: ./.github/workflows/console-test-run.yml
|
||||||
|
secrets: inherit
|
||||||
|
if: needs.check-e2e-needed.outputs.run-tests == 'true' && contains(needs.build-sources.outputs.projects, 'trading')
|
||||||
|
with:
|
||||||
|
github-sha: ${{ github.event.pull_request.head.sha || github.sha }}
|
||||||
|
|
||||||
publish-dist:
|
publish-dist:
|
||||||
needs: build-sources
|
needs: build-sources
|
||||||
name: '(CD) publish dist'
|
name: '(CD) publish dist'
|
||||||
|
|||||||
@@ -0,0 +1,29 @@
|
|||||||
|
# https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#managing-caches
|
||||||
|
name: cleanup caches by a branch
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- closed
|
||||||
|
jobs:
|
||||||
|
cleanup:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Cleanup
|
||||||
|
run: |
|
||||||
|
gh extension install actions/gh-actions-cache
|
||||||
|
|
||||||
|
echo "Fetching list of cache key"
|
||||||
|
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH -L 100 | cut -f 1 )
|
||||||
|
|
||||||
|
## Setting this to not fail the workflow while deleting cache keys.
|
||||||
|
set +e
|
||||||
|
echo "Deleting caches..."
|
||||||
|
for cacheKey in $cacheKeysForPR
|
||||||
|
do
|
||||||
|
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm
|
||||||
|
done
|
||||||
|
echo "Done"
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
REPO: ${{ github.repository }}
|
||||||
|
BRANCH: refs/pull/${{ github.event.pull_request.number }}/merge
|
||||||
@@ -1,8 +1,5 @@
|
|||||||
name: (CI) Console tests
|
name: (CI) Console tests
|
||||||
|
|
||||||
env:
|
|
||||||
VEGA_VERSION: v0.72.14
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
@@ -19,9 +16,9 @@ on:
|
|||||||
- develop
|
- develop
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run-tests:
|
create-docker-image:
|
||||||
name: run-tests
|
name: Create docker image for console-test
|
||||||
runs-on: 8-cores
|
runs-on: ubuntu-22.04
|
||||||
timeout-minutes: 20
|
timeout-minutes: 20
|
||||||
steps:
|
steps:
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
@@ -58,23 +55,105 @@ jobs:
|
|||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
# build trading
|
# build trading
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
- name: Build affected spec
|
- name: Build trading app
|
||||||
run: |
|
run: |
|
||||||
yarn env-cmd -f ./apps/trading/.env.stagnet1 yarn nx export trading
|
yarn env-cmd -f ./apps/trading/.env.stagnet1 yarn nx export trading
|
||||||
|
DIST_LOCATION=dist/apps/trading/exported
|
||||||
|
mv $DIST_LOCATION dist-result
|
||||||
|
tree dist-result
|
||||||
|
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
# run trading server
|
# export trading app docker image
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
- name: Run trading server
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Build and export to local Docker
|
||||||
|
id: docker_build
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: docker/node-outside-docker.Dockerfile
|
||||||
|
load: true
|
||||||
|
build-args: |
|
||||||
|
APP=trading
|
||||||
|
ENV_NAME=stagnet1
|
||||||
|
tags: ci/trading:local
|
||||||
|
outputs: type=docker,dest=/tmp/console-image.tar
|
||||||
|
|
||||||
|
- name: Verify docker image created
|
||||||
run: |
|
run: |
|
||||||
docker run -d -p 80:4200 -v $PWD/docker/nginx.conf:/etc/nginx/conf.d/default.conf -v $PWD/dist/apps/trading/exported:/usr/share/nginx/html nginx:1.23-alpine@sha256:6318314189b40e73145a48060bff4783a116c34cc7241532d0d94198fb2c9629
|
echo ${{ steps.docker_build.outputs.digest }}
|
||||||
sleep 5
|
echo ${{ steps.docker_build.outputs.imageid }}
|
||||||
docker ps
|
|
||||||
#----------------------------------------------
|
- name: Upload docker image for console-test usage
|
||||||
# check if container persists between runs
|
uses: actions/upload-artifact@v3
|
||||||
#----------------------------------------------
|
with:
|
||||||
- name: Check server
|
name: console-image
|
||||||
|
path: /tmp/console-image.tar
|
||||||
|
|
||||||
|
console-test-branch:
|
||||||
|
name: Choose console-test branch to run on
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
timeout-minutes: 5
|
||||||
|
outputs:
|
||||||
|
console-branch: ${{ steps.output-step.outputs.branch }}
|
||||||
|
steps:
|
||||||
|
- name: Workflow dispatch input
|
||||||
|
id: dispatch-step
|
||||||
|
if: github.event_name == 'workflow_dispatch'
|
||||||
|
run: echo "branch=${{ inputs.console-test-branch }}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Print Workflow dispatch input
|
||||||
|
if: github.event_name == 'workflow_dispatch'
|
||||||
|
run: echo ${{ steps.dispatch-step.outputs.branch }}
|
||||||
|
|
||||||
|
- name: Workflow_call input
|
||||||
|
id: workflow_call-step
|
||||||
|
if: github.event_name != 'workflow_dispatch'
|
||||||
run: |
|
run: |
|
||||||
docker ps
|
if [[ "${{ github.base_ref }}" == "main" ]]; then
|
||||||
|
echo "branch=main" >> $GITHUB_OUTPUT
|
||||||
|
elif [[ "${{ github.base_ref }}" == "develop" && "${{ github.ref_name }}" == "main" ]]; then
|
||||||
|
echo "branch=main" >> $GITHUB_OUTPUT
|
||||||
|
elif [[ "${{ github.event_name }}" == "push" && "${{ github.ref_name }}" == *"release/mainnet"* ]]; then
|
||||||
|
echo "branch=main" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "branch=develop" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Print Workflow_call input
|
||||||
|
if: github.event_name != 'workflow_dispatch'
|
||||||
|
run: echo ${{ steps.workflow_call-step.outputs.branch }}
|
||||||
|
|
||||||
|
- name: Set output
|
||||||
|
id: output-step
|
||||||
|
run: echo "branch=${{ steps.dispatch-step.outputs.branch || steps.workflow_call-step.outputs.branch }}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Print final output
|
||||||
|
run: echo ${{ steps.output-step.outputs.branch }}
|
||||||
|
|
||||||
|
run-tests:
|
||||||
|
name: run-tests
|
||||||
|
runs-on: 8-cores
|
||||||
|
needs: [create-docker-image, console-test-branch]
|
||||||
|
timeout-minutes: 20
|
||||||
|
steps:
|
||||||
|
#----------------------------------------------
|
||||||
|
# load docker image
|
||||||
|
#----------------------------------------------
|
||||||
|
- name: Download docker image from previous job
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: console-image
|
||||||
|
path: /tmp
|
||||||
|
|
||||||
|
- name: Load Docker image
|
||||||
|
run: |
|
||||||
|
docker load --input /tmp/console-image.tar
|
||||||
|
docker image ls -a
|
||||||
|
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
# check-out tests repo
|
# check-out tests repo
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
@@ -82,62 +161,55 @@ jobs:
|
|||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: vegaprotocol/console-test
|
repository: vegaprotocol/console-test
|
||||||
ref: ${{ inputs.console-test-branch }}
|
ref: ${{ needs.console-test-branch.outputs.console-branch }}
|
||||||
path: './console-test'
|
|
||||||
|
|
||||||
- name: Load console test envs
|
- name: Load console test envs
|
||||||
id: console-test-env
|
id: console-test-env
|
||||||
uses: falti/dotenv-action@v1.0.4
|
uses: falti/dotenv-action@v1.0.4
|
||||||
with:
|
with:
|
||||||
path: './console-test/.env.${{ inputs.console-test-branch }}'
|
path: '.env.${{ needs.console-test-branch.outputs.console-branch }}'
|
||||||
export-variables: true
|
export-variables: true
|
||||||
keys-case: upper
|
keys-case: upper
|
||||||
log-variables: true
|
log-variables: true
|
||||||
|
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
# install dependencies
|
# ----- Setup python -----
|
||||||
|
#----------------------------------------------
|
||||||
|
- name: Setup Python
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.10'
|
||||||
|
#----------------------------------------------
|
||||||
|
# ----- install & configure poetry -----
|
||||||
|
#----------------------------------------------
|
||||||
|
- name: Install Poetry
|
||||||
|
uses: snok/install-poetry@v1
|
||||||
|
with:
|
||||||
|
virtualenvs-create: true
|
||||||
|
virtualenvs-in-project: true
|
||||||
|
virtualenvs-path: .venv
|
||||||
|
|
||||||
|
#----------------------------------------------
|
||||||
|
# install python dependencies
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
working-directory: ./console-test
|
|
||||||
run: poetry install --no-interaction --no-root
|
run: poetry install --no-interaction --no-root
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
# find vega binaries path
|
# install vega binaries
|
||||||
#----------------------------------------------
|
|
||||||
- name: Find vega binaries path
|
|
||||||
id: vega_bin_path
|
|
||||||
working-directory: ./console-test
|
|
||||||
run: echo path=$(poetry run python -c "import vega_sim; print(vega_sim.vega_bin_path)") >> $GITHUB_OUTPUT
|
|
||||||
#----------------------------------------------
|
|
||||||
# vega binaries cache
|
|
||||||
#----------------------------------------------
|
|
||||||
- name: Vega binaries cache
|
|
||||||
uses: actions/cache@v3
|
|
||||||
id: vega_binaries_cache
|
|
||||||
with:
|
|
||||||
path: ${{ steps.vega_bin_path.outputs.path }}
|
|
||||||
key: ${{ runner.os }}-vega-binaries-${{ env.VEGA_VERSION }}
|
|
||||||
#----------------------------------------------
|
|
||||||
# install vega binaries
|
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
- name: Install vega binaries
|
- name: Install vega binaries
|
||||||
working-directory: ./console-test
|
|
||||||
run: poetry run python -m vega_sim.tools.load_binaries --force --version ${{ env.VEGA_VERSION }}
|
run: poetry run python -m vega_sim.tools.load_binaries --force --version ${{ env.VEGA_VERSION }}
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
# install playwright
|
# install playwright
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
- name: install playwright
|
- name: install playwright
|
||||||
run: poetry run playwright install --with-deps chromium
|
run: poetry run playwright install --with-deps chromium
|
||||||
working-directory: ./console-test
|
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
# run tests
|
# run tests
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
working-directory: ./console-test
|
run: CONSOLE_IMAGE_NAME=ci/trading:local poetry run pytest -v -s --numprocesses 4 --dist loadfile --durations=15
|
||||||
run: poetry run pytest -v -s --numprocesses 4 --dist loadfile --durations=15
|
|
||||||
- name: Check files
|
|
||||||
run: |
|
|
||||||
ls -al .
|
|
||||||
ls -al console-test
|
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
# upload traces
|
# upload traces
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ context('Market page', { tags: '@regression' }, function () {
|
|||||||
|
|
||||||
it('Able to go to market details page', function () {
|
it('Able to go to market details page', function () {
|
||||||
cy.navigate_to('markets');
|
cy.navigate_to('markets');
|
||||||
cy.get_element_by_col_id('actions').eq(1).click();
|
cy.contains('Test market 1').click();
|
||||||
cy.getByTestId(marketHeaders).should('have.text', 'Test market 1');
|
cy.getByTestId(marketHeaders).should('have.text', 'Test market 1');
|
||||||
cy.validate_element_from_table('Name', 'Test market 1');
|
cy.validate_element_from_table('Name', 'Test market 1');
|
||||||
cy.validate_element_from_table('Market ID', this.createdMarketId);
|
cy.validate_element_from_table('Market ID', this.createdMarketId);
|
||||||
@@ -90,7 +90,7 @@ context('Market page', { tags: '@regression' }, function () {
|
|||||||
// Liquidity price range
|
// Liquidity price range
|
||||||
cy.validate_element_from_table(
|
cy.validate_element_from_table(
|
||||||
'Liquidity Price Range',
|
'Liquidity Price Range',
|
||||||
'1,000.00% of mid price'
|
'95.00% of mid price'
|
||||||
);
|
);
|
||||||
cy.validate_element_from_table('Lowest Price', '0.00 fUSDC');
|
cy.validate_element_from_table('Lowest Price', '0.00 fUSDC');
|
||||||
cy.validate_element_from_table('Highest Price', '0.00 fUSDC');
|
cy.validate_element_from_table('Highest Price', '0.00 fUSDC');
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import type { MarketInfoWithData } from '@vegaprotocol/markets';
|
|||||||
import {
|
import {
|
||||||
LiquidityPriceRangeInfoPanel,
|
LiquidityPriceRangeInfoPanel,
|
||||||
LiquiditySLAParametersInfoPanel,
|
LiquiditySLAParametersInfoPanel,
|
||||||
|
MarginScalingFactorsPanel,
|
||||||
PriceMonitoringBoundsInfoPanel,
|
PriceMonitoringBoundsInfoPanel,
|
||||||
SuccessionLineInfoPanel,
|
SuccessionLineInfoPanel,
|
||||||
getDataSourceSpecForSettlementData,
|
getDataSourceSpecForSettlementData,
|
||||||
@@ -17,7 +18,6 @@ import {
|
|||||||
OracleInfoPanel,
|
OracleInfoPanel,
|
||||||
RiskFactorsInfoPanel,
|
RiskFactorsInfoPanel,
|
||||||
RiskModelInfoPanel,
|
RiskModelInfoPanel,
|
||||||
RiskParametersInfoPanel,
|
|
||||||
SettlementAssetInfoPanel,
|
SettlementAssetInfoPanel,
|
||||||
} from '@vegaprotocol/markets';
|
} from '@vegaprotocol/markets';
|
||||||
import { MarketInfoTable } from '@vegaprotocol/markets';
|
import { MarketInfoTable } from '@vegaprotocol/markets';
|
||||||
@@ -69,8 +69,8 @@ export const MarketDetails = ({ market }: { market: MarketInfoWithData }) => {
|
|||||||
<MetadataInfoPanel market={market} />
|
<MetadataInfoPanel market={market} />
|
||||||
<h2 className={headerClassName}>{t('Risk model')}</h2>
|
<h2 className={headerClassName}>{t('Risk model')}</h2>
|
||||||
<RiskModelInfoPanel market={market} />
|
<RiskModelInfoPanel market={market} />
|
||||||
<h2 className={headerClassName}>{t('Risk parameters')}</h2>
|
<h2 className={headerClassName}>{t('Margin scaling factors')}</h2>
|
||||||
<RiskParametersInfoPanel market={market} />
|
<MarginScalingFactorsPanel market={market} />
|
||||||
<h2 className={headerClassName}>{t('Risk factors')}</h2>
|
<h2 className={headerClassName}>{t('Risk factors')}</h2>
|
||||||
<RiskFactorsInfoPanel market={market} />
|
<RiskFactorsInfoPanel market={market} />
|
||||||
{(market.data?.priceMonitoringBounds || []).map((trigger, i) => (
|
{(market.data?.priceMonitoringBounds || []).map((trigger, i) => (
|
||||||
|
|||||||
@@ -22,7 +22,11 @@ NX_WALLETCONNECT_PROJECT_ID=fe8091dc35738863e509fc4947525c72
|
|||||||
NX_VEGA_REST_URL=http://localhost:3008/api/v2/
|
NX_VEGA_REST_URL=http://localhost:3008/api/v2/
|
||||||
NX_SUCCESSOR_MARKETS=true
|
NX_SUCCESSOR_MARKETS=true
|
||||||
NX_PRODUCT_PERPETUALS=true
|
NX_PRODUCT_PERPETUALS=true
|
||||||
|
NX_REFERRALS=true
|
||||||
NX_UPDATE_MARKET_STATE=true
|
NX_UPDATE_MARKET_STATE=true
|
||||||
|
NX_GOVERNANCE_TRANSFERS=true
|
||||||
|
NX_VOLUME_DISCOUNTS=true
|
||||||
|
|
||||||
|
|
||||||
NX_VEGA_EXPLORER_URL=https://explorer.fairground.wtf
|
NX_VEGA_EXPLORER_URL=https://explorer.fairground.wtf
|
||||||
NX_CHROME_EXTENSION_URL=https://chrome.google.com/webstore/detail/vega-wallet-fairground/nmmjkiafpmphlikhefgjbblebfgclikn
|
NX_CHROME_EXTENSION_URL=https://chrome.google.com/webstore/detail/vega-wallet-fairground/nmmjkiafpmphlikhefgjbblebfgclikn
|
||||||
|
|||||||
@@ -6,3 +6,5 @@ NX_ETHERSCAN_URL=https://sepolia.etherscan.io
|
|||||||
NX_ORACLE_PROOFS_URL=https://raw.githubusercontent.com/vegaprotocol/well-known/main/__generated__/oracle-proofs.json
|
NX_ORACLE_PROOFS_URL=https://raw.githubusercontent.com/vegaprotocol/well-known/main/__generated__/oracle-proofs.json
|
||||||
NX_PRODUCT_PERPETUALS=true
|
NX_PRODUCT_PERPETUALS=true
|
||||||
NX_UPDATE_MARKET_STATE=true
|
NX_UPDATE_MARKET_STATE=true
|
||||||
|
NX_REFERRALS=true
|
||||||
|
NX_VOLUME_DISCOUNTS=true
|
||||||
|
|||||||
@@ -6,3 +6,5 @@ NX_ETHERSCAN_URL=https://etherscan.io
|
|||||||
NX_ORACLE_PROOFS_URL=https://raw.githubusercontent.com/vegaprotocol/well-known/main/__generated__/oracle-proofs.json
|
NX_ORACLE_PROOFS_URL=https://raw.githubusercontent.com/vegaprotocol/well-known/main/__generated__/oracle-proofs.json
|
||||||
NX_PRODUCT_PERPETUALS=false
|
NX_PRODUCT_PERPETUALS=false
|
||||||
NX_UPDATE_MARKET_STATE=false
|
NX_UPDATE_MARKET_STATE=false
|
||||||
|
NX_REFERRALS=false
|
||||||
|
NX_VOLUME_DISCOUNTS=false
|
||||||
|
|||||||
@@ -6,3 +6,5 @@ NX_ETHERSCAN_URL=https://sepolia.etherscan.io
|
|||||||
NX_ORACLE_PROOFS_URL=https://raw.githubusercontent.com/vegaprotocol/well-known/main/__generated__/oracle-proofs.json
|
NX_ORACLE_PROOFS_URL=https://raw.githubusercontent.com/vegaprotocol/well-known/main/__generated__/oracle-proofs.json
|
||||||
NX_PRODUCT_PERPETUALS=true
|
NX_PRODUCT_PERPETUALS=true
|
||||||
NX_UPDATE_MARKET_STATE=true
|
NX_UPDATE_MARKET_STATE=true
|
||||||
|
NX_REFERRALS=true
|
||||||
|
NX_VOLUME_DISCOUNTS=true
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"rationale": {
|
||||||
|
"title": "Governance cancel transfer proposal",
|
||||||
|
"description": "Rejected cancel transfer proposal"
|
||||||
|
},
|
||||||
|
"terms": {
|
||||||
|
"cancelTransfer": {
|
||||||
|
"changes": {
|
||||||
|
"transferId": "invalid transfer id"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"closingTimestamp": 0,
|
||||||
|
"enactmentTimestamp": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -27,12 +27,16 @@ import {
|
|||||||
} from '../../../../governance-e2e/src/support/staking.functions';
|
} from '../../../../governance-e2e/src/support/staking.functions';
|
||||||
import { ethereumWalletConnect } from '../../../../governance-e2e/src/support/wallet-eth.functions';
|
import { ethereumWalletConnect } from '../../../../governance-e2e/src/support/wallet-eth.functions';
|
||||||
import {
|
import {
|
||||||
|
depositAsset,
|
||||||
switchVegaWalletPubKey,
|
switchVegaWalletPubKey,
|
||||||
vegaWalletSetSpecifiedApprovalAmount,
|
vegaWalletSetSpecifiedApprovalAmount,
|
||||||
} from '../../support/wallet-functions';
|
} from '../../support/wallet-functions';
|
||||||
import type { testFreeformProposal } from '../../support/common-interfaces';
|
import type { testFreeformProposal } from '../../support/common-interfaces';
|
||||||
import { formatDateWithLocalTimezone } from '@vegaprotocol/utils';
|
import { formatDateWithLocalTimezone } from '@vegaprotocol/utils';
|
||||||
import { createSuccessorMarketProposalTxBody } from '../../support/proposal.functions';
|
import {
|
||||||
|
createGovernanceTransferProposalTxBody,
|
||||||
|
createSuccessorMarketProposalTxBody,
|
||||||
|
} from '../../support/proposal.functions';
|
||||||
|
|
||||||
const proposalListItem = '[data-testid="proposals-list-item"]';
|
const proposalListItem = '[data-testid="proposals-list-item"]';
|
||||||
const participationNotMet = 'token-participation-not-met';
|
const participationNotMet = 'token-participation-not-met';
|
||||||
@@ -51,6 +55,7 @@ const openProposals = 'open-proposals';
|
|||||||
const viewProposalButton = 'view-proposal-btn';
|
const viewProposalButton = 'view-proposal-btn';
|
||||||
const proposalTermsToggle = 'proposal-json-toggle';
|
const proposalTermsToggle = 'proposal-json-toggle';
|
||||||
const marketDataToggle = 'proposal-market-data-toggle';
|
const marketDataToggle = 'proposal-market-data-toggle';
|
||||||
|
const governanceTransferToggle = 'proposal-transfer-details';
|
||||||
const marketProposalType = 'proposal-type';
|
const marketProposalType = 'proposal-type';
|
||||||
|
|
||||||
describe(
|
describe(
|
||||||
@@ -433,9 +438,10 @@ describe(
|
|||||||
'contain.text',
|
'contain.text',
|
||||||
'0.3'
|
'0.3'
|
||||||
);
|
);
|
||||||
getProposalDetailsValue(
|
getProposalDetailsValue('Min Probability Of Trading LP Orders').should(
|
||||||
'Minimum Probability Of Trading LP Orders'
|
'contain.text',
|
||||||
).should('contain.text', '1e-8');
|
'1e-8'
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Able to see suspended market proposal', function () {
|
it('Able to see suspended market proposal', function () {
|
||||||
@@ -519,5 +525,78 @@ describe(
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('Able to see governance transfer proposal', function () {
|
||||||
|
const vegaAssetAddress = '0x67175Da1D5e966e40D11c4B2519392B2058373de';
|
||||||
|
depositAsset(vegaAssetAddress, '1000', 18);
|
||||||
|
cy.getByTestId('currency-title', Cypress.env('txTimeout')).should(
|
||||||
|
'contain.text',
|
||||||
|
'Collateral'
|
||||||
|
);
|
||||||
|
cy.VegaWalletTopUpNetworkAccount('100');
|
||||||
|
cy.VegaWalletSubmitProposal(createGovernanceTransferProposalTxBody());
|
||||||
|
cy.reload();
|
||||||
|
getProposalFromTitle('Governance transfer proposal').within(() => {
|
||||||
|
cy.getByTestId(marketProposalType).should('have.text', 'NewTransfer');
|
||||||
|
cy.getByTestId(viewProposalButton).click();
|
||||||
|
});
|
||||||
|
cy.getByTestId(marketProposalType).should('have.text', 'NewTransfer');
|
||||||
|
cy.getByTestId(governanceTransferToggle).click();
|
||||||
|
cy.getByTestId('proposal-transfer-details-table').within(() => {
|
||||||
|
getProposalInformationFromTable('Source Type')
|
||||||
|
.invoke('text')
|
||||||
|
.and('eq', 'Network Treasury');
|
||||||
|
getProposalInformationFromTable('Destination')
|
||||||
|
.invoke('text')
|
||||||
|
.and('eq', Cypress.env('vegaWalletPublicKey'));
|
||||||
|
getProposalInformationFromTable('Asset')
|
||||||
|
.invoke('text')
|
||||||
|
.and('eq', 'VEGA');
|
||||||
|
getProposalInformationFromTable('Fraction Of Balance')
|
||||||
|
.invoke('text')
|
||||||
|
.and('eq', '50%');
|
||||||
|
getProposalInformationFromTable('Amount')
|
||||||
|
.invoke('text')
|
||||||
|
.and('eq', '100.00');
|
||||||
|
getProposalInformationFromTable('Transfer Type')
|
||||||
|
.invoke('text')
|
||||||
|
.and('eq', 'All or nothing');
|
||||||
|
getProposalInformationFromTable('Kind')
|
||||||
|
.invoke('text')
|
||||||
|
.and('eq', 'One off');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it(' Able to see cancel transfer proposal - rejected', function () {
|
||||||
|
const proposalPath = 'src/fixtures/proposals/cancel-transfer-raw.json';
|
||||||
|
const enactmentTimestamp =
|
||||||
|
createTenDigitUnixTimeStampForSpecifiedDays(11);
|
||||||
|
const closingTimestamp = createTenDigitUnixTimeStampForSpecifiedDays(10);
|
||||||
|
submitUniqueRawProposal({
|
||||||
|
proposalBody: proposalPath,
|
||||||
|
enactmentTimestamp: enactmentTimestamp,
|
||||||
|
closingTimestamp: closingTimestamp,
|
||||||
|
submit: false,
|
||||||
|
});
|
||||||
|
cy.getByTestId('proposal-submit').should('be.visible').click();
|
||||||
|
cy.getByTestId('dialog-title').should('have.text', 'Proposal rejected');
|
||||||
|
cy.getByTestId('icon-cross').last().click();
|
||||||
|
navigateTo(navigation.proposals);
|
||||||
|
cy.get('[href="/proposals/rejected"]').click();
|
||||||
|
getProposalFromTitle('Governance cancel transfer proposal').within(() => {
|
||||||
|
cy.getByTestId(marketProposalType).should(
|
||||||
|
'have.text',
|
||||||
|
'CancelTransfer'
|
||||||
|
);
|
||||||
|
cy.getByTestId(viewProposalButton).click();
|
||||||
|
});
|
||||||
|
cy.getByTestId(marketProposalType).should('have.text', 'CancelTransfer');
|
||||||
|
getProposalInformationFromTable('Error details')
|
||||||
|
.invoke('text')
|
||||||
|
.and('eq', 'Governance transfer invalid transfer id not found');
|
||||||
|
getProposalInformationFromTable('transferId')
|
||||||
|
.invoke('text')
|
||||||
|
.and('eq', 'invalid transfer id');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -424,7 +424,7 @@ context(
|
|||||||
validateValidatorListTotalStakeAndShare('0', '3,002.00', '50.02%');
|
validateValidatorListTotalStakeAndShare('0', '3,002.00', '50.02%');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Associating wallet tokens - when some already staked - auto stakes tokens to staked validator', function () {
|
it.skip('Associating wallet tokens - when some already staked - auto stakes tokens to staked validator', function () {
|
||||||
// 1002-STKE-004
|
// 1002-STKE-004
|
||||||
stakingPageAssociateTokens('3');
|
stakingPageAssociateTokens('3');
|
||||||
verifyUnstakedBalance(3.0);
|
verifyUnstakedBalance(3.0);
|
||||||
@@ -438,7 +438,7 @@ context(
|
|||||||
verifyStakedBalance(7.0);
|
verifyStakedBalance(7.0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Associating vesting contract tokens - when some already staked - auto stakes tokens to staked validator', function () {
|
it.skip('Associating vesting contract tokens - when some already staked - auto stakes tokens to staked validator', function () {
|
||||||
// 1002-STKE-004
|
// 1002-STKE-004
|
||||||
stakingPageAssociateTokens('3', { type: 'contract' });
|
stakingPageAssociateTokens('3', { type: 'contract' });
|
||||||
verifyUnstakedBalance(3.0);
|
verifyUnstakedBalance(3.0);
|
||||||
@@ -452,7 +452,7 @@ context(
|
|||||||
verifyStakedBalance(7.0);
|
verifyStakedBalance(7.0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Associating vesting contract tokens - when wallet tokens already staked - auto stakes tokens to staked validator', function () {
|
it.skip('Associating vesting contract tokens - when wallet tokens already staked - auto stakes tokens to staked validator', function () {
|
||||||
// 1002-STKE-004
|
// 1002-STKE-004
|
||||||
stakingPageAssociateTokens('3', { type: 'wallet' });
|
stakingPageAssociateTokens('3', { type: 'wallet' });
|
||||||
verifyUnstakedBalance(3.0);
|
verifyUnstakedBalance(3.0);
|
||||||
@@ -466,7 +466,7 @@ context(
|
|||||||
verifyStakedBalance(7.0);
|
verifyStakedBalance(7.0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Associating tokens - with multiple validators already staked - auto stakes to staked validators - abiding by existing stake ratio', function () {
|
it.skip('Associating tokens - with multiple validators already staked - auto stakes to staked validators - abiding by existing stake ratio', function () {
|
||||||
// 1002-STKE-004
|
// 1002-STKE-004
|
||||||
stakingPageAssociateTokens('6');
|
stakingPageAssociateTokens('6');
|
||||||
verifyUnstakedBalance(6.0);
|
verifyUnstakedBalance(6.0);
|
||||||
|
|||||||
@@ -74,25 +74,12 @@ context(
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('should be able to see a working link for - find out more about Vega governance', function () {
|
it('should be able to see a working link for - find out more about Vega governance', function () {
|
||||||
// 3001-VOTE-001
|
// 3001-VOTE-001 // 3002-PROP-001
|
||||||
cy.getByTestId(proposalDocumentationLink)
|
cy.getByTestId(proposalDocumentationLink)
|
||||||
.should('be.visible')
|
.should('be.visible')
|
||||||
.and('have.text', 'Find out more about Vega governance')
|
.and('have.text', 'Find out more about Vega governance')
|
||||||
.and('have.attr', 'href')
|
.and('have.attr', 'href')
|
||||||
.and('equal', governanceDocsUrl);
|
.and('equal', governanceDocsUrl);
|
||||||
|
|
||||||
// 3002-PROP-001
|
|
||||||
cy.request(governanceDocsUrl)
|
|
||||||
.its('body')
|
|
||||||
.then((body) => {
|
|
||||||
if (!body.includes('Govern the network')) {
|
|
||||||
assert.include(
|
|
||||||
body,
|
|
||||||
'Govern the network',
|
|
||||||
`Checking that governance link destination includes 'Govern the network' text`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// 3007-PNE-021
|
// 3007-PNE-021
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
import { addSeconds, millisecondsToSeconds } from 'date-fns';
|
import { addDays, addSeconds, millisecondsToSeconds } from 'date-fns';
|
||||||
import type { ProposalSubmissionBody } from '@vegaprotocol/wallet';
|
import type { ProposalSubmissionBody } from '@vegaprotocol/wallet';
|
||||||
import { aliasGQLQuery } from '@vegaprotocol/cypress';
|
import { aliasGQLQuery } from '@vegaprotocol/cypress';
|
||||||
import { upgradeProposalsData } from '../fixtures/mocks/network-upgrade';
|
import { upgradeProposalsData } from '../fixtures/mocks/network-upgrade';
|
||||||
import { proposalsData } from '../fixtures/mocks/proposals';
|
import { proposalsData } from '../fixtures/mocks/proposals';
|
||||||
import { nodeData } from '../fixtures/mocks/nodes';
|
import { nodeData } from '../fixtures/mocks/nodes';
|
||||||
|
import { AccountType, GovernanceTransferType } from '@vegaprotocol/types';
|
||||||
|
|
||||||
export function createUpdateNetworkProposalTxBody(): ProposalSubmissionBody {
|
export function createUpdateNetworkProposalTxBody(): ProposalSubmissionBody {
|
||||||
const MIN_CLOSE_SEC = 5;
|
const MIN_CLOSE_SEC = 5;
|
||||||
@@ -358,6 +359,46 @@ export function createSuccessorMarketProposalTxBody(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function createGovernanceTransferProposalTxBody(): ProposalSubmissionBody {
|
||||||
|
const MIN_CLOSE_SEC = 5;
|
||||||
|
const MIN_ENACT_SEC = 7;
|
||||||
|
|
||||||
|
const closingDate = addDays(new Date(), MIN_CLOSE_SEC);
|
||||||
|
const enactmentDate = addDays(closingDate, MIN_ENACT_SEC);
|
||||||
|
const closingTimestamp = millisecondsToSeconds(closingDate.getTime());
|
||||||
|
const enactmentTimestamp = millisecondsToSeconds(enactmentDate.getTime());
|
||||||
|
const destination = Cypress.env('vegaWalletPublicKey');
|
||||||
|
return {
|
||||||
|
proposalSubmission: {
|
||||||
|
rationale: {
|
||||||
|
title: 'Governance transfer proposal',
|
||||||
|
description: 'E2E test for transfer proposal test',
|
||||||
|
},
|
||||||
|
terms: {
|
||||||
|
newTransfer: {
|
||||||
|
changes: {
|
||||||
|
fractionOfBalance: '0.5',
|
||||||
|
amount: '100' + '0'.repeat(18),
|
||||||
|
sourceType: AccountType.ACCOUNT_TYPE_NETWORK_TREASURY,
|
||||||
|
source: '',
|
||||||
|
transferType:
|
||||||
|
GovernanceTransferType.GOVERNANCE_TRANSFER_TYPE_ALL_OR_NOTHING,
|
||||||
|
destinationType: AccountType.ACCOUNT_TYPE_GENERAL,
|
||||||
|
destination,
|
||||||
|
asset:
|
||||||
|
'b4f2726571fbe8e33b442dc92ed2d7f0d810e21835b7371a7915a365f07ccd9b',
|
||||||
|
oneOff: {
|
||||||
|
deliverOn: '0',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
closingTimestamp,
|
||||||
|
enactmentTimestamp,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
export function mockNetworkUpgradeProposal() {
|
export function mockNetworkUpgradeProposal() {
|
||||||
cy.mockGQL((req) => {
|
cy.mockGQL((req) => {
|
||||||
aliasGQLQuery(req, 'Nodes', nodeData);
|
aliasGQLQuery(req, 'Nodes', nodeData);
|
||||||
|
|||||||
@@ -41,6 +41,9 @@ export async function depositAsset(
|
|||||||
) {
|
) {
|
||||||
// Approve asset
|
// Approve asset
|
||||||
const faucet = new Token(assetEthAddress, signer);
|
const faucet = new Token(assetEthAddress, signer);
|
||||||
|
// Wait needed to allow Eth chain to catch up
|
||||||
|
// eslint-disable-next-line cypress/no-unnecessary-waiting
|
||||||
|
cy.wait(4000);
|
||||||
cy.wrap(
|
cy.wrap(
|
||||||
faucet.approve(Erc20BridgeAddress, amount + '0'.repeat(decimalPlaces + 1)),
|
faucet.approve(Erc20BridgeAddress, amount + '0'.repeat(decimalPlaces + 1)),
|
||||||
transactionTimeout
|
transactionTimeout
|
||||||
|
|||||||
@@ -35,4 +35,6 @@ NX_SUCCESSOR_MARKETS=true
|
|||||||
NX_METAMASK_SNAPS=true
|
NX_METAMASK_SNAPS=true
|
||||||
NX_PRODUCT_PERPETUALS=false
|
NX_PRODUCT_PERPETUALS=false
|
||||||
NX_UPDATE_MARKET_STATE=false
|
NX_UPDATE_MARKET_STATE=false
|
||||||
|
NX_REFERRALS=false
|
||||||
NX_GOVERNANCE_TRANSFERS=false
|
NX_GOVERNANCE_TRANSFERS=false
|
||||||
|
NX_VOLUME_DISCOUNTS=false
|
||||||
|
|||||||
@@ -35,3 +35,5 @@ NX_SUCCESSOR_MARKETS=false
|
|||||||
NX_METAMASK_SNAPS=false
|
NX_METAMASK_SNAPS=false
|
||||||
NX_PRODUCT_PERPETUALS=true
|
NX_PRODUCT_PERPETUALS=true
|
||||||
NX_UPDATE_MARKET_STATE=true
|
NX_UPDATE_MARKET_STATE=true
|
||||||
|
NX_REFERRALS=true
|
||||||
|
NX_VOLUME_DISCOUNTS=true
|
||||||
|
|||||||
@@ -27,3 +27,5 @@ NX_SUCCESSOR_MARKETS=true
|
|||||||
NX_METAMASK_SNAPS=true
|
NX_METAMASK_SNAPS=true
|
||||||
NX_PRODUCT_PERPETUALS=true
|
NX_PRODUCT_PERPETUALS=true
|
||||||
NX_UPDATE_MARKET_STATE=true
|
NX_UPDATE_MARKET_STATE=true
|
||||||
|
NX_REFERRALS=true
|
||||||
|
NX_VOLUME_DISCOUNTS=true
|
||||||
|
|||||||
@@ -26,3 +26,5 @@ NX_SUCCESSOR_MARKETS=false
|
|||||||
NX_METAMASK_SNAPS=false
|
NX_METAMASK_SNAPS=false
|
||||||
NX_PRODUCT_PERPETUALS=false
|
NX_PRODUCT_PERPETUALS=false
|
||||||
NX_UPDATE_MARKET_STATE=false
|
NX_UPDATE_MARKET_STATE=false
|
||||||
|
NX_REFERRALS=false
|
||||||
|
NX_VOLUME_DISCOUNTS=false
|
||||||
|
|||||||
@@ -25,3 +25,5 @@ NX_SUCCESSOR_MARKETS=false
|
|||||||
NX_METAMASK_SNAPS=false
|
NX_METAMASK_SNAPS=false
|
||||||
NX_PRODUCT_PERPETUALS=false
|
NX_PRODUCT_PERPETUALS=false
|
||||||
NX_UPDATE_MARKET_STATE=false
|
NX_UPDATE_MARKET_STATE=false
|
||||||
|
NX_REFERRALS=false
|
||||||
|
NX_VOLUME_DISCOUNTS=false
|
||||||
|
|||||||
@@ -23,4 +23,6 @@ NX_SUCCESSOR_MARKETS=true
|
|||||||
NX_METAMASK_SNAPS=true
|
NX_METAMASK_SNAPS=true
|
||||||
NX_PRODUCT_PERPETUALS=true
|
NX_PRODUCT_PERPETUALS=true
|
||||||
NX_UPDATE_MARKET_STATE=true
|
NX_UPDATE_MARKET_STATE=true
|
||||||
|
NX_REFERRALS=true
|
||||||
NX_GOVERNANCE_TRANSFERS=true
|
NX_GOVERNANCE_TRANSFERS=true
|
||||||
|
NX_VOLUME_DISCOUNTS=true
|
||||||
|
|||||||
@@ -28,3 +28,5 @@ NX_SUCCESSOR_MARKETS=true
|
|||||||
NX_METAMASK_SNAPS=true
|
NX_METAMASK_SNAPS=true
|
||||||
NX_PRODUCT_PERPETUALS=true
|
NX_PRODUCT_PERPETUALS=true
|
||||||
NX_UPDATE_MARKET_STATE=true
|
NX_UPDATE_MARKET_STATE=true
|
||||||
|
NX_REFERRALS=true
|
||||||
|
NX_VOLUME_DISCOUNTS=true
|
||||||
|
|||||||
@@ -24,3 +24,5 @@ NX_SUCCESSOR_MARKETS=false
|
|||||||
NX_METAMASK_SNAPS=false
|
NX_METAMASK_SNAPS=false
|
||||||
NX_PRODUCT_PERPETUALS=false
|
NX_PRODUCT_PERPETUALS=false
|
||||||
NX_UPDATE_MARKET_STATE=false
|
NX_UPDATE_MARKET_STATE=false
|
||||||
|
NX_REFERRALS=false
|
||||||
|
NX_VOLUME_DISCOUNTS=false
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
process.env.TZ = 'GMT';
|
||||||
export default {
|
export default {
|
||||||
displayName: 'governance',
|
displayName: 'governance',
|
||||||
preset: '../../jest.preset.js',
|
preset: '../../jest.preset.js',
|
||||||
|
|||||||
@@ -709,6 +709,8 @@
|
|||||||
"NewMarketProposal": "New market proposal",
|
"NewMarketProposal": "New market proposal",
|
||||||
"UpdateMarketProposal": "Update market proposal",
|
"UpdateMarketProposal": "Update market proposal",
|
||||||
"UpdateMarketStateProposal": "Update market state proposal",
|
"UpdateMarketStateProposal": "Update market state proposal",
|
||||||
|
"UpdateReferralProgramProposal": "Update referral program proposal",
|
||||||
|
"UpdateVolumeDiscountProgramProposal": "Update volume discount program proposal",
|
||||||
"MarketChange": "Market change",
|
"MarketChange": "Market change",
|
||||||
"MarketStateChange": "Market state change",
|
"MarketStateChange": "Market state change",
|
||||||
"MarketDetails": "Market details",
|
"MarketDetails": "Market details",
|
||||||
@@ -732,6 +734,8 @@
|
|||||||
"NewMarketSpotProduct": "New market - spot",
|
"NewMarketSpotProduct": "New market - spot",
|
||||||
"UpdateMarket": "Update market",
|
"UpdateMarket": "Update market",
|
||||||
"UpdateMarketState": "Update market state",
|
"UpdateMarketState": "Update market state",
|
||||||
|
"UpdateReferralProgram": "Update referral program",
|
||||||
|
"UpdateVolumeDiscountProgram": "Update volume discount program",
|
||||||
"NewAsset": "New asset",
|
"NewAsset": "New asset",
|
||||||
"UpdateAsset": "Update asset",
|
"UpdateAsset": "Update asset",
|
||||||
"AssetID": "Asset ID",
|
"AssetID": "Asset ID",
|
||||||
@@ -890,5 +894,25 @@
|
|||||||
"HowToProposeRawStep2": "2. Use the appropriate proposal template in the docs:",
|
"HowToProposeRawStep2": "2. Use the appropriate proposal template in the docs:",
|
||||||
"HowToProposeRawStep3": "3. Submit on-chain below",
|
"HowToProposeRawStep3": "3. Submit on-chain below",
|
||||||
"proposalTransferDetails": "New governance transfer details",
|
"proposalTransferDetails": "New governance transfer details",
|
||||||
"proposalCancelTransferDetails": "Cancel governance transfer details"
|
"proposalCancelTransferDetails": "Cancel governance transfer details",
|
||||||
|
"BenefitTiers": "Benefit tiers",
|
||||||
|
"BenefitTierMinimumEpochs": "Minimum epochs",
|
||||||
|
"BenefitTierMinimumEpochsDescription": "The minimum number of epochs the party needs to be in the referral set to be eligible for the benefit",
|
||||||
|
"BenefitTierMinimumRunningNotionalTakerVolume": "Minimum running notional taker volume",
|
||||||
|
"BenefitTierMinimumRunningNotionalTakerVolumeDescription": "The minimum running notional for the given benefit tier",
|
||||||
|
"BenefitTierReferralDiscountFactor": "Referral discount factor",
|
||||||
|
"BenefitTierReferralDiscountFactorDescription": "The proportion of the referee's taker fees to be discounted",
|
||||||
|
"BenefitTierReferralRewardFactor": "Referral reward factor",
|
||||||
|
"BenefitTierReferralRewardFactorDescription": "The proportion of the referee's taker fees to be rewarded to the referrer",
|
||||||
|
"StakingTiers": "Staking tiers",
|
||||||
|
"StakingTierMinimumStakedTokens": "Minimum staked tokens",
|
||||||
|
"StakingTierMinimumStakedTokensDescription": "Required number of governance tokens ($VEGA) a referrer must have staked to receive the multiplier",
|
||||||
|
"StakingTierReferralRewardMultiplier": "Referral reward multiplier",
|
||||||
|
"StakingTierReferralRewardMultiplierDescription": "Multiplier applied to the referral reward factor when calculating referral rewards due to the referrer",
|
||||||
|
"WindowLength": "Window length",
|
||||||
|
"WindowLengthDescription": "Number of epochs over which to evaluate a referral set's running volume",
|
||||||
|
"EndOfProgramTimestamp": "End of program",
|
||||||
|
"EndOfProgramTimestampDescription": "Time after which when the current epoch ends, the programs will end and benefits will be disabled.",
|
||||||
|
"BenefitTierVolumeDiscountFactor": "Volume discount factor",
|
||||||
|
"BenefitTierVolumeDiscountFactorDescription": "Discount given to those in this benefit tier"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -188,6 +188,8 @@ const GovernanceHome = ({ name }: RouteChildProps) => {
|
|||||||
variables: {
|
variables: {
|
||||||
includeNewMarketProductFields: !!FLAGS.PRODUCT_PERPETUALS,
|
includeNewMarketProductFields: !!FLAGS.PRODUCT_PERPETUALS,
|
||||||
includeUpdateMarketStates: !!FLAGS.UPDATE_MARKET_STATE,
|
includeUpdateMarketStates: !!FLAGS.UPDATE_MARKET_STATE,
|
||||||
|
includeUpdateReferralPrograms: !!FLAGS.REFERRALS,
|
||||||
|
includeUpdateVolumeDiscountPrograms: !!FLAGS.VOLUME_DISCOUNTS,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
+10
@@ -98,6 +98,16 @@ export const ProposalHeader = ({
|
|||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case 'UpdateReferralProgram': {
|
||||||
|
proposalType = 'UpdateReferralProgram';
|
||||||
|
fallbackTitle = t('UpdateReferralProgramProposal');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'UpdateVolumeDiscountProgram': {
|
||||||
|
proposalType = 'UpdateVolumeDiscountProgram';
|
||||||
|
fallbackTitle = t('UpdateVolumeDiscountProgramProposal');
|
||||||
|
break;
|
||||||
|
}
|
||||||
case 'NewAsset': {
|
case 'NewAsset': {
|
||||||
proposalType = 'NewAsset';
|
proposalType = 'NewAsset';
|
||||||
fallbackTitle = t('NewAssetProposal');
|
fallbackTitle = t('NewAssetProposal');
|
||||||
|
|||||||
+5
-3
@@ -12,12 +12,12 @@ import {
|
|||||||
PriceMonitoringBoundsInfoPanel,
|
PriceMonitoringBoundsInfoPanel,
|
||||||
RiskFactorsInfoPanel,
|
RiskFactorsInfoPanel,
|
||||||
RiskModelInfoPanel,
|
RiskModelInfoPanel,
|
||||||
RiskParametersInfoPanel,
|
|
||||||
SettlementAssetInfoPanel,
|
SettlementAssetInfoPanel,
|
||||||
getDataSourceSpecForSettlementSchedule,
|
getDataSourceSpecForSettlementSchedule,
|
||||||
getDataSourceSpecForSettlementData,
|
getDataSourceSpecForSettlementData,
|
||||||
getDataSourceSpecForTradingTermination,
|
getDataSourceSpecForTradingTermination,
|
||||||
getSigners,
|
getSigners,
|
||||||
|
MarginScalingFactorsPanel,
|
||||||
} from '@vegaprotocol/markets';
|
} from '@vegaprotocol/markets';
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
@@ -219,8 +219,10 @@ export const ProposalMarketData = ({
|
|||||||
parentMarket={parentMarketData}
|
parentMarket={parentMarketData}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<h2 className={marketDataHeaderStyles}>{t('Risk parameters')}</h2>
|
<h2 className={marketDataHeaderStyles}>
|
||||||
<RiskParametersInfoPanel
|
{t('Margin scaling factors')}
|
||||||
|
</h2>
|
||||||
|
<MarginScalingFactorsPanel
|
||||||
market={marketData}
|
market={marketData}
|
||||||
parentMarket={parentMarketData}
|
parentMarket={parentMarketData}
|
||||||
/>
|
/>
|
||||||
|
|||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
export * from './proposal-referral-program-details';
|
||||||
+161
@@ -0,0 +1,161 @@
|
|||||||
|
import { render, screen } from '@testing-library/react';
|
||||||
|
import {
|
||||||
|
formatMinimumRunningNotionalTakerVolume,
|
||||||
|
formatReferralDiscountFactor,
|
||||||
|
formatReferralRewardFactor,
|
||||||
|
formatMinimumStakedTokens,
|
||||||
|
formatReferralRewardMultiplier,
|
||||||
|
ProposalReferralProgramDetails,
|
||||||
|
} from './proposal-referral-program-details';
|
||||||
|
import { generateProposal } from '../../test-helpers/generate-proposals';
|
||||||
|
|
||||||
|
jest.mock('../../../../contexts/app-state/app-state-context', () => ({
|
||||||
|
useAppState: () => ({
|
||||||
|
appState: {
|
||||||
|
decimals: 2,
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
jest.useFakeTimers();
|
||||||
|
jest.setSystemTime(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
jest.useRealTimers();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('ProposalReferralProgramDetails helper functions', () => {
|
||||||
|
it('should format minimum running notional taker volume correctly', () => {
|
||||||
|
const input = '1000';
|
||||||
|
const formatted = formatMinimumRunningNotionalTakerVolume(input);
|
||||||
|
expect(formatted).toBe('1,000');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should format referral discount factor correctly', () => {
|
||||||
|
const input = '0.05';
|
||||||
|
const formatted = formatReferralDiscountFactor(input);
|
||||||
|
expect(formatted).toBe('5.00%');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should format referral reward factor correctly', () => {
|
||||||
|
const input = '0.1';
|
||||||
|
const formatted = formatReferralRewardFactor(input);
|
||||||
|
expect(formatted).toBe('10.00%');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should format minimum staked tokens correctly', () => {
|
||||||
|
const input = '15';
|
||||||
|
const decimals = 18;
|
||||||
|
const formatted = formatMinimumStakedTokens(input, decimals);
|
||||||
|
expect(formatted).toBe('0.000000000000000015');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should format referral reward multiplier correctly', () => {
|
||||||
|
const input = '3';
|
||||||
|
const formatted = formatReferralRewardMultiplier(input);
|
||||||
|
expect(formatted).toBe('3x');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const mockReferralProposal = generateProposal({
|
||||||
|
terms: {
|
||||||
|
change: {
|
||||||
|
__typename: 'UpdateReferralProgram',
|
||||||
|
changes: {
|
||||||
|
benefitTiers: [
|
||||||
|
{
|
||||||
|
minimumEpochs: 6,
|
||||||
|
minimumRunningNotionalTakerVolume: '10000',
|
||||||
|
referralDiscountFactor: '0.001',
|
||||||
|
referralRewardFactor: '0.001',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minimumEpochs: 24,
|
||||||
|
minimumRunningNotionalTakerVolume: '500000',
|
||||||
|
referralDiscountFactor: '0.005',
|
||||||
|
referralRewardFactor: '0.005',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minimumEpochs: 48,
|
||||||
|
minimumRunningNotionalTakerVolume: '1000000',
|
||||||
|
referralDiscountFactor: '0.01',
|
||||||
|
referralRewardFactor: '0.01',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
endOfProgramTimestamp: '2026-10-03T10:34:34Z',
|
||||||
|
windowLength: 3,
|
||||||
|
stakingTiers: [
|
||||||
|
{
|
||||||
|
minimumStakedTokens: '1',
|
||||||
|
referralRewardMultiplier: '1',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minimumStakedTokens: '2',
|
||||||
|
referralRewardMultiplier: '2',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minimumStakedTokens: '5',
|
||||||
|
referralRewardMultiplier: '3',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('<ProposalReferralProgramDetails />', () => {
|
||||||
|
it('should not render if proposal is null', () => {
|
||||||
|
render(<ProposalReferralProgramDetails proposal={null} />);
|
||||||
|
expect(
|
||||||
|
screen.queryByTestId('proposal-referral-program-details')
|
||||||
|
).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not render if __typename is not UpdateReferralProgram', () => {
|
||||||
|
const updateMarketProposal = generateProposal({
|
||||||
|
terms: {
|
||||||
|
change: {
|
||||||
|
__typename: 'UpdateMarket',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
render(<ProposalReferralProgramDetails proposal={updateMarketProposal} />);
|
||||||
|
expect(
|
||||||
|
screen.queryByTestId('proposal-referral-program-details')
|
||||||
|
).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not render if there are no relevant fields', () => {
|
||||||
|
const incompleteProposal = generateProposal({
|
||||||
|
terms: {
|
||||||
|
change: {
|
||||||
|
__typename: 'UpdateReferralProgram',
|
||||||
|
changes: {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
render(<ProposalReferralProgramDetails proposal={incompleteProposal} />);
|
||||||
|
expect(
|
||||||
|
screen.queryByTestId('proposal-referral-program-details')
|
||||||
|
).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should render relevant fields if present', () => {
|
||||||
|
render(<ProposalReferralProgramDetails proposal={mockReferralProposal} />);
|
||||||
|
expect(
|
||||||
|
screen.getByTestId('proposal-referral-program-window-length')
|
||||||
|
).toBeInTheDocument();
|
||||||
|
expect(
|
||||||
|
screen.getByTestId('proposal-referral-program-end-of-program-timestamp')
|
||||||
|
).toBeInTheDocument();
|
||||||
|
expect(
|
||||||
|
screen.getByTestId('proposal-referral-program-benefit-tiers')
|
||||||
|
).toBeInTheDocument();
|
||||||
|
expect(
|
||||||
|
screen.getByTestId('proposal-referral-program-benefit-tiers')
|
||||||
|
).toBeInTheDocument();
|
||||||
|
});
|
||||||
|
});
|
||||||
+233
@@ -0,0 +1,233 @@
|
|||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
|
import type { ProposalQuery } from '../../proposal/__generated__/Proposal';
|
||||||
|
import {
|
||||||
|
KeyValueTable,
|
||||||
|
KeyValueTableRow,
|
||||||
|
RoundedWrapper,
|
||||||
|
Tooltip,
|
||||||
|
} from '@vegaprotocol/ui-toolkit';
|
||||||
|
import { formatNumber } from '../../../../lib/format-number';
|
||||||
|
import {
|
||||||
|
formatDateWithLocalTimezone,
|
||||||
|
formatNumberPercentage,
|
||||||
|
toBigNum,
|
||||||
|
} from '@vegaprotocol/utils';
|
||||||
|
import BigNumber from 'bignumber.js';
|
||||||
|
import { useAppState } from '../../../../contexts/app-state/app-state-context';
|
||||||
|
|
||||||
|
interface ProposalReferralProgramDetailsProps {
|
||||||
|
proposal: ProposalQuery['proposal'];
|
||||||
|
}
|
||||||
|
|
||||||
|
export const formatEndOfProgramTimestamp = (value: string) => {
|
||||||
|
return formatDateWithLocalTimezone(new Date(value));
|
||||||
|
};
|
||||||
|
|
||||||
|
export const formatMinimumRunningNotionalTakerVolume = (value: string) => {
|
||||||
|
return formatNumber(toBigNum(value, 0), 0);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const formatReferralDiscountFactor = (value: string) => {
|
||||||
|
return formatNumberPercentage(new BigNumber(value).times(100));
|
||||||
|
};
|
||||||
|
|
||||||
|
export const formatReferralRewardFactor = (value: string) => {
|
||||||
|
return formatNumberPercentage(new BigNumber(value).times(100));
|
||||||
|
};
|
||||||
|
|
||||||
|
export const formatMinimumStakedTokens = (value: string, decimals: number) => {
|
||||||
|
return formatNumber(toBigNum(value, decimals));
|
||||||
|
};
|
||||||
|
|
||||||
|
export const formatReferralRewardMultiplier = (value: string) => {
|
||||||
|
return `${value}x`;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const ProposalReferralProgramDetails = ({
|
||||||
|
proposal,
|
||||||
|
}: ProposalReferralProgramDetailsProps) => {
|
||||||
|
const {
|
||||||
|
appState: { decimals },
|
||||||
|
} = useAppState();
|
||||||
|
const { t } = useTranslation();
|
||||||
|
if (proposal?.terms?.change?.__typename !== 'UpdateReferralProgram') {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const benefitTiers = proposal?.terms?.change?.changes?.benefitTiers;
|
||||||
|
const stakingTiers = proposal?.terms?.change?.changes?.stakingTiers;
|
||||||
|
const windowLength = proposal?.terms?.change?.changes?.windowLength;
|
||||||
|
const endOfProgramTimestamp =
|
||||||
|
proposal?.terms?.change?.changes?.endOfProgramTimestamp;
|
||||||
|
|
||||||
|
if (
|
||||||
|
!benefitTiers &&
|
||||||
|
!stakingTiers &&
|
||||||
|
!windowLength &&
|
||||||
|
!endOfProgramTimestamp
|
||||||
|
) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div data-testid="proposal-referral-program-details">
|
||||||
|
<RoundedWrapper paddingBottom={true}>
|
||||||
|
{windowLength && (
|
||||||
|
<div data-testid="proposal-referral-program-window-length">
|
||||||
|
<KeyValueTable>
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip description={t('WindowLengthDescription')}>
|
||||||
|
<span>{t('WindowLength')}</span>
|
||||||
|
</Tooltip>
|
||||||
|
{windowLength}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
</KeyValueTable>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{endOfProgramTimestamp && (
|
||||||
|
<div
|
||||||
|
className="mb-6"
|
||||||
|
data-testid="proposal-referral-program-end-of-program-timestamp"
|
||||||
|
>
|
||||||
|
<KeyValueTable>
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip description={t('EndOfProgramTimestampDescription')}>
|
||||||
|
<span>{t('EndOfProgramTimestamp')}</span>
|
||||||
|
</Tooltip>
|
||||||
|
{formatEndOfProgramTimestamp(endOfProgramTimestamp)}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
</KeyValueTable>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{benefitTiers && (
|
||||||
|
<div
|
||||||
|
className="mb-6"
|
||||||
|
data-testid="proposal-referral-program-benefit-tiers"
|
||||||
|
>
|
||||||
|
<h3 className="mb-3 uppercase font-semibold text-lg">
|
||||||
|
{t('BenefitTiers')}
|
||||||
|
</h3>
|
||||||
|
<KeyValueTable>
|
||||||
|
{benefitTiers
|
||||||
|
.sort((a, b) => a.minimumEpochs - b.minimumEpochs)
|
||||||
|
.map((benefitTier, index) => (
|
||||||
|
<div className="mb-4" key={index}>
|
||||||
|
<h4 className="font-semibold uppercase">
|
||||||
|
Tier {index + 1}
|
||||||
|
</h4>
|
||||||
|
{benefitTier.minimumEpochs && (
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip
|
||||||
|
description={t('BenefitTierMinimumEpochsDescription')}
|
||||||
|
>
|
||||||
|
<span>{t('BenefitTierMinimumEpochs')}</span>
|
||||||
|
</Tooltip>
|
||||||
|
{benefitTier.minimumEpochs}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
)}
|
||||||
|
{benefitTier.minimumRunningNotionalTakerVolume && (
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip
|
||||||
|
description={t(
|
||||||
|
'BenefitTierMinimumRunningNotionalTakerVolumeDescription'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<span>
|
||||||
|
{t('BenefitTierMinimumRunningNotionalTakerVolume')}
|
||||||
|
</span>
|
||||||
|
</Tooltip>
|
||||||
|
{formatMinimumRunningNotionalTakerVolume(
|
||||||
|
benefitTier.minimumRunningNotionalTakerVolume
|
||||||
|
)}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
)}
|
||||||
|
{benefitTier.referralDiscountFactor && (
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip
|
||||||
|
description={t(
|
||||||
|
'BenefitTierReferralDiscountFactorDescription'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<span>{t('BenefitTierReferralDiscountFactor')}</span>
|
||||||
|
</Tooltip>
|
||||||
|
{formatReferralDiscountFactor(
|
||||||
|
benefitTier.referralDiscountFactor
|
||||||
|
)}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
)}
|
||||||
|
{benefitTier.referralRewardFactor && (
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip
|
||||||
|
description={t(
|
||||||
|
'BenefitTierReferralRewardFactorDescription'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<span>{t('BenefitTierReferralRewardFactor')}</span>
|
||||||
|
</Tooltip>
|
||||||
|
{formatReferralRewardFactor(
|
||||||
|
benefitTier.referralRewardFactor
|
||||||
|
)}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</KeyValueTable>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{stakingTiers && (
|
||||||
|
<div data-testid="proposal-referral-program-staking-tiers">
|
||||||
|
<h3 className="mb-3 uppercase font-semibold text-lg">
|
||||||
|
{t('StakingTiers')}
|
||||||
|
</h3>
|
||||||
|
<KeyValueTable>
|
||||||
|
{stakingTiers
|
||||||
|
.sort(
|
||||||
|
(a, b) =>
|
||||||
|
Number(a.minimumStakedTokens) -
|
||||||
|
Number(b.minimumStakedTokens)
|
||||||
|
)
|
||||||
|
.map((stakingTier, index) => (
|
||||||
|
<div className="mb-4" key={index}>
|
||||||
|
{stakingTier.referralRewardMultiplier && (
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip
|
||||||
|
description={t(
|
||||||
|
'StakingTierReferralRewardMultiplierDescription'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<span>
|
||||||
|
{t('StakingTierReferralRewardMultiplier')}
|
||||||
|
</span>
|
||||||
|
</Tooltip>
|
||||||
|
{formatReferralRewardMultiplier(
|
||||||
|
stakingTier.referralRewardMultiplier
|
||||||
|
)}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
)}
|
||||||
|
{stakingTier.minimumStakedTokens && (
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip
|
||||||
|
description={t(
|
||||||
|
'StakingTierMinimumStakedTokensFactorDescription'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<span>{t('StakingTierMinimumStakedTokens')}</span>
|
||||||
|
</Tooltip>
|
||||||
|
{formatMinimumStakedTokens(
|
||||||
|
stakingTier.minimumStakedTokens,
|
||||||
|
decimals
|
||||||
|
)}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</KeyValueTable>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</RoundedWrapper>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
export * from './proposal-volume-discount-program-details';
|
||||||
+114
@@ -0,0 +1,114 @@
|
|||||||
|
import { render, screen } from '@testing-library/react';
|
||||||
|
import { ProposalVolumeDiscountProgramDetails } from './proposal-volume-discount-program-details';
|
||||||
|
import { generateProposal } from '../../test-helpers/generate-proposals';
|
||||||
|
|
||||||
|
jest.mock('../../../../contexts/app-state/app-state-context', () => ({
|
||||||
|
useAppState: () => ({
|
||||||
|
appState: {
|
||||||
|
decimals: 2,
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
}));
|
||||||
|
|
||||||
|
const mockReferralProposal = generateProposal({
|
||||||
|
terms: {
|
||||||
|
change: {
|
||||||
|
__typename: 'UpdateVolumeDiscountProgram',
|
||||||
|
benefitTiers: [
|
||||||
|
{
|
||||||
|
minimumRunningNotionalTakerVolume: '10000',
|
||||||
|
volumeDiscountFactor: '0.05',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minimumRunningNotionalTakerVolume: '50000',
|
||||||
|
volumeDiscountFactor: '0.1',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minimumRunningNotionalTakerVolume: '100000',
|
||||||
|
volumeDiscountFactor: '0.15',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minimumRunningNotionalTakerVolume: '250000',
|
||||||
|
volumeDiscountFactor: '0.2',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minimumRunningNotionalTakerVolume: '500000',
|
||||||
|
volumeDiscountFactor: '0.25',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minimumRunningNotionalTakerVolume: '1000000',
|
||||||
|
volumeDiscountFactor: '0.3',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minimumRunningNotionalTakerVolume: '1500000',
|
||||||
|
volumeDiscountFactor: '0.35',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
minimumRunningNotionalTakerVolume: '2000000',
|
||||||
|
volumeDiscountFactor: '0.4',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
endOfProgramTimestamp: '1970-01-01T00:00:01.791568493Z',
|
||||||
|
windowLength: 7,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('ProposalVolumeDiscountProgramDetails', () => {
|
||||||
|
it('should not render if proposal is null', () => {
|
||||||
|
render(<ProposalVolumeDiscountProgramDetails proposal={null} />);
|
||||||
|
expect(
|
||||||
|
screen.queryByTestId('proposal-volume-discount-program-details')
|
||||||
|
).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not render if __typename is not UpdateVolumeDiscountProgram', () => {
|
||||||
|
const updateMarketProposal = generateProposal({
|
||||||
|
terms: {
|
||||||
|
change: {
|
||||||
|
__typename: 'UpdateMarket',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
render(
|
||||||
|
<ProposalVolumeDiscountProgramDetails proposal={updateMarketProposal} />
|
||||||
|
);
|
||||||
|
expect(
|
||||||
|
screen.queryByTestId('proposal-volume-discount-program-details')
|
||||||
|
).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not render if there are no relevant fields', () => {
|
||||||
|
const incompleteProposal = generateProposal({
|
||||||
|
terms: {
|
||||||
|
change: {
|
||||||
|
__typename: 'UpdateVolumeDiscountProgram',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
render(
|
||||||
|
<ProposalVolumeDiscountProgramDetails proposal={incompleteProposal} />
|
||||||
|
);
|
||||||
|
expect(
|
||||||
|
screen.queryByTestId('proposal-volume-discount-program-details')
|
||||||
|
).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should render relevant fields if present', () => {
|
||||||
|
render(
|
||||||
|
<ProposalVolumeDiscountProgramDetails proposal={mockReferralProposal} />
|
||||||
|
);
|
||||||
|
expect(
|
||||||
|
screen.getByTestId('proposal-volume-discount-program-window-length')
|
||||||
|
).toBeInTheDocument();
|
||||||
|
expect(
|
||||||
|
screen.getByTestId(
|
||||||
|
'proposal-volume-discount-program-end-of-program-timestamp'
|
||||||
|
)
|
||||||
|
).toBeInTheDocument();
|
||||||
|
expect(
|
||||||
|
screen.getByTestId('proposal-volume-discount-program-benefit-tiers')
|
||||||
|
).toBeInTheDocument();
|
||||||
|
});
|
||||||
|
});
|
||||||
+130
@@ -0,0 +1,130 @@
|
|||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
|
import type { ProposalQuery } from '../../proposal/__generated__/Proposal';
|
||||||
|
import {
|
||||||
|
KeyValueTable,
|
||||||
|
KeyValueTableRow,
|
||||||
|
RoundedWrapper,
|
||||||
|
Tooltip,
|
||||||
|
} from '@vegaprotocol/ui-toolkit';
|
||||||
|
import {
|
||||||
|
formatEndOfProgramTimestamp,
|
||||||
|
formatMinimumRunningNotionalTakerVolume,
|
||||||
|
} from '../proposal-referral-program-details';
|
||||||
|
import { formatNumberPercentage } from '@vegaprotocol/utils';
|
||||||
|
import BigNumber from 'bignumber.js';
|
||||||
|
|
||||||
|
interface ProposalReferralProgramDetailsProps {
|
||||||
|
proposal: ProposalQuery['proposal'];
|
||||||
|
}
|
||||||
|
|
||||||
|
export const formatVolumeDiscountFactor = (value: string) => {
|
||||||
|
return formatNumberPercentage(new BigNumber(value).times(100));
|
||||||
|
};
|
||||||
|
|
||||||
|
export const ProposalVolumeDiscountProgramDetails = ({
|
||||||
|
proposal,
|
||||||
|
}: ProposalReferralProgramDetailsProps) => {
|
||||||
|
const { t } = useTranslation();
|
||||||
|
if (proposal?.terms?.change?.__typename !== 'UpdateVolumeDiscountProgram') {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const benefitTiers = proposal?.terms?.change?.benefitTiers;
|
||||||
|
const windowLength = proposal?.terms?.change?.windowLength;
|
||||||
|
const endOfProgramTimestamp = proposal?.terms?.change?.endOfProgramTimestamp;
|
||||||
|
|
||||||
|
if (!benefitTiers && !windowLength && !endOfProgramTimestamp) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div data-testid="proposal-volume-discount-program-details">
|
||||||
|
<RoundedWrapper paddingBottom={true}>
|
||||||
|
{windowLength && (
|
||||||
|
<div data-testid="proposal-volume-discount-program-window-length">
|
||||||
|
<KeyValueTable>
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip description={t('WindowLengthDescription')}>
|
||||||
|
<span>{t('WindowLength')}</span>
|
||||||
|
</Tooltip>
|
||||||
|
{windowLength}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
</KeyValueTable>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{endOfProgramTimestamp && (
|
||||||
|
<div
|
||||||
|
className="mb-6"
|
||||||
|
data-testid="proposal-volume-discount-program-end-of-program-timestamp"
|
||||||
|
>
|
||||||
|
<KeyValueTable>
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip description={t('EndOfProgramTimestampDescription')}>
|
||||||
|
<span>{t('EndOfProgramTimestamp')}</span>
|
||||||
|
</Tooltip>
|
||||||
|
{formatEndOfProgramTimestamp(endOfProgramTimestamp)}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
</KeyValueTable>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{benefitTiers && (
|
||||||
|
<div
|
||||||
|
className="mb-6"
|
||||||
|
data-testid="proposal-volume-discount-program-benefit-tiers"
|
||||||
|
>
|
||||||
|
<h3 className="mb-3 uppercase font-semibold text-lg">
|
||||||
|
{t('BenefitTiers')}
|
||||||
|
</h3>
|
||||||
|
<KeyValueTable>
|
||||||
|
{benefitTiers
|
||||||
|
.sort(
|
||||||
|
(a, b) =>
|
||||||
|
Number(a.minimumRunningNotionalTakerVolume) -
|
||||||
|
Number(b.minimumRunningNotionalTakerVolume)
|
||||||
|
)
|
||||||
|
.map((benefitTier, index) => (
|
||||||
|
<div className="mb-4" key={index}>
|
||||||
|
<h4 className="font-semibold uppercase">
|
||||||
|
Tier {index + 1}
|
||||||
|
</h4>
|
||||||
|
{benefitTier.minimumRunningNotionalTakerVolume && (
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip
|
||||||
|
description={t(
|
||||||
|
'BenefitTierMinimumRunningNotionalTakerVolumeDescription'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<span>
|
||||||
|
{t('BenefitTierMinimumRunningNotionalTakerVolume')}
|
||||||
|
</span>
|
||||||
|
</Tooltip>
|
||||||
|
{formatMinimumRunningNotionalTakerVolume(
|
||||||
|
benefitTier.minimumRunningNotionalTakerVolume
|
||||||
|
)}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
)}
|
||||||
|
{benefitTier.volumeDiscountFactor && (
|
||||||
|
<KeyValueTableRow>
|
||||||
|
<Tooltip
|
||||||
|
description={t(
|
||||||
|
'BenefitTierVolumeDiscountFactorDescription'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<span>{t('BenefitTierVolumeDiscountFactor')}</span>
|
||||||
|
</Tooltip>
|
||||||
|
{formatVolumeDiscountFactor(
|
||||||
|
benefitTier.volumeDiscountFactor
|
||||||
|
)}
|
||||||
|
</KeyValueTableRow>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</KeyValueTable>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</RoundedWrapper>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -6,6 +6,8 @@ import { ProposalDescription } from '../proposal-description';
|
|||||||
import { ProposalChangeTable } from '../proposal-change-table';
|
import { ProposalChangeTable } from '../proposal-change-table';
|
||||||
import { ProposalJson } from '../proposal-json';
|
import { ProposalJson } from '../proposal-json';
|
||||||
import { ProposalAssetDetails } from '../proposal-asset-details';
|
import { ProposalAssetDetails } from '../proposal-asset-details';
|
||||||
|
import { ProposalReferralProgramDetails } from '../proposal-referral-program-details';
|
||||||
|
import { ProposalVolumeDiscountProgramDetails } from '../proposal-volume-discount-program-details';
|
||||||
import { UserVote } from '../vote-details';
|
import { UserVote } from '../vote-details';
|
||||||
import { ListAsset } from '../list-asset';
|
import { ListAsset } from '../list-asset';
|
||||||
import Routes from '../../../routes';
|
import Routes from '../../../routes';
|
||||||
@@ -113,6 +115,15 @@ export const Proposal = ({
|
|||||||
// TODO: check minVoterBalance for 'CancelTransfer'
|
// TODO: check minVoterBalance for 'CancelTransfer'
|
||||||
minVoterBalance =
|
minVoterBalance =
|
||||||
networkParams.governance_proposal_freeform_minVoterBalance;
|
networkParams.governance_proposal_freeform_minVoterBalance;
|
||||||
|
break;
|
||||||
|
case 'UpdateReferralProgram':
|
||||||
|
minVoterBalance =
|
||||||
|
networkParams.governance_proposal_referralProgram_minVoterBalance;
|
||||||
|
break;
|
||||||
|
case 'UpdateVolumeDiscountProgram':
|
||||||
|
minVoterBalance =
|
||||||
|
networkParams.governance_proposal_VolumeDiscountProgram_minVoterBalance;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -220,6 +231,18 @@ export const Proposal = ({
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
{proposal.terms.change.__typename === 'UpdateReferralProgram' && (
|
||||||
|
<div className="mb-4">
|
||||||
|
<ProposalReferralProgramDetails proposal={proposal} />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{proposal.terms.change.__typename === 'UpdateVolumeDiscountProgram' && (
|
||||||
|
<div className="mb-4">
|
||||||
|
<ProposalVolumeDiscountProgramDetails proposal={proposal} />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
{governanceTransferDetails}
|
{governanceTransferDetails}
|
||||||
|
|
||||||
<div className="mb-10">
|
<div className="mb-10">
|
||||||
|
|||||||
@@ -19,6 +19,8 @@ export const useProposalNetworkParams = ({
|
|||||||
NetworkParams.governance_proposal_market_requiredMajority,
|
NetworkParams.governance_proposal_market_requiredMajority,
|
||||||
NetworkParams.governance_proposal_market_requiredParticipation,
|
NetworkParams.governance_proposal_market_requiredParticipation,
|
||||||
NetworkParams.governance_proposal_updateAsset_requiredMajority,
|
NetworkParams.governance_proposal_updateAsset_requiredMajority,
|
||||||
|
NetworkParams.governance_proposal_referralProgram_requiredMajority,
|
||||||
|
NetworkParams.governance_proposal_referralProgram_requiredParticipation,
|
||||||
NetworkParams.governance_proposal_updateAsset_requiredParticipation,
|
NetworkParams.governance_proposal_updateAsset_requiredParticipation,
|
||||||
NetworkParams.governance_proposal_asset_requiredMajority,
|
NetworkParams.governance_proposal_asset_requiredMajority,
|
||||||
NetworkParams.governance_proposal_asset_requiredParticipation,
|
NetworkParams.governance_proposal_asset_requiredParticipation,
|
||||||
@@ -26,6 +28,8 @@ export const useProposalNetworkParams = ({
|
|||||||
NetworkParams.governance_proposal_updateNetParam_requiredParticipation,
|
NetworkParams.governance_proposal_updateNetParam_requiredParticipation,
|
||||||
NetworkParams.governance_proposal_freeform_requiredMajority,
|
NetworkParams.governance_proposal_freeform_requiredMajority,
|
||||||
NetworkParams.governance_proposal_freeform_requiredParticipation,
|
NetworkParams.governance_proposal_freeform_requiredParticipation,
|
||||||
|
NetworkParams.governance_proposal_VolumeDiscountProgram_requiredMajority,
|
||||||
|
NetworkParams.governance_proposal_VolumeDiscountProgram_requiredParticipation,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const fallback = {
|
const fallback = {
|
||||||
@@ -91,6 +95,22 @@ export const useProposalNetworkParams = ({
|
|||||||
params.governance_proposal_freeform_requiredParticipation
|
params.governance_proposal_freeform_requiredParticipation
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
|
case 'UpdateReferralProgram':
|
||||||
|
return {
|
||||||
|
requiredMajority:
|
||||||
|
params.governance_proposal_referralProgram_requiredMajority,
|
||||||
|
requiredParticipation: new BigNumber(
|
||||||
|
params.governance_proposal_referralProgram_requiredParticipation
|
||||||
|
),
|
||||||
|
};
|
||||||
|
case 'UpdateVolumeDiscountProgram':
|
||||||
|
return {
|
||||||
|
requiredMajority:
|
||||||
|
params.governance_proposal_VolumeDiscountProgram_requiredMajority,
|
||||||
|
requiredParticipation: new BigNumber(
|
||||||
|
params.governance_proposal_VolumeDiscountProgram_requiredParticipation
|
||||||
|
),
|
||||||
|
};
|
||||||
default:
|
default:
|
||||||
return fallback;
|
return fallback;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,10 +43,50 @@ fragment UpdateMarketState on Proposal {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fragment UpdateReferralProgram on Proposal {
|
||||||
|
terms {
|
||||||
|
change {
|
||||||
|
... on UpdateReferralProgram {
|
||||||
|
changes {
|
||||||
|
benefitTiers {
|
||||||
|
minimumEpochs
|
||||||
|
minimumRunningNotionalTakerVolume
|
||||||
|
referralDiscountFactor
|
||||||
|
referralRewardFactor
|
||||||
|
}
|
||||||
|
endOfProgramTimestamp
|
||||||
|
windowLength
|
||||||
|
stakingTiers {
|
||||||
|
minimumStakedTokens
|
||||||
|
referralRewardMultiplier
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fragment UpdateVolumeDiscountProgram on Proposal {
|
||||||
|
terms {
|
||||||
|
change {
|
||||||
|
... on UpdateVolumeDiscountProgram {
|
||||||
|
benefitTiers {
|
||||||
|
minimumRunningNotionalTakerVolume
|
||||||
|
volumeDiscountFactor
|
||||||
|
}
|
||||||
|
endOfProgramTimestamp
|
||||||
|
windowLength
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
query Proposal(
|
query Proposal(
|
||||||
$proposalId: ID!
|
$proposalId: ID!
|
||||||
$includeNewMarketProductField: Boolean!
|
$includeNewMarketProductField: Boolean!
|
||||||
$includeUpdateMarketState: Boolean!
|
$includeUpdateMarketState: Boolean!
|
||||||
|
$includeUpdateReferralProgram: Boolean!
|
||||||
|
$includeUpdateVolumeDiscountProgram: Boolean!
|
||||||
) {
|
) {
|
||||||
proposal(id: $proposalId) {
|
proposal(id: $proposalId) {
|
||||||
id
|
id
|
||||||
@@ -64,6 +104,9 @@ query Proposal(
|
|||||||
errorDetails
|
errorDetails
|
||||||
...NewMarketProductField @include(if: $includeNewMarketProductField)
|
...NewMarketProductField @include(if: $includeNewMarketProductField)
|
||||||
...UpdateMarketState @include(if: $includeUpdateMarketState)
|
...UpdateMarketState @include(if: $includeUpdateMarketState)
|
||||||
|
...UpdateReferralProgram @include(if: $includeUpdateReferralProgram)
|
||||||
|
...UpdateVolumeDiscountProgram
|
||||||
|
@include(if: $includeUpdateVolumeDiscountProgram)
|
||||||
terms {
|
terms {
|
||||||
closingDatetime
|
closingDatetime
|
||||||
enactmentDatetime
|
enactmentDatetime
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -36,6 +36,8 @@ export const ProposalContainer = () => {
|
|||||||
NetworkParams.governance_proposal_updateAsset_minVoterBalance,
|
NetworkParams.governance_proposal_updateAsset_minVoterBalance,
|
||||||
NetworkParams.governance_proposal_updateNetParam_minVoterBalance,
|
NetworkParams.governance_proposal_updateNetParam_minVoterBalance,
|
||||||
NetworkParams.governance_proposal_freeform_minVoterBalance,
|
NetworkParams.governance_proposal_freeform_minVoterBalance,
|
||||||
|
NetworkParams.governance_proposal_referralProgram_minVoterBalance,
|
||||||
|
NetworkParams.governance_proposal_VolumeDiscountProgram_minVoterBalance,
|
||||||
NetworkParams.spam_protection_voting_min_tokens,
|
NetworkParams.spam_protection_voting_min_tokens,
|
||||||
NetworkParams.governance_proposal_market_requiredMajority,
|
NetworkParams.governance_proposal_market_requiredMajority,
|
||||||
NetworkParams.governance_proposal_updateMarket_requiredMajority,
|
NetworkParams.governance_proposal_updateMarket_requiredMajority,
|
||||||
@@ -44,6 +46,8 @@ export const ProposalContainer = () => {
|
|||||||
NetworkParams.governance_proposal_updateAsset_requiredMajority,
|
NetworkParams.governance_proposal_updateAsset_requiredMajority,
|
||||||
NetworkParams.governance_proposal_updateNetParam_requiredMajority,
|
NetworkParams.governance_proposal_updateNetParam_requiredMajority,
|
||||||
NetworkParams.governance_proposal_freeform_requiredMajority,
|
NetworkParams.governance_proposal_freeform_requiredMajority,
|
||||||
|
NetworkParams.governance_proposal_referralProgram_requiredMajority,
|
||||||
|
NetworkParams.governance_proposal_VolumeDiscountProgram_requiredMajority,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@@ -57,6 +61,8 @@ export const ProposalContainer = () => {
|
|||||||
proposalId: params.proposalId || '',
|
proposalId: params.proposalId || '',
|
||||||
includeNewMarketProductField: !!FLAGS.PRODUCT_PERPETUALS,
|
includeNewMarketProductField: !!FLAGS.PRODUCT_PERPETUALS,
|
||||||
includeUpdateMarketState: !!FLAGS.UPDATE_MARKET_STATE,
|
includeUpdateMarketState: !!FLAGS.UPDATE_MARKET_STATE,
|
||||||
|
includeUpdateReferralProgram: !!FLAGS.REFERRALS,
|
||||||
|
includeUpdateVolumeDiscountProgram: !!FLAGS.VOLUME_DISCOUNTS,
|
||||||
},
|
},
|
||||||
skip: !params.proposalId,
|
skip: !params.proposalId,
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -43,6 +43,44 @@ fragment UpdateMarketStates on Proposal {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fragment UpdateReferralPrograms on Proposal {
|
||||||
|
terms {
|
||||||
|
change {
|
||||||
|
... on UpdateReferralProgram {
|
||||||
|
changes {
|
||||||
|
benefitTiers {
|
||||||
|
minimumEpochs
|
||||||
|
minimumRunningNotionalTakerVolume
|
||||||
|
referralDiscountFactor
|
||||||
|
referralRewardFactor
|
||||||
|
}
|
||||||
|
endOfProgramTimestamp
|
||||||
|
windowLength
|
||||||
|
stakingTiers {
|
||||||
|
minimumStakedTokens
|
||||||
|
referralRewardMultiplier
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fragment UpdateVolumeDiscountPrograms on Proposal {
|
||||||
|
terms {
|
||||||
|
change {
|
||||||
|
... on UpdateVolumeDiscountProgram {
|
||||||
|
benefitTiers {
|
||||||
|
minimumRunningNotionalTakerVolume
|
||||||
|
volumeDiscountFactor
|
||||||
|
}
|
||||||
|
endOfProgramTimestamp
|
||||||
|
windowLength
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fragment ProposalFields on Proposal {
|
fragment ProposalFields on Proposal {
|
||||||
id
|
id
|
||||||
rationale {
|
rationale {
|
||||||
@@ -127,6 +165,8 @@ fragment ProposalFields on Proposal {
|
|||||||
query Proposals(
|
query Proposals(
|
||||||
$includeNewMarketProductFields: Boolean!
|
$includeNewMarketProductFields: Boolean!
|
||||||
$includeUpdateMarketStates: Boolean!
|
$includeUpdateMarketStates: Boolean!
|
||||||
|
$includeUpdateReferralPrograms: Boolean!
|
||||||
|
$includeUpdateVolumeDiscountPrograms: Boolean!
|
||||||
) {
|
) {
|
||||||
proposalsConnection {
|
proposalsConnection {
|
||||||
edges {
|
edges {
|
||||||
@@ -134,6 +174,9 @@ query Proposals(
|
|||||||
...ProposalFields
|
...ProposalFields
|
||||||
...NewMarketProductFields @include(if: $includeNewMarketProductFields)
|
...NewMarketProductFields @include(if: $includeNewMarketProductFields)
|
||||||
...UpdateMarketStates @include(if: $includeUpdateMarketStates)
|
...UpdateMarketStates @include(if: $includeUpdateMarketStates)
|
||||||
|
...UpdateReferralPrograms @include(if: $includeUpdateReferralPrograms)
|
||||||
|
...UpdateVolumeDiscountPrograms
|
||||||
|
@include(if: $includeUpdateVolumeDiscountPrograms)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+55
-3
@@ -7,15 +7,21 @@ export type NewMarketProductFieldsFragment = { __typename?: 'Proposal', terms: {
|
|||||||
|
|
||||||
export type UpdateMarketStatesFragment = { __typename?: 'Proposal', terms: { __typename?: 'ProposalTerms', change: { __typename?: 'CancelTransfer' } | { __typename?: 'NewAsset' } | { __typename?: 'NewFreeform' } | { __typename?: 'NewMarket' } | { __typename?: 'NewSpotMarket' } | { __typename?: 'NewTransfer' } | { __typename?: 'UpdateAsset' } | { __typename?: 'UpdateMarket' } | { __typename?: 'UpdateMarketState', updateType: Types.MarketUpdateType, price?: string | null, market: { __typename?: 'Market', decimalPlaces: number, id: string, tradableInstrument: { __typename?: 'TradableInstrument', instrument: { __typename?: 'Instrument', name: string, code: string, product: { __typename: 'Future', quoteName: string } | { __typename: 'Perpetual', quoteName: string } | { __typename: 'Spot' } } } } } | { __typename?: 'UpdateNetworkParameter' } | { __typename?: 'UpdateReferralProgram' } | { __typename?: 'UpdateSpotMarket' } | { __typename?: 'UpdateVolumeDiscountProgram' } } };
|
export type UpdateMarketStatesFragment = { __typename?: 'Proposal', terms: { __typename?: 'ProposalTerms', change: { __typename?: 'CancelTransfer' } | { __typename?: 'NewAsset' } | { __typename?: 'NewFreeform' } | { __typename?: 'NewMarket' } | { __typename?: 'NewSpotMarket' } | { __typename?: 'NewTransfer' } | { __typename?: 'UpdateAsset' } | { __typename?: 'UpdateMarket' } | { __typename?: 'UpdateMarketState', updateType: Types.MarketUpdateType, price?: string | null, market: { __typename?: 'Market', decimalPlaces: number, id: string, tradableInstrument: { __typename?: 'TradableInstrument', instrument: { __typename?: 'Instrument', name: string, code: string, product: { __typename: 'Future', quoteName: string } | { __typename: 'Perpetual', quoteName: string } | { __typename: 'Spot' } } } } } | { __typename?: 'UpdateNetworkParameter' } | { __typename?: 'UpdateReferralProgram' } | { __typename?: 'UpdateSpotMarket' } | { __typename?: 'UpdateVolumeDiscountProgram' } } };
|
||||||
|
|
||||||
|
export type UpdateReferralProgramsFragment = { __typename?: 'Proposal', terms: { __typename?: 'ProposalTerms', change: { __typename?: 'CancelTransfer' } | { __typename?: 'NewAsset' } | { __typename?: 'NewFreeform' } | { __typename?: 'NewMarket' } | { __typename?: 'NewSpotMarket' } | { __typename?: 'NewTransfer' } | { __typename?: 'UpdateAsset' } | { __typename?: 'UpdateMarket' } | { __typename?: 'UpdateMarketState' } | { __typename?: 'UpdateNetworkParameter' } | { __typename?: 'UpdateReferralProgram', changes: { __typename?: 'ReferralProgram', endOfProgramTimestamp: string, windowLength: number, benefitTiers: Array<{ __typename?: 'BenefitTier', minimumEpochs: number, minimumRunningNotionalTakerVolume: string, referralDiscountFactor: string, referralRewardFactor: string }>, stakingTiers: Array<{ __typename?: 'StakingTier', minimumStakedTokens: string, referralRewardMultiplier: string }> } } | { __typename?: 'UpdateSpotMarket' } | { __typename?: 'UpdateVolumeDiscountProgram' } } };
|
||||||
|
|
||||||
|
export type UpdateVolumeDiscountProgramsFragment = { __typename?: 'Proposal', terms: { __typename?: 'ProposalTerms', change: { __typename?: 'CancelTransfer' } | { __typename?: 'NewAsset' } | { __typename?: 'NewFreeform' } | { __typename?: 'NewMarket' } | { __typename?: 'NewSpotMarket' } | { __typename?: 'NewTransfer' } | { __typename?: 'UpdateAsset' } | { __typename?: 'UpdateMarket' } | { __typename?: 'UpdateMarketState' } | { __typename?: 'UpdateNetworkParameter' } | { __typename?: 'UpdateReferralProgram' } | { __typename?: 'UpdateSpotMarket' } | { __typename?: 'UpdateVolumeDiscountProgram', endOfProgramTimestamp: any, windowLength: number, benefitTiers: Array<{ __typename?: 'VolumeBenefitTier', minimumRunningNotionalTakerVolume: string, volumeDiscountFactor: string }> } } };
|
||||||
|
|
||||||
export type ProposalFieldsFragment = { __typename?: 'Proposal', id?: string | null, reference: string, state: Types.ProposalState, datetime: any, rejectionReason?: Types.ProposalRejectionReason | null, errorDetails?: string | null, rationale: { __typename?: 'ProposalRationale', title: string, description: string }, party: { __typename?: 'Party', id: string }, terms: { __typename?: 'ProposalTerms', closingDatetime: any, enactmentDatetime?: any | null, change: { __typename?: 'CancelTransfer' } | { __typename: 'NewAsset', name: string, symbol: string, decimals: number, quantum: string, source: { __typename?: 'BuiltinAsset', maxFaucetAmountMint: string } | { __typename?: 'ERC20', contractAddress: string, withdrawThreshold: string, lifetimeLimit: string } } | { __typename?: 'NewFreeform' } | { __typename?: 'NewMarket', instrument: { __typename?: 'InstrumentConfiguration', name: string, code: string, futureProduct?: { __typename?: 'FutureProduct', settlementAsset: { __typename?: 'Asset', symbol: string } } | null } } | { __typename?: 'NewSpotMarket' } | { __typename?: 'NewTransfer' } | { __typename?: 'UpdateAsset', quantum: string, assetId: string, source: { __typename?: 'UpdateERC20', lifetimeLimit: string, withdrawThreshold: string } } | { __typename?: 'UpdateMarket', marketId: string } | { __typename?: 'UpdateMarketState' } | { __typename?: 'UpdateNetworkParameter', networkParameter: { __typename?: 'NetworkParameter', key: string, value: string } } | { __typename?: 'UpdateReferralProgram' } | { __typename?: 'UpdateSpotMarket' } | { __typename?: 'UpdateVolumeDiscountProgram' } }, votes: { __typename?: 'ProposalVotes', yes: { __typename?: 'ProposalVoteSide', totalTokens: string, totalNumber: string, totalEquityLikeShareWeight: string }, no: { __typename?: 'ProposalVoteSide', totalTokens: string, totalNumber: string, totalEquityLikeShareWeight: string } } };
|
export type ProposalFieldsFragment = { __typename?: 'Proposal', id?: string | null, reference: string, state: Types.ProposalState, datetime: any, rejectionReason?: Types.ProposalRejectionReason | null, errorDetails?: string | null, rationale: { __typename?: 'ProposalRationale', title: string, description: string }, party: { __typename?: 'Party', id: string }, terms: { __typename?: 'ProposalTerms', closingDatetime: any, enactmentDatetime?: any | null, change: { __typename?: 'CancelTransfer' } | { __typename: 'NewAsset', name: string, symbol: string, decimals: number, quantum: string, source: { __typename?: 'BuiltinAsset', maxFaucetAmountMint: string } | { __typename?: 'ERC20', contractAddress: string, withdrawThreshold: string, lifetimeLimit: string } } | { __typename?: 'NewFreeform' } | { __typename?: 'NewMarket', instrument: { __typename?: 'InstrumentConfiguration', name: string, code: string, futureProduct?: { __typename?: 'FutureProduct', settlementAsset: { __typename?: 'Asset', symbol: string } } | null } } | { __typename?: 'NewSpotMarket' } | { __typename?: 'NewTransfer' } | { __typename?: 'UpdateAsset', quantum: string, assetId: string, source: { __typename?: 'UpdateERC20', lifetimeLimit: string, withdrawThreshold: string } } | { __typename?: 'UpdateMarket', marketId: string } | { __typename?: 'UpdateMarketState' } | { __typename?: 'UpdateNetworkParameter', networkParameter: { __typename?: 'NetworkParameter', key: string, value: string } } | { __typename?: 'UpdateReferralProgram' } | { __typename?: 'UpdateSpotMarket' } | { __typename?: 'UpdateVolumeDiscountProgram' } }, votes: { __typename?: 'ProposalVotes', yes: { __typename?: 'ProposalVoteSide', totalTokens: string, totalNumber: string, totalEquityLikeShareWeight: string }, no: { __typename?: 'ProposalVoteSide', totalTokens: string, totalNumber: string, totalEquityLikeShareWeight: string } } };
|
||||||
|
|
||||||
export type ProposalsQueryVariables = Types.Exact<{
|
export type ProposalsQueryVariables = Types.Exact<{
|
||||||
includeNewMarketProductFields: Types.Scalars['Boolean'];
|
includeNewMarketProductFields: Types.Scalars['Boolean'];
|
||||||
includeUpdateMarketStates: Types.Scalars['Boolean'];
|
includeUpdateMarketStates: Types.Scalars['Boolean'];
|
||||||
|
includeUpdateReferralPrograms: Types.Scalars['Boolean'];
|
||||||
|
includeUpdateVolumeDiscountPrograms: Types.Scalars['Boolean'];
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
|
|
||||||
export type ProposalsQuery = { __typename?: 'Query', proposalsConnection?: { __typename?: 'ProposalsConnection', edges?: Array<{ __typename?: 'ProposalEdge', node: { __typename?: 'Proposal', id?: string | null, reference: string, state: Types.ProposalState, datetime: any, rejectionReason?: Types.ProposalRejectionReason | null, errorDetails?: string | null, rationale: { __typename?: 'ProposalRationale', title: string, description: string }, party: { __typename?: 'Party', id: string }, terms: { __typename?: 'ProposalTerms', closingDatetime: any, enactmentDatetime?: any | null, change: { __typename?: 'CancelTransfer' } | { __typename: 'NewAsset', name: string, symbol: string, decimals: number, quantum: string, source: { __typename?: 'BuiltinAsset', maxFaucetAmountMint: string } | { __typename?: 'ERC20', contractAddress: string, withdrawThreshold: string, lifetimeLimit: string } } | { __typename?: 'NewFreeform' } | { __typename?: 'NewMarket', instrument: { __typename?: 'InstrumentConfiguration', name: string, code: string, futureProduct?: { __typename?: 'FutureProduct', settlementAsset: { __typename?: 'Asset', symbol: string } } | null, product?: { __typename: 'FutureProduct' } | { __typename: 'PerpetualProduct' } | { __typename: 'SpotProduct' } | null } } | { __typename?: 'NewSpotMarket' } | { __typename?: 'NewTransfer' } | { __typename?: 'UpdateAsset', quantum: string, assetId: string, source: { __typename?: 'UpdateERC20', lifetimeLimit: string, withdrawThreshold: string } } | { __typename?: 'UpdateMarket', marketId: string } | { __typename?: 'UpdateMarketState', updateType: Types.MarketUpdateType, price?: string | null, market: { __typename?: 'Market', decimalPlaces: number, id: string, tradableInstrument: { __typename?: 'TradableInstrument', instrument: { __typename?: 'Instrument', name: string, code: string, product: { __typename: 'Future', quoteName: string } | { __typename: 'Perpetual', quoteName: string } | { __typename: 'Spot' } } } } } | { __typename?: 'UpdateNetworkParameter', networkParameter: { __typename?: 'NetworkParameter', key: string, value: string } } | { __typename?: 'UpdateReferralProgram' } | { __typename?: 'UpdateSpotMarket' } | { __typename?: 'UpdateVolumeDiscountProgram' } }, votes: { __typename?: 'ProposalVotes', yes: { __typename?: 'ProposalVoteSide', totalTokens: string, totalNumber: string, totalEquityLikeShareWeight: string }, no: { __typename?: 'ProposalVoteSide', totalTokens: string, totalNumber: string, totalEquityLikeShareWeight: string } } } } | null> | null } | null };
|
export type ProposalsQuery = { __typename?: 'Query', proposalsConnection?: { __typename?: 'ProposalsConnection', edges?: Array<{ __typename?: 'ProposalEdge', node: { __typename?: 'Proposal', id?: string | null, reference: string, state: Types.ProposalState, datetime: any, rejectionReason?: Types.ProposalRejectionReason | null, errorDetails?: string | null, rationale: { __typename?: 'ProposalRationale', title: string, description: string }, party: { __typename?: 'Party', id: string }, terms: { __typename?: 'ProposalTerms', closingDatetime: any, enactmentDatetime?: any | null, change: { __typename?: 'CancelTransfer' } | { __typename: 'NewAsset', name: string, symbol: string, decimals: number, quantum: string, source: { __typename?: 'BuiltinAsset', maxFaucetAmountMint: string } | { __typename?: 'ERC20', contractAddress: string, withdrawThreshold: string, lifetimeLimit: string } } | { __typename?: 'NewFreeform' } | { __typename?: 'NewMarket', instrument: { __typename?: 'InstrumentConfiguration', name: string, code: string, futureProduct?: { __typename?: 'FutureProduct', settlementAsset: { __typename?: 'Asset', symbol: string } } | null, product?: { __typename: 'FutureProduct' } | { __typename: 'PerpetualProduct' } | { __typename: 'SpotProduct' } | null } } | { __typename?: 'NewSpotMarket' } | { __typename?: 'NewTransfer' } | { __typename?: 'UpdateAsset', quantum: string, assetId: string, source: { __typename?: 'UpdateERC20', lifetimeLimit: string, withdrawThreshold: string } } | { __typename?: 'UpdateMarket', marketId: string } | { __typename?: 'UpdateMarketState', updateType: Types.MarketUpdateType, price?: string | null, market: { __typename?: 'Market', decimalPlaces: number, id: string, tradableInstrument: { __typename?: 'TradableInstrument', instrument: { __typename?: 'Instrument', name: string, code: string, product: { __typename: 'Future', quoteName: string } | { __typename: 'Perpetual', quoteName: string } | { __typename: 'Spot' } } } } } | { __typename?: 'UpdateNetworkParameter', networkParameter: { __typename?: 'NetworkParameter', key: string, value: string } } | { __typename?: 'UpdateReferralProgram', changes: { __typename?: 'ReferralProgram', endOfProgramTimestamp: string, windowLength: number, benefitTiers: Array<{ __typename?: 'BenefitTier', minimumEpochs: number, minimumRunningNotionalTakerVolume: string, referralDiscountFactor: string, referralRewardFactor: string }>, stakingTiers: Array<{ __typename?: 'StakingTier', minimumStakedTokens: string, referralRewardMultiplier: string }> } } | { __typename?: 'UpdateSpotMarket' } | { __typename?: 'UpdateVolumeDiscountProgram', endOfProgramTimestamp: any, windowLength: number, benefitTiers: Array<{ __typename?: 'VolumeBenefitTier', minimumRunningNotionalTakerVolume: string, volumeDiscountFactor: string }> } }, votes: { __typename?: 'ProposalVotes', yes: { __typename?: 'ProposalVoteSide', totalTokens: string, totalNumber: string, totalEquityLikeShareWeight: string }, no: { __typename?: 'ProposalVoteSide', totalTokens: string, totalNumber: string, totalEquityLikeShareWeight: string } } } } | null> | null } | null };
|
||||||
|
|
||||||
export const NewMarketProductFieldsFragmentDoc = gql`
|
export const NewMarketProductFieldsFragmentDoc = gql`
|
||||||
fragment NewMarketProductFields on Proposal {
|
fragment NewMarketProductFields on Proposal {
|
||||||
@@ -64,6 +70,46 @@ export const UpdateMarketStatesFragmentDoc = gql`
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
export const UpdateReferralProgramsFragmentDoc = gql`
|
||||||
|
fragment UpdateReferralPrograms on Proposal {
|
||||||
|
terms {
|
||||||
|
change {
|
||||||
|
... on UpdateReferralProgram {
|
||||||
|
changes {
|
||||||
|
benefitTiers {
|
||||||
|
minimumEpochs
|
||||||
|
minimumRunningNotionalTakerVolume
|
||||||
|
referralDiscountFactor
|
||||||
|
referralRewardFactor
|
||||||
|
}
|
||||||
|
endOfProgramTimestamp
|
||||||
|
windowLength
|
||||||
|
stakingTiers {
|
||||||
|
minimumStakedTokens
|
||||||
|
referralRewardMultiplier
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
export const UpdateVolumeDiscountProgramsFragmentDoc = gql`
|
||||||
|
fragment UpdateVolumeDiscountPrograms on Proposal {
|
||||||
|
terms {
|
||||||
|
change {
|
||||||
|
... on UpdateVolumeDiscountProgram {
|
||||||
|
benefitTiers {
|
||||||
|
minimumRunningNotionalTakerVolume
|
||||||
|
volumeDiscountFactor
|
||||||
|
}
|
||||||
|
endOfProgramTimestamp
|
||||||
|
windowLength
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
export const ProposalFieldsFragmentDoc = gql`
|
export const ProposalFieldsFragmentDoc = gql`
|
||||||
fragment ProposalFields on Proposal {
|
fragment ProposalFields on Proposal {
|
||||||
id
|
id
|
||||||
@@ -147,20 +193,24 @@ export const ProposalFieldsFragmentDoc = gql`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
export const ProposalsDocument = gql`
|
export const ProposalsDocument = gql`
|
||||||
query Proposals($includeNewMarketProductFields: Boolean!, $includeUpdateMarketStates: Boolean!) {
|
query Proposals($includeNewMarketProductFields: Boolean!, $includeUpdateMarketStates: Boolean!, $includeUpdateReferralPrograms: Boolean!, $includeUpdateVolumeDiscountPrograms: Boolean!) {
|
||||||
proposalsConnection {
|
proposalsConnection {
|
||||||
edges {
|
edges {
|
||||||
node {
|
node {
|
||||||
...ProposalFields
|
...ProposalFields
|
||||||
...NewMarketProductFields @include(if: $includeNewMarketProductFields)
|
...NewMarketProductFields @include(if: $includeNewMarketProductFields)
|
||||||
...UpdateMarketStates @include(if: $includeUpdateMarketStates)
|
...UpdateMarketStates @include(if: $includeUpdateMarketStates)
|
||||||
|
...UpdateReferralPrograms @include(if: $includeUpdateReferralPrograms)
|
||||||
|
...UpdateVolumeDiscountPrograms @include(if: $includeUpdateVolumeDiscountPrograms)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
${ProposalFieldsFragmentDoc}
|
${ProposalFieldsFragmentDoc}
|
||||||
${NewMarketProductFieldsFragmentDoc}
|
${NewMarketProductFieldsFragmentDoc}
|
||||||
${UpdateMarketStatesFragmentDoc}`;
|
${UpdateMarketStatesFragmentDoc}
|
||||||
|
${UpdateReferralProgramsFragmentDoc}
|
||||||
|
${UpdateVolumeDiscountProgramsFragmentDoc}`;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* __useProposalsQuery__
|
* __useProposalsQuery__
|
||||||
@@ -176,6 +226,8 @@ ${UpdateMarketStatesFragmentDoc}`;
|
|||||||
* variables: {
|
* variables: {
|
||||||
* includeNewMarketProductFields: // value for 'includeNewMarketProductFields'
|
* includeNewMarketProductFields: // value for 'includeNewMarketProductFields'
|
||||||
* includeUpdateMarketStates: // value for 'includeUpdateMarketStates'
|
* includeUpdateMarketStates: // value for 'includeUpdateMarketStates'
|
||||||
|
* includeUpdateReferralPrograms: // value for 'includeUpdateReferralPrograms'
|
||||||
|
* includeUpdateVolumeDiscountPrograms: // value for 'includeUpdateVolumeDiscountPrograms'
|
||||||
* },
|
* },
|
||||||
* });
|
* });
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -49,6 +49,8 @@ export const ProposalsContainer = () => {
|
|||||||
variables: {
|
variables: {
|
||||||
includeNewMarketProductFields: !!FLAGS.PRODUCT_PERPETUALS,
|
includeNewMarketProductFields: !!FLAGS.PRODUCT_PERPETUALS,
|
||||||
includeUpdateMarketStates: !!FLAGS.UPDATE_MARKET_STATE,
|
includeUpdateMarketStates: !!FLAGS.UPDATE_MARKET_STATE,
|
||||||
|
includeUpdateReferralPrograms: !!FLAGS.REFERRALS,
|
||||||
|
includeUpdateVolumeDiscountPrograms: !!FLAGS.VOLUME_DISCOUNTS,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -41,6 +41,8 @@ export const RejectedProposalsContainer = () => {
|
|||||||
variables: {
|
variables: {
|
||||||
includeNewMarketProductFields: !!FLAGS.PRODUCT_PERPETUALS,
|
includeNewMarketProductFields: !!FLAGS.PRODUCT_PERPETUALS,
|
||||||
includeUpdateMarketStates: !!FLAGS.UPDATE_MARKET_STATE,
|
includeUpdateMarketStates: !!FLAGS.UPDATE_MARKET_STATE,
|
||||||
|
includeUpdateReferralPrograms: !!FLAGS.REFERRALS,
|
||||||
|
includeUpdateVolumeDiscountPrograms: !!FLAGS.VOLUME_DISCOUNTS,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -1,147 +0,0 @@
|
|||||||
.pre-loader {
|
|
||||||
display: flex;
|
|
||||||
width: 100%;
|
|
||||||
min-height: 100vh;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item {
|
|
||||||
width: 10px;
|
|
||||||
height: 10px;
|
|
||||||
background: #000;
|
|
||||||
}
|
|
||||||
.pre-loader .pre-loader-center {
|
|
||||||
align-items: center;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.pre-loader .pre-loader-wrapper {
|
|
||||||
width: 50px;
|
|
||||||
height: 50px;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(0) {
|
|
||||||
animation-delay: 0ms;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:first-child {
|
|
||||||
animation-delay: -0.1s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(2) {
|
|
||||||
animation-delay: 0.3s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(3) {
|
|
||||||
animation-delay: -0.45s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(4) {
|
|
||||||
animation-delay: 1s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(5) {
|
|
||||||
animation-delay: -0.75s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(6) {
|
|
||||||
animation-delay: 0.9s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(7) {
|
|
||||||
animation-delay: -1.4s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(8) {
|
|
||||||
animation-delay: 1.6s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(9) {
|
|
||||||
animation-delay: -0.45s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(10) {
|
|
||||||
animation-delay: 1.5s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(11) {
|
|
||||||
animation-delay: -2.75s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(12) {
|
|
||||||
animation-delay: 1.2s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(13) {
|
|
||||||
animation-delay: -1.95s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(14) {
|
|
||||||
animation-delay: 2.8s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(15) {
|
|
||||||
animation-delay: -0.75s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(16) {
|
|
||||||
animation-delay: 4s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(17) {
|
|
||||||
animation-delay: -0.85s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(18) {
|
|
||||||
animation-delay: 1.8s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(19) {
|
|
||||||
animation-delay: -1.9s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(20) {
|
|
||||||
animation-delay: 5s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(21) {
|
|
||||||
animation-delay: -5.25s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(22) {
|
|
||||||
animation-delay: 4.4s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(23) {
|
|
||||||
animation-delay: -5.75s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(24) {
|
|
||||||
animation-delay: 4.8s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(25) {
|
|
||||||
animation-delay: -5s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item {
|
|
||||||
animation: flickering 0.4s linear infinite alternate;
|
|
||||||
}
|
|
||||||
@keyframes flickering {
|
|
||||||
0% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
25% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
26% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
html.dark .pre-loader .loader-item {
|
|
||||||
background: #fff;
|
|
||||||
}
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
.pre-loader {
|
|
||||||
display: flex;
|
|
||||||
width: 100%;
|
|
||||||
min-height: 100vh;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
.loader-item {
|
|
||||||
width: 10px;
|
|
||||||
height: 10px;
|
|
||||||
background: black;
|
|
||||||
}
|
|
||||||
.pre-loader-center {
|
|
||||||
align-items: center;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.pre-loader-wrapper {
|
|
||||||
width: 50px;
|
|
||||||
height: 50px;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
|
||||||
@for $i from 0 through 25 {
|
|
||||||
.loader-item:nth-child(#{$i}) {
|
|
||||||
@if $i % 2 == 0 {
|
|
||||||
animation-delay: #{$i * 50 * random(5)}ms;
|
|
||||||
animation-direction: reverse;
|
|
||||||
} @else {
|
|
||||||
animation-delay: #{$i * -50 * random(5)}ms;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.loader-item {
|
|
||||||
animation: flickering 0.4s linear alternate infinite;
|
|
||||||
}
|
|
||||||
@keyframes flickering {
|
|
||||||
0% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
25% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
26% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
html.dark {
|
|
||||||
.pre-loader {
|
|
||||||
.loader-item {
|
|
||||||
background: white;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -58,7 +58,7 @@ describe('Market trading page', () => {
|
|||||||
// 6002-MDET-003
|
// 6002-MDET-003
|
||||||
cy.getByTestId(marketSummaryBlock).within(() => {
|
cy.getByTestId(marketSummaryBlock).within(() => {
|
||||||
cy.getByTestId(marketPrice).within(() => {
|
cy.getByTestId(marketPrice).within(() => {
|
||||||
cy.getByTestId(itemHeader).should('have.text', 'Price');
|
cy.getByTestId(itemHeader).should('have.text', 'Mark Price');
|
||||||
cy.getByTestId(itemValue).should('not.be.empty');
|
cy.getByTestId(itemValue).should('not.be.empty');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
import { MarketState } from '@vegaprotocol/types';
|
|
||||||
|
|
||||||
const oracleBannerDialogTrigger = 'oracle-banner-dialog-trigger';
|
|
||||||
const oracleBannerStatus = 'oracle-banner-status';
|
|
||||||
const oracleFullProfile = 'oracle-full-profile';
|
|
||||||
|
|
||||||
describe('oracle information', { tags: '@smoke' }, () => {
|
|
||||||
before(() => {
|
|
||||||
cy.setOnBoardingViewed();
|
|
||||||
cy.mockTradingPage(
|
|
||||||
MarketState.STATE_ACTIVE,
|
|
||||||
undefined,
|
|
||||||
undefined,
|
|
||||||
'COMPROMISED'
|
|
||||||
);
|
|
||||||
cy.mockSubscription();
|
|
||||||
cy.visit('/#/markets/market-0');
|
|
||||||
cy.wait('@Markets');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('show oracle banner', () => {
|
|
||||||
cy.getByTestId(oracleBannerStatus).should('contain.text', 'COMPROMISED');
|
|
||||||
cy.getByTestId(oracleBannerDialogTrigger)
|
|
||||||
.should('contain.text', 'Show more')
|
|
||||||
.click();
|
|
||||||
cy.getByTestId(oracleFullProfile).should('exist');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,127 +0,0 @@
|
|||||||
import { checkSorting } from '@vegaprotocol/cypress';
|
|
||||||
|
|
||||||
const dialogClose = 'dialog-close';
|
|
||||||
|
|
||||||
describe('accounts', { tags: '@smoke' }, () => {
|
|
||||||
beforeEach(() => {
|
|
||||||
cy.mockTradingPage();
|
|
||||||
cy.mockWeb3Provider();
|
|
||||||
cy.mockSubscription();
|
|
||||||
cy.setVegaWallet();
|
|
||||||
cy.visit('/#/markets/market-0');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should open usage breakdown dialog when clicked on used', () => {
|
|
||||||
cy.getByTestId('Collateral').click();
|
|
||||||
// 7001-COLL-009
|
|
||||||
cy.get('[col-id="used"]').contains('1.01').click();
|
|
||||||
const headers = ['Market', 'Account type', 'Balance', 'Margin health'];
|
|
||||||
cy.getByTestId('usage-breakdown').within(($headers) => {
|
|
||||||
cy.wrap($headers)
|
|
||||||
.get('.ag-header-cell-text')
|
|
||||||
.each(($header, i) => {
|
|
||||||
cy.wrap($header).should('have.text', headers[i]);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
cy.getByTestId(dialogClose).click();
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('sorting by ag-grid columns should work well', () => {
|
|
||||||
before(() => {
|
|
||||||
const dialogs = Cypress.$('[data-testid="dialog-close"]:visible');
|
|
||||||
if (dialogs.length > 0) {
|
|
||||||
dialogs.each((btn) => {
|
|
||||||
cy.wrap(btn).click();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
cy.contains('Loading...').should('not.exist');
|
|
||||||
});
|
|
||||||
// 7001-COLL-010
|
|
||||||
it('sorting by asset', () => {
|
|
||||||
cy.getByTestId('Collateral').click();
|
|
||||||
const marketsSortedDefault = ['tBTC', 'tEURO', 'tDAI', 'tBTC'];
|
|
||||||
const marketsSortedAsc = ['tBTC', 'tBTC', 'tDAI', 'tEURO'];
|
|
||||||
const marketsSortedDesc = Array.from(marketsSortedAsc).reverse();
|
|
||||||
checkSorting(
|
|
||||||
'asset.symbol',
|
|
||||||
marketsSortedDefault,
|
|
||||||
marketsSortedAsc,
|
|
||||||
marketsSortedDesc
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('sorting by total', () => {
|
|
||||||
cy.getByTestId('Collateral').click();
|
|
||||||
const marketsSortedDefault = [
|
|
||||||
'1,000.00002',
|
|
||||||
'1,000.01',
|
|
||||||
'1,000.00',
|
|
||||||
'1,000.00001',
|
|
||||||
];
|
|
||||||
const marketsSortedAsc = [
|
|
||||||
'1,000.00',
|
|
||||||
'1,000.00001',
|
|
||||||
'1,000.00002',
|
|
||||||
'1,000.01',
|
|
||||||
];
|
|
||||||
const marketsSortedDesc = Array.from(marketsSortedAsc).reverse();
|
|
||||||
|
|
||||||
checkSorting(
|
|
||||||
'total',
|
|
||||||
marketsSortedDefault,
|
|
||||||
marketsSortedAsc,
|
|
||||||
marketsSortedDesc
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('sorting by used', () => {
|
|
||||||
cy.getByTestId('Collateral').click();
|
|
||||||
// concat actual value with percentage value
|
|
||||||
// as cypress will pick up the entire cell contes
|
|
||||||
// textContent
|
|
||||||
const marketsSortedDefault = [
|
|
||||||
'0.00' + '0.00%',
|
|
||||||
'0.01' + '0.00%',
|
|
||||||
'0.00' + '0.00%',
|
|
||||||
'0.00' + '0.00%',
|
|
||||||
];
|
|
||||||
const marketsSortedAsc = [
|
|
||||||
'0.00' + '0.00%',
|
|
||||||
'0.00' + '0.00%',
|
|
||||||
'0.00' + '0.00%',
|
|
||||||
'0.01' + '0.00%',
|
|
||||||
];
|
|
||||||
const marketsSortedDesc = Array.from(marketsSortedAsc).reverse();
|
|
||||||
checkSorting(
|
|
||||||
'used',
|
|
||||||
marketsSortedDefault,
|
|
||||||
marketsSortedAsc,
|
|
||||||
marketsSortedDesc
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('sorting by available', () => {
|
|
||||||
cy.getByTestId('Collateral').click();
|
|
||||||
const marketsSortedDefault = [
|
|
||||||
'1,000.00002',
|
|
||||||
'1,000.00',
|
|
||||||
'1,000.00',
|
|
||||||
'1,000.00001',
|
|
||||||
];
|
|
||||||
const marketsSortedAsc = [
|
|
||||||
'1,000.00',
|
|
||||||
'1,000.00',
|
|
||||||
'1,000.00001',
|
|
||||||
'1,000.00002',
|
|
||||||
];
|
|
||||||
const marketsSortedDesc = Array.from(marketsSortedAsc).reverse();
|
|
||||||
|
|
||||||
checkSorting(
|
|
||||||
'available',
|
|
||||||
marketsSortedDefault,
|
|
||||||
marketsSortedAsc,
|
|
||||||
marketsSortedDesc
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,186 +0,0 @@
|
|||||||
import {
|
|
||||||
TIFlist,
|
|
||||||
orderTIFDropDown,
|
|
||||||
toggleLimit,
|
|
||||||
toggleMarket,
|
|
||||||
} from '../support/deal-ticket';
|
|
||||||
|
|
||||||
const tooltipContent = 'tooltip-content';
|
|
||||||
const reduceOnly = 'reduce-only';
|
|
||||||
const postOnly = 'post-only';
|
|
||||||
|
|
||||||
describe('time in force validation', { tags: '@smoke' }, () => {
|
|
||||||
before(() => {
|
|
||||||
cy.setVegaWallet();
|
|
||||||
cy.mockTradingPage();
|
|
||||||
cy.mockSubscription();
|
|
||||||
cy.clearAllLocalStorage();
|
|
||||||
cy.setOnBoardingViewed();
|
|
||||||
cy.visit('/#/markets/market-0');
|
|
||||||
cy.wait('@Markets');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('must have market order set up to IOC by default', function () {
|
|
||||||
// 7002-SORD-030
|
|
||||||
cy.getByTestId(toggleMarket).click();
|
|
||||||
cy.get(`[data-testid=${orderTIFDropDown}] option:selected`).should(
|
|
||||||
'have.text',
|
|
||||||
TIFlist.filter((item) => item.code === 'IOC')[0].text
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('must have time in force set to GTC for limit order', function () {
|
|
||||||
// 7002-SORD-031
|
|
||||||
cy.getByTestId(toggleLimit).click();
|
|
||||||
cy.get(`[data-testid=${orderTIFDropDown}] option:selected`).should(
|
|
||||||
'have.text',
|
|
||||||
TIFlist.filter((item) => item.code === 'GTC')[0].text
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('selections should be remembered', () => {
|
|
||||||
cy.getByTestId(orderTIFDropDown).select('TIME_IN_FORCE_GTT');
|
|
||||||
cy.getByTestId(toggleMarket).click();
|
|
||||||
cy.get(`[data-testid=${orderTIFDropDown}] option:selected`).should(
|
|
||||||
'have.text',
|
|
||||||
TIFlist.filter((item) => item.code === 'IOC')[0].text
|
|
||||||
);
|
|
||||||
cy.getByTestId(orderTIFDropDown).select('TIME_IN_FORCE_FOK');
|
|
||||||
cy.getByTestId(toggleLimit).click();
|
|
||||||
cy.get(`[data-testid=${orderTIFDropDown}] option:selected`).should(
|
|
||||||
'have.text',
|
|
||||||
TIFlist.filter((item) => item.code === 'GTT')[0].text
|
|
||||||
);
|
|
||||||
cy.getByTestId(toggleMarket).click();
|
|
||||||
cy.get(`[data-testid=${orderTIFDropDown}] option:selected`).should(
|
|
||||||
'have.text',
|
|
||||||
TIFlist.filter((item) => item.code === 'FOK')[0].text
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('limit order', () => {
|
|
||||||
before(() => {
|
|
||||||
cy.getByTestId(toggleLimit).click();
|
|
||||||
});
|
|
||||||
const validTIF = TIFlist;
|
|
||||||
validTIF.forEach((tif) => {
|
|
||||||
// 7002-SORD-023
|
|
||||||
// 7002-SORD-024
|
|
||||||
// 7002-SORD-025
|
|
||||||
// 7002-SORD-026
|
|
||||||
// 7002-SORD-027
|
|
||||||
// 7002-SORD-028
|
|
||||||
|
|
||||||
it(`must be able to select ${tif.code}`, function () {
|
|
||||||
cy.getByTestId(orderTIFDropDown).select(tif.value);
|
|
||||||
cy.get(`[data-testid=${orderTIFDropDown}] option:selected`).should(
|
|
||||||
'have.text',
|
|
||||||
tif.text
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('market order', () => {
|
|
||||||
before(() => {
|
|
||||||
cy.getByTestId(toggleMarket).click();
|
|
||||||
});
|
|
||||||
|
|
||||||
const validTIF = TIFlist.filter((tif) => ['FOK', 'IOC'].includes(tif.code));
|
|
||||||
const invalidTIF = TIFlist.filter(
|
|
||||||
(tif) => !['FOK', 'IOC'].includes(tif.code)
|
|
||||||
);
|
|
||||||
|
|
||||||
validTIF.forEach((tif) => {
|
|
||||||
// 7002-SORD-025
|
|
||||||
// 7002-SORD-026
|
|
||||||
|
|
||||||
it(`must be able to select ${tif.code}`, function () {
|
|
||||||
cy.getByTestId(orderTIFDropDown).select(tif.value);
|
|
||||||
cy.get(`[data-testid=${orderTIFDropDown}] option:selected`).should(
|
|
||||||
'have.text',
|
|
||||||
tif.text
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
invalidTIF.forEach((tif) => {
|
|
||||||
// 7002-SORD-023
|
|
||||||
// 7002-SORD-024
|
|
||||||
// 7002-SORD-027
|
|
||||||
// 7002-SORD-028
|
|
||||||
it(`must not be able to select ${tif.code}`, function () {
|
|
||||||
cy.getByTestId(orderTIFDropDown).should('not.contain', tif.text);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('post and reduce - market order', () => {
|
|
||||||
before(() => {
|
|
||||||
cy.getByTestId(toggleMarket).click();
|
|
||||||
});
|
|
||||||
|
|
||||||
const validTIF = TIFlist.filter((tif) => ['FOK', 'IOC'].includes(tif.code));
|
|
||||||
|
|
||||||
validTIF.forEach((tif) => {
|
|
||||||
// 7002-SORD-025
|
|
||||||
// 7002-SORD-026
|
|
||||||
|
|
||||||
it(`post and reduce order market for ${tif.code}`, function () {
|
|
||||||
// 7003-SORD-054
|
|
||||||
// 7003-SORD-055
|
|
||||||
// 7003-SORD-056
|
|
||||||
// 7003-SORD-057
|
|
||||||
|
|
||||||
cy.getByTestId(orderTIFDropDown).select(tif.value);
|
|
||||||
cy.get(`[data-testid=${orderTIFDropDown}] option:selected`).should(
|
|
||||||
'have.text',
|
|
||||||
tif.text
|
|
||||||
);
|
|
||||||
cy.getByTestId(postOnly).should('be.disabled');
|
|
||||||
cy.getByTestId(reduceOnly).should('be.enabled');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('post and reduce - limit order', () => {
|
|
||||||
before(() => {
|
|
||||||
cy.getByTestId(toggleLimit).click();
|
|
||||||
});
|
|
||||||
|
|
||||||
const validTIFLimit = TIFlist.filter((tif) =>
|
|
||||||
['GFA', 'GFN', 'GTC', 'GTT'].includes(tif.code)
|
|
||||||
);
|
|
||||||
|
|
||||||
validTIFLimit.forEach((tif) => {
|
|
||||||
it(`post and reduce order for limit ${tif.code}`, function () {
|
|
||||||
// 7003-SORD-054
|
|
||||||
// 7003-SORD-055
|
|
||||||
// 7003-SORD-056
|
|
||||||
// 7003-SORD-057
|
|
||||||
cy.getByTestId(orderTIFDropDown).select(tif.value);
|
|
||||||
cy.get(`[data-testid=${orderTIFDropDown}] option:selected`).should(
|
|
||||||
'have.text',
|
|
||||||
tif.text
|
|
||||||
);
|
|
||||||
cy.getByTestId(postOnly).should('be.enabled');
|
|
||||||
cy.getByTestId(reduceOnly).should('be.disabled');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
it(`can see explanation of what post only and reduce only is/does`, function () {
|
|
||||||
// 7003-SORD-058
|
|
||||||
cy.get('[for="post-only"]').should('have.text', 'Post only').realHover();
|
|
||||||
cy.getByTestId(tooltipContent).should(
|
|
||||||
'contain.text',
|
|
||||||
`"Post only" will ensure the order is not filled immediately but is placed on the order book as a passive order. When the order is processed it is either stopped (if it would not be filled immediately), or placed in the order book as a passive order until the price taker matches with it.`
|
|
||||||
);
|
|
||||||
cy.get('[for="reduce-only"]')
|
|
||||||
.should('have.text', 'Reduce only')
|
|
||||||
.realHover();
|
|
||||||
cy.getByTestId(tooltipContent).should(
|
|
||||||
'contain.text',
|
|
||||||
`"Reduce only" can be used only with non-persistent orders, such as "Fill or Kill" or "Immediate or Cancel".`
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
import { aliasGQLQuery } from '@vegaprotocol/cypress';
|
|
||||||
import { partyAssetsQuery } from '@vegaprotocol/mock';
|
|
||||||
|
|
||||||
describe('Portfolio page', { tags: '@smoke' }, () => {
|
|
||||||
beforeEach(() => {
|
|
||||||
cy.mockGQL((req) => {
|
|
||||||
aliasGQLQuery(req, 'PartyAssets', partyAssetsQuery());
|
|
||||||
});
|
|
||||||
cy.mockTradingPage();
|
|
||||||
cy.mockSubscription();
|
|
||||||
cy.setVegaWallet();
|
|
||||||
});
|
|
||||||
describe('Ledger entries', () => {
|
|
||||||
it('Download form should be properly rendered', () => {
|
|
||||||
// 7007-LEEN-001
|
|
||||||
cy.visit('/#/portfolio');
|
|
||||||
cy.getByTestId('"Ledger entries"').click();
|
|
||||||
cy.getByTestId('tab-ledger-entries').within(($headers) => {
|
|
||||||
cy.wrap($headers)
|
|
||||||
.getByTestId('ledger-download-button')
|
|
||||||
.should('be.visible');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,94 +0,0 @@
|
|||||||
const colHeader = '.ag-header-cell-text';
|
|
||||||
const colIdPrice = '[col-id=price]';
|
|
||||||
const colIdSize = '[col-id=size]';
|
|
||||||
const colIdCreatedAt = '[col-id=createdAt]';
|
|
||||||
const tradesTab = 'Trades';
|
|
||||||
const tradesTable = 'tab-trades';
|
|
||||||
|
|
||||||
describe('trades', { tags: '@smoke' }, () => {
|
|
||||||
before(() => {
|
|
||||||
cy.mockTradingPage();
|
|
||||||
cy.mockSubscription();
|
|
||||||
cy.setOnBoardingViewed();
|
|
||||||
cy.intercept('POST', '/graphql', (req) => {
|
|
||||||
if (req.body.operationName === 'Trades') {
|
|
||||||
req.alias = '@Trades';
|
|
||||||
}
|
|
||||||
});
|
|
||||||
cy.visit('/#/markets/market-0');
|
|
||||||
cy.getByTestId(tradesTab).click();
|
|
||||||
cy.wait('@Trades');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('show trades', () => {
|
|
||||||
// 6005-THIS-001
|
|
||||||
// 6005-THIS-002
|
|
||||||
cy.getByTestId(tradesTab).should('be.visible');
|
|
||||||
cy.getByTestId(tradesTable).should('be.visible');
|
|
||||||
cy.getByTestId(tradesTable).should('not.be.empty');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('show trades prices', () => {
|
|
||||||
// 6005-THIS-003
|
|
||||||
cy.getByTestId(tradesTable)
|
|
||||||
.get(`${colIdPrice} ${colHeader}`)
|
|
||||||
.first()
|
|
||||||
.should('have.text', 'Price');
|
|
||||||
cy.getByTestId(tradesTable)
|
|
||||||
.get(colIdPrice)
|
|
||||||
.each(($tradePrice) => {
|
|
||||||
cy.wrap($tradePrice).invoke('text').should('not.be.empty');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('show trades sizes', () => {
|
|
||||||
// 6005-THIS-004
|
|
||||||
cy.getByTestId(tradesTable)
|
|
||||||
.get(`${colIdSize} ${colHeader}`)
|
|
||||||
.first()
|
|
||||||
.should('have.text', 'Size');
|
|
||||||
cy.getByTestId(tradesTable)
|
|
||||||
.get(colIdSize)
|
|
||||||
.each(($tradeSize) => {
|
|
||||||
cy.wrap($tradeSize).invoke('text').should('not.be.empty');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('show trades date and time', () => {
|
|
||||||
// 6005-THIS-005
|
|
||||||
cy.getByTestId(tradesTable) // order table shares identical col id
|
|
||||||
.find(`${colIdCreatedAt} ${colHeader}`)
|
|
||||||
.should('have.text', 'Created at');
|
|
||||||
const dateTimeRegex = /(\d{1,2}):(\d{1,2}):(\d{1,2})/gm;
|
|
||||||
cy.getByTestId(tradesTable)
|
|
||||||
.get(`.ag-center-cols-container ${colIdCreatedAt}`)
|
|
||||||
.each(($tradeDateTime) => {
|
|
||||||
cy.wrap($tradeDateTime).invoke('text').should('match', dateTimeRegex);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('trades are sorted descending by datetime', () => {
|
|
||||||
// 6005-THIS-006
|
|
||||||
const dateTimes: Date[] = [];
|
|
||||||
cy.getByTestId(tradesTable)
|
|
||||||
.find(colIdCreatedAt)
|
|
||||||
.each(($tradeDateTime, index) => {
|
|
||||||
if (index != 0) {
|
|
||||||
//ignore header
|
|
||||||
dateTimes.push(new Date($tradeDateTime.text()));
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.then(() => {
|
|
||||||
expect(dateTimes).to.deep.equal(
|
|
||||||
dateTimes.sort((a, b) => b.getTime() - a.getTime())
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('copy price to deal ticket form', () => {
|
|
||||||
// 6005-THIS-007
|
|
||||||
cy.getByTestId('order-type-Limit').click();
|
|
||||||
cy.get(colIdPrice).last().should('be.visible').click();
|
|
||||||
cy.getByTestId('order-price').should('have.value', '171.16898');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,91 +0,0 @@
|
|||||||
import { selectAsset } from '../support/helpers';
|
|
||||||
|
|
||||||
const amountField = 'input[name="amount"]';
|
|
||||||
const amountShortName = 'input[name="amount"] + div + span.text-xs';
|
|
||||||
const assetSelection = 'select-asset';
|
|
||||||
const assetBalance = 'asset-balance';
|
|
||||||
const assetOption = 'rich-select-option';
|
|
||||||
const openTransferButton = 'open-transfer';
|
|
||||||
const submitTransferBtn = '[type="submit"]';
|
|
||||||
const toAddressField = '[name="toAddress"]';
|
|
||||||
const transferForm = 'transfer-form';
|
|
||||||
const ASSET_SEPOLIA_TBTC = 2;
|
|
||||||
const collateralTab = 'Collateral';
|
|
||||||
const toastCloseBtn = 'toast-close';
|
|
||||||
const toastContent = 'toast-content';
|
|
||||||
|
|
||||||
describe('withdraw actions', { tags: '@smoke', testIsolation: true }, () => {
|
|
||||||
beforeEach(() => {
|
|
||||||
cy.mockWeb3Provider();
|
|
||||||
cy.mockTradingPage();
|
|
||||||
cy.mockSubscription();
|
|
||||||
cy.setVegaWallet();
|
|
||||||
|
|
||||||
cy.visit('/#/portfolio');
|
|
||||||
cy.getByTestId(collateralTab).click();
|
|
||||||
cy.getByTestId(openTransferButton).click();
|
|
||||||
|
|
||||||
cy.wait('@Accounts');
|
|
||||||
cy.wait('@Assets');
|
|
||||||
cy.mockVegaWalletTransaction();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('key to key transfers by select key', () => {
|
|
||||||
// 1003-TRAN-001
|
|
||||||
// 1003-TRAN-006
|
|
||||||
// 1003-TRAN-007
|
|
||||||
// 1003-TRAN-008
|
|
||||||
// 1003-TRAN-009
|
|
||||||
// 1003-TRAN-010
|
|
||||||
// 1003-TRAN-023
|
|
||||||
cy.getByTestId(transferForm).should('be.visible');
|
|
||||||
cy.getByTestId(transferForm).find(toAddressField).select(1);
|
|
||||||
|
|
||||||
cy.getByTestId(assetSelection).click();
|
|
||||||
cy.getByTestId(assetOption);
|
|
||||||
cy.getByTestId(assetBalance).should('not.be.empty');
|
|
||||||
cy.getByTestId(assetOption).should('have.length.gt', 4);
|
|
||||||
|
|
||||||
let optionText: string;
|
|
||||||
cy.getByTestId(assetOption)
|
|
||||||
.eq(2)
|
|
||||||
.invoke('text')
|
|
||||||
.then((text: string) => {
|
|
||||||
optionText = text;
|
|
||||||
cy.getByTestId(assetOption).eq(2).click();
|
|
||||||
cy.getByTestId(assetSelection).should('have.text', optionText);
|
|
||||||
});
|
|
||||||
|
|
||||||
cy.getByTestId(transferForm)
|
|
||||||
.find(amountField)
|
|
||||||
.type('1', { delay: 100, force: true });
|
|
||||||
|
|
||||||
cy.getByTestId(transferForm).find(amountShortName).should('not.be.empty');
|
|
||||||
|
|
||||||
cy.getByTestId(transferForm).find(submitTransferBtn).click();
|
|
||||||
cy.getByTestId(toastContent).should(
|
|
||||||
'contain.text',
|
|
||||||
'Awaiting confirmation'
|
|
||||||
);
|
|
||||||
cy.getByTestId(toastCloseBtn).click();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('key to key transfers by enter manual key', () => {
|
|
||||||
//1003-TRAN-005
|
|
||||||
cy.getByTestId(transferForm).should('be.visible');
|
|
||||||
cy.contains('Enter manually').click();
|
|
||||||
cy.getByTestId(transferForm)
|
|
||||||
.find(toAddressField)
|
|
||||||
.type('7f9cf07d3a9905b1a61a1069f7a758855da428bc0f4a97de87f48644bfc25535');
|
|
||||||
selectAsset(ASSET_SEPOLIA_TBTC);
|
|
||||||
cy.getByTestId(transferForm)
|
|
||||||
.find(amountField)
|
|
||||||
.type('1', { delay: 100, force: true });
|
|
||||||
cy.getByTestId(transferForm).find(submitTransferBtn).click();
|
|
||||||
cy.getByTestId(toastContent).should(
|
|
||||||
'contain.text',
|
|
||||||
'Awaiting confirmation'
|
|
||||||
);
|
|
||||||
cy.getByTestId(toastCloseBtn).click();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,9 +1,10 @@
|
|||||||
import { useAssetDetailsDialogStore } from '@vegaprotocol/assets';
|
import { useAssetDetailsDialogStore } from '@vegaprotocol/assets';
|
||||||
import { useEnvironment } from '@vegaprotocol/environment';
|
import { DocsLinks, useEnvironment } from '@vegaprotocol/environment';
|
||||||
import { ButtonLink, Link } from '@vegaprotocol/ui-toolkit';
|
import { ButtonLink, ExternalLink, Link } from '@vegaprotocol/ui-toolkit';
|
||||||
import { MarketProposalNotification } from '@vegaprotocol/proposals';
|
import { MarketProposalNotification } from '@vegaprotocol/proposals';
|
||||||
import type { Market } from '@vegaprotocol/markets';
|
import type { Market } from '@vegaprotocol/markets';
|
||||||
import {
|
import {
|
||||||
|
addDecimalsFormatNumber,
|
||||||
fromNanoSeconds,
|
fromNanoSeconds,
|
||||||
getExpiryDate,
|
getExpiryDate,
|
||||||
getMarketExpiryDate,
|
getMarketExpiryDate,
|
||||||
@@ -14,9 +15,12 @@ import {
|
|||||||
Last24hVolume,
|
Last24hVolume,
|
||||||
getAsset,
|
getAsset,
|
||||||
getDataSourceSpecForSettlementSchedule,
|
getDataSourceSpecForSettlementSchedule,
|
||||||
|
isMarketInAuction,
|
||||||
marketInfoProvider,
|
marketInfoProvider,
|
||||||
useFundingPeriodsQuery,
|
useFundingPeriodsQuery,
|
||||||
useFundingRate,
|
useFundingRate,
|
||||||
|
useMarketTradingMode,
|
||||||
|
useExternalTwap,
|
||||||
} from '@vegaprotocol/markets';
|
} from '@vegaprotocol/markets';
|
||||||
import { MarketState as State } from '@vegaprotocol/types';
|
import { MarketState as State } from '@vegaprotocol/types';
|
||||||
import { HeaderStat } from '../../components/header';
|
import { HeaderStat } from '../../components/header';
|
||||||
@@ -26,6 +30,7 @@ import { MarketState } from '../../components/market-state';
|
|||||||
import { MarketLiquiditySupplied } from '../../components/liquidity-supplied';
|
import { MarketLiquiditySupplied } from '../../components/liquidity-supplied';
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import { useDataProvider } from '@vegaprotocol/data-provider';
|
import { useDataProvider } from '@vegaprotocol/data-provider';
|
||||||
|
import { PriceCell } from '@vegaprotocol/datagrid';
|
||||||
|
|
||||||
interface MarketHeaderStatsProps {
|
interface MarketHeaderStatsProps {
|
||||||
market: Market;
|
market: Market;
|
||||||
@@ -38,34 +43,8 @@ export const MarketHeaderStats = ({ market }: MarketHeaderStatsProps) => {
|
|||||||
const asset = getAsset(market);
|
const asset = getAsset(market);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="flex gap-8">
|
||||||
{market.tradableInstrument.instrument.product.__typename === 'Future' && (
|
<HeaderStat heading={t('Mark Price')} testId="market-price">
|
||||||
<HeaderStat
|
|
||||||
heading={t('Expiry')}
|
|
||||||
description={
|
|
||||||
<ExpiryTooltipContent
|
|
||||||
market={market}
|
|
||||||
explorerUrl={VEGA_EXPLORER_URL}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
testId="market-expiry"
|
|
||||||
>
|
|
||||||
<ExpiryLabel market={market} />
|
|
||||||
</HeaderStat>
|
|
||||||
)}
|
|
||||||
{market.tradableInstrument.instrument.product.__typename ===
|
|
||||||
'Perpetual' && (
|
|
||||||
<HeaderStat
|
|
||||||
heading={`${t('Funding')} / ${t('Countdown')}`}
|
|
||||||
testId="market-funding"
|
|
||||||
>
|
|
||||||
<div className="flex justify-between gap-2">
|
|
||||||
<FundingRate marketId={market.id} />
|
|
||||||
<FundingCountdown marketId={market.id} />
|
|
||||||
</div>
|
|
||||||
</HeaderStat>
|
|
||||||
)}
|
|
||||||
<HeaderStat heading={t('Price')} testId="market-price">
|
|
||||||
<MarketMarkPrice
|
<MarketMarkPrice
|
||||||
marketId={market.id}
|
marketId={market.id}
|
||||||
decimalPlaces={market.decimalPlaces}
|
decimalPlaces={market.decimalPlaces}
|
||||||
@@ -108,8 +87,64 @@ export const MarketHeaderStats = ({ market }: MarketHeaderStatsProps) => {
|
|||||||
marketId={market.id}
|
marketId={market.id}
|
||||||
assetDecimals={asset?.decimals || 0}
|
assetDecimals={asset?.decimals || 0}
|
||||||
/>
|
/>
|
||||||
|
{market.tradableInstrument.instrument.product.__typename === 'Future' && (
|
||||||
|
<HeaderStat
|
||||||
|
heading={t('Expiry')}
|
||||||
|
description={
|
||||||
|
<ExpiryTooltipContent
|
||||||
|
market={market}
|
||||||
|
explorerUrl={VEGA_EXPLORER_URL}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
testId="market-expiry"
|
||||||
|
>
|
||||||
|
<ExpiryLabel market={market} />
|
||||||
|
</HeaderStat>
|
||||||
|
)}
|
||||||
|
{market.tradableInstrument.instrument.product.__typename ===
|
||||||
|
'Perpetual' && (
|
||||||
|
<HeaderStat
|
||||||
|
heading={`${t('Funding Rate')} / ${t('Countdown')}`}
|
||||||
|
testId="market-funding"
|
||||||
|
>
|
||||||
|
<div className="flex justify-between gap-2">
|
||||||
|
<FundingRate marketId={market.id} />
|
||||||
|
<FundingCountdown marketId={market.id} />
|
||||||
|
</div>
|
||||||
|
</HeaderStat>
|
||||||
|
)}
|
||||||
|
{market.tradableInstrument.instrument.product.__typename ===
|
||||||
|
'Perpetual' && (
|
||||||
|
<HeaderStat
|
||||||
|
heading={`${t('Index Price')}`}
|
||||||
|
description={
|
||||||
|
<div className="p1">
|
||||||
|
{t(
|
||||||
|
'The external time weighted average price (TWAP) received from the data source defined in the data sourcing specification.'
|
||||||
|
)}
|
||||||
|
{DocsLinks && (
|
||||||
|
<ExternalLink
|
||||||
|
href={DocsLinks.ETH_DATA_SOURCES}
|
||||||
|
className="mt-2"
|
||||||
|
>
|
||||||
|
{t('Find out more')}
|
||||||
|
</ExternalLink>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
testId="index-price"
|
||||||
|
>
|
||||||
|
<IndexPrice
|
||||||
|
marketId={market.id}
|
||||||
|
decimalPlaces={
|
||||||
|
market.tradableInstrument.instrument.product.settlementAsset
|
||||||
|
.decimals
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</HeaderStat>
|
||||||
|
)}
|
||||||
<MarketProposalNotification marketId={market.id} />
|
<MarketProposalNotification marketId={market.id} />
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -126,6 +161,24 @@ export const FundingRate = ({ marketId }: { marketId: string }) => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const IndexPrice = ({
|
||||||
|
marketId,
|
||||||
|
decimalPlaces,
|
||||||
|
}: {
|
||||||
|
marketId: string;
|
||||||
|
decimalPlaces?: number;
|
||||||
|
}) => {
|
||||||
|
const { data: externalTwap } = useExternalTwap(marketId);
|
||||||
|
return externalTwap && decimalPlaces ? (
|
||||||
|
<PriceCell
|
||||||
|
value={Number(externalTwap)}
|
||||||
|
valueFormatted={addDecimalsFormatNumber(externalTwap, decimalPlaces)}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
'-'
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
const useNow = () => {
|
const useNow = () => {
|
||||||
const [now, setNow] = useState(Date.now());
|
const [now, setNow] = useState(Date.now());
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -136,9 +189,11 @@ const useNow = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const useEvery = (marketId: string) => {
|
const useEvery = (marketId: string) => {
|
||||||
|
const { data: marketTradingMode } = useMarketTradingMode(marketId);
|
||||||
const { data: marketInfo } = useDataProvider({
|
const { data: marketInfo } = useDataProvider({
|
||||||
dataProvider: marketInfoProvider,
|
dataProvider: marketInfoProvider,
|
||||||
variables: { marketId },
|
variables: { marketId },
|
||||||
|
skip: !marketTradingMode || isMarketInAuction(marketTradingMode),
|
||||||
});
|
});
|
||||||
let every: number | undefined = undefined;
|
let every: number | undefined = undefined;
|
||||||
const sourceType =
|
const sourceType =
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import { addDecimalsFormatNumber, titlefy } from '@vegaprotocol/utils';
|
|||||||
import { t } from '@vegaprotocol/i18n';
|
import { t } from '@vegaprotocol/i18n';
|
||||||
import { useScreenDimensions } from '@vegaprotocol/react-helpers';
|
import { useScreenDimensions } from '@vegaprotocol/react-helpers';
|
||||||
import { useThrottledDataProvider } from '@vegaprotocol/data-provider';
|
import { useThrottledDataProvider } from '@vegaprotocol/data-provider';
|
||||||
import { AsyncRenderer, ExternalLink, Splash } from '@vegaprotocol/ui-toolkit';
|
import { ExternalLink, Loader, Splash } from '@vegaprotocol/ui-toolkit';
|
||||||
import { getAsset, marketDataProvider, useMarket } from '@vegaprotocol/markets';
|
import { getAsset, marketDataProvider, useMarket } from '@vegaprotocol/markets';
|
||||||
import { useGlobalStore, usePageTitleStore } from '../../stores';
|
import { useGlobalStore, usePageTitleStore } from '../../stores';
|
||||||
import { TradeGrid } from './trade-grid';
|
import { TradeGrid } from './trade-grid';
|
||||||
@@ -68,7 +68,7 @@ export const MarketPage = ({ closed }: { closed?: boolean }) => {
|
|||||||
const update = useGlobalStore((store) => store.update);
|
const update = useGlobalStore((store) => store.update);
|
||||||
const lastMarketId = useGlobalStore((store) => store.marketId);
|
const lastMarketId = useGlobalStore((store) => store.marketId);
|
||||||
|
|
||||||
const { data, error, loading } = useMarket(marketId);
|
const { data, loading } = useMarket(marketId);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (
|
if (
|
||||||
@@ -110,7 +110,15 @@ export const MarketPage = ({ closed }: { closed?: boolean }) => {
|
|||||||
}
|
}
|
||||||
}, [largeScreen, data, pinnedAsset]);
|
}, [largeScreen, data, pinnedAsset]);
|
||||||
|
|
||||||
if (!data && marketId) {
|
if (loading) {
|
||||||
|
return (
|
||||||
|
<Splash>
|
||||||
|
<Loader />
|
||||||
|
</Splash>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!data) {
|
||||||
return (
|
return (
|
||||||
<Splash>
|
<Splash>
|
||||||
<span className="flex flex-col items-center gap-2">
|
<span className="flex flex-col items-center gap-2">
|
||||||
@@ -120,7 +128,7 @@ export const MarketPage = ({ closed }: { closed?: boolean }) => {
|
|||||||
<p className="justify-center text-sm">
|
<p className="justify-center text-sm">
|
||||||
{t(`Please choose another market from the`)}{' '}
|
{t(`Please choose another market from the`)}{' '}
|
||||||
<ExternalLink onClick={() => navigate(Links.MARKETS())}>
|
<ExternalLink onClick={() => navigate(Links.MARKETS())}>
|
||||||
market list
|
{t('market list')}
|
||||||
</ExternalLink>
|
</ExternalLink>
|
||||||
</p>
|
</p>
|
||||||
</span>
|
</span>
|
||||||
@@ -129,18 +137,13 @@ export const MarketPage = ({ closed }: { closed?: boolean }) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<AsyncRenderer
|
<>
|
||||||
loading={loading}
|
|
||||||
error={error}
|
|
||||||
data={data || undefined}
|
|
||||||
noDataCondition={(data) => false}
|
|
||||||
>
|
|
||||||
<TitleUpdater
|
<TitleUpdater
|
||||||
marketId={data?.id}
|
marketId={data?.id}
|
||||||
marketName={data?.tradableInstrument.instrument.name}
|
marketName={data?.tradableInstrument.instrument.name}
|
||||||
decimalPlaces={data?.decimalPlaces}
|
decimalPlaces={data?.decimalPlaces}
|
||||||
/>
|
/>
|
||||||
{tradeView}
|
{tradeView}
|
||||||
</AsyncRenderer>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ import { TradingViews } from './trade-views';
|
|||||||
import {
|
import {
|
||||||
MarketSuccessorBanner,
|
MarketSuccessorBanner,
|
||||||
MarketSuccessorProposalBanner,
|
MarketSuccessorProposalBanner,
|
||||||
|
MarketTerminationBanner,
|
||||||
} from '../../components/market-banner';
|
} from '../../components/market-banner';
|
||||||
import { FLAGS } from '@vegaprotocol/environment';
|
import { FLAGS } from '@vegaprotocol/environment';
|
||||||
|
|
||||||
@@ -138,6 +139,9 @@ const MainGrid = memo(
|
|||||||
<Tab id="fills" name={t('Fills')}>
|
<Tab id="fills" name={t('Fills')}>
|
||||||
<TradingViews.fills.component />
|
<TradingViews.fills.component />
|
||||||
</Tab>
|
</Tab>
|
||||||
|
<Tab id="funding-payments" name={t('Funding payments')}>
|
||||||
|
<TradingViews.fundingPayments.component />
|
||||||
|
</Tab>
|
||||||
<Tab
|
<Tab
|
||||||
id="accounts"
|
id="accounts"
|
||||||
name={t('Collateral')}
|
name={t('Collateral')}
|
||||||
@@ -169,6 +173,7 @@ export const TradeGrid = ({ market, pinnedAsset }: TradeGridProps) => {
|
|||||||
<MarketSuccessorProposalBanner marketId={market?.id} />
|
<MarketSuccessorProposalBanner marketId={market?.id} />
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
<MarketTerminationBanner market={market} />
|
||||||
<OracleBanner marketId={market?.id || ''} />
|
<OracleBanner marketId={market?.id || ''} />
|
||||||
</div>
|
</div>
|
||||||
<div className="min-h-0 p-0.5">
|
<div className="min-h-0 p-0.5">
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import classNames from 'classnames';
|
|||||||
import {
|
import {
|
||||||
MarketSuccessorBanner,
|
MarketSuccessorBanner,
|
||||||
MarketSuccessorProposalBanner,
|
MarketSuccessorProposalBanner,
|
||||||
|
MarketTerminationBanner,
|
||||||
} from '../../components/market-banner';
|
} from '../../components/market-banner';
|
||||||
import { FLAGS } from '@vegaprotocol/environment';
|
import { FLAGS } from '@vegaprotocol/environment';
|
||||||
|
|
||||||
@@ -59,6 +60,7 @@ export const TradePanels = ({ market, pinnedAsset }: TradePanelsProps) => {
|
|||||||
<MarketSuccessorProposalBanner marketId={market?.id} />
|
<MarketSuccessorProposalBanner marketId={market?.id} />
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
<MarketTerminationBanner market={market} />
|
||||||
<OracleBanner marketId={market?.id || ''} />
|
<OracleBanner marketId={market?.id || ''} />
|
||||||
</div>
|
</div>
|
||||||
<div>{renderMenu()}</div>
|
<div>{renderMenu()}</div>
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import { PositionsContainer } from '../../components/positions-container';
|
|||||||
import { AccountsContainer } from '../../components/accounts-container';
|
import { AccountsContainer } from '../../components/accounts-container';
|
||||||
import { LiquidityContainer } from '../../components/liquidity-container';
|
import { LiquidityContainer } from '../../components/liquidity-container';
|
||||||
import { FundingContainer } from '../../components/funding-container';
|
import { FundingContainer } from '../../components/funding-container';
|
||||||
|
import { FundingPaymentsContainer } from '../../components/funding-payments-container';
|
||||||
import type { OrderContainerProps } from '../../components/orders-container';
|
import type { OrderContainerProps } from '../../components/orders-container';
|
||||||
import { OrdersContainer } from '../../components/orders-container';
|
import { OrdersContainer } from '../../components/orders-container';
|
||||||
import { StopOrdersContainer } from '../../components/stop-orders-container';
|
import { StopOrdersContainer } from '../../components/stop-orders-container';
|
||||||
@@ -55,6 +56,10 @@ export const TradingViews = {
|
|||||||
label: 'Funding',
|
label: 'Funding',
|
||||||
component: requiresMarket(FundingContainer),
|
component: requiresMarket(FundingContainer),
|
||||||
},
|
},
|
||||||
|
fundingPayments: {
|
||||||
|
label: 'Funding Payments',
|
||||||
|
component: FundingPaymentsContainer,
|
||||||
|
},
|
||||||
orderbook: {
|
orderbook: {
|
||||||
label: 'Orderbook',
|
label: 'Orderbook',
|
||||||
component: requiresMarket(OrderbookContainer),
|
component: requiresMarket(OrderbookContainer),
|
||||||
|
|||||||
@@ -9,7 +9,9 @@ import { usePageTitleStore } from '../../stores';
|
|||||||
import { AccountsContainer } from '../../components/accounts-container';
|
import { AccountsContainer } from '../../components/accounts-container';
|
||||||
import { DepositsContainer } from '../../components/deposits-container';
|
import { DepositsContainer } from '../../components/deposits-container';
|
||||||
import { FillsContainer } from '../../components/fills-container';
|
import { FillsContainer } from '../../components/fills-container';
|
||||||
|
import { FundingPaymentsContainer } from '../../components/funding-payments-container';
|
||||||
import { PositionsContainer } from '../../components/positions-container';
|
import { PositionsContainer } from '../../components/positions-container';
|
||||||
|
import { PositionsMenu } from '../../components/positions-menu';
|
||||||
import { WithdrawalsContainer } from '../../components/withdrawals-container';
|
import { WithdrawalsContainer } from '../../components/withdrawals-container';
|
||||||
import { OrdersContainer } from '../../components/orders-container';
|
import { OrdersContainer } from '../../components/orders-container';
|
||||||
import { LedgerContainer } from '../../components/ledger-container';
|
import { LedgerContainer } from '../../components/ledger-container';
|
||||||
@@ -68,7 +70,11 @@ export const Portfolio = () => {
|
|||||||
<Tab id="account-history" name={t('Account history')}>
|
<Tab id="account-history" name={t('Account history')}>
|
||||||
<AccountHistoryContainer />
|
<AccountHistoryContainer />
|
||||||
</Tab>
|
</Tab>
|
||||||
<Tab id="positions" name={t('Positions')}>
|
<Tab
|
||||||
|
id="positions"
|
||||||
|
name={t('Positions')}
|
||||||
|
menu={<PositionsMenu />}
|
||||||
|
>
|
||||||
<PositionsContainer allKeys />
|
<PositionsContainer allKeys />
|
||||||
</Tab>
|
</Tab>
|
||||||
<Tab id="orders" name={t('Orders')}>
|
<Tab id="orders" name={t('Orders')}>
|
||||||
@@ -77,6 +83,9 @@ export const Portfolio = () => {
|
|||||||
<Tab id="fills" name={t('Fills')}>
|
<Tab id="fills" name={t('Fills')}>
|
||||||
<FillsContainer />
|
<FillsContainer />
|
||||||
</Tab>
|
</Tab>
|
||||||
|
<Tab id="funding-payments" name={t('Funding payments')}>
|
||||||
|
<FundingPaymentsContainer />
|
||||||
|
</Tab>
|
||||||
<Tab id="ledger-entries" name={t('Ledger entries')}>
|
<Tab id="ledger-entries" name={t('Ledger entries')}>
|
||||||
<LedgerContainer />
|
<LedgerContainer />
|
||||||
</Tab>
|
</Tab>
|
||||||
|
|||||||
+4
-8
@@ -1,6 +1,7 @@
|
|||||||
import type { InMemoryCacheConfig } from '@apollo/client';
|
import type { InMemoryCacheConfig } from '@apollo/client';
|
||||||
import {
|
import {
|
||||||
AppFailure,
|
AppFailure,
|
||||||
|
AppLoader,
|
||||||
DocsLinks,
|
DocsLinks,
|
||||||
NetworkLoader,
|
NetworkLoader,
|
||||||
NodeGuard,
|
NodeGuard,
|
||||||
@@ -9,15 +10,10 @@ import {
|
|||||||
import { t } from '@vegaprotocol/i18n';
|
import { t } from '@vegaprotocol/i18n';
|
||||||
import { MaintenancePage } from '@vegaprotocol/ui-toolkit';
|
import { MaintenancePage } from '@vegaprotocol/ui-toolkit';
|
||||||
import { VegaWalletProvider } from '@vegaprotocol/wallet';
|
import { VegaWalletProvider } from '@vegaprotocol/wallet';
|
||||||
import dynamic from 'next/dynamic';
|
|
||||||
import type { ReactNode } from 'react';
|
import type { ReactNode } from 'react';
|
||||||
import { Web3Provider } from './web3-provider';
|
import { Web3Provider } from './web3-provider';
|
||||||
|
|
||||||
export const DynamicLoader = dynamic(() => import('../preloader/preloader'), {
|
export const Bootstrapper = ({ children }: { children: ReactNode }) => {
|
||||||
loading: () => <>Loading...</>,
|
|
||||||
});
|
|
||||||
|
|
||||||
export const AppLoader = ({ children }: { children: ReactNode }) => {
|
|
||||||
const {
|
const {
|
||||||
error,
|
error,
|
||||||
VEGA_URL,
|
VEGA_URL,
|
||||||
@@ -47,13 +43,13 @@ export const AppLoader = ({ children }: { children: ReactNode }) => {
|
|||||||
return (
|
return (
|
||||||
<NetworkLoader
|
<NetworkLoader
|
||||||
cache={cacheConfig}
|
cache={cacheConfig}
|
||||||
skeleton={<DynamicLoader />}
|
skeleton={<AppLoader />}
|
||||||
failure={
|
failure={
|
||||||
<AppFailure title={t('Could not initialize app')} error={error} />
|
<AppFailure title={t('Could not initialize app')} error={error} />
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<NodeGuard
|
<NodeGuard
|
||||||
skeleton={<DynamicLoader />}
|
skeleton={<AppLoader />}
|
||||||
failure={<AppFailure title={t(`Node: ${VEGA_URL} is unsuitable`)} />}
|
failure={<AppFailure title={t(`Node: ${VEGA_URL} is unsuitable`)} />}
|
||||||
>
|
>
|
||||||
<Web3Provider>
|
<Web3Provider>
|
||||||
+1
-1
@@ -1,2 +1,2 @@
|
|||||||
export * from './app-loader';
|
export * from './bootstrapper';
|
||||||
export * from './web3-provider';
|
export * from './web3-provider';
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
import { useVegaWallet } from '@vegaprotocol/wallet';
|
||||||
|
import { FundingPaymentsManager } from '@vegaprotocol/funding-payments';
|
||||||
|
import { create } from 'zustand';
|
||||||
|
import { persist } from 'zustand/middleware';
|
||||||
|
import { useDataGridEvents } from '@vegaprotocol/datagrid';
|
||||||
|
import { t } from '@vegaprotocol/i18n';
|
||||||
|
import { Splash } from '@vegaprotocol/ui-toolkit';
|
||||||
|
import type { DataGridSlice } from '../../stores/datagrid-store-slice';
|
||||||
|
import { createDataGridSlice } from '../../stores/datagrid-store-slice';
|
||||||
|
import { useMarketClickHandler } from '../../lib/hooks/use-market-click-handler';
|
||||||
|
|
||||||
|
export const FundingPaymentsContainer = () => {
|
||||||
|
const onMarketClick = useMarketClickHandler(true);
|
||||||
|
const { pubKey } = useVegaWallet();
|
||||||
|
|
||||||
|
const gridStore = useFundingPaymentsStore((store) => store.gridStore);
|
||||||
|
const updateGridStore = useFundingPaymentsStore(
|
||||||
|
(store) => store.updateGridStore
|
||||||
|
);
|
||||||
|
|
||||||
|
const gridStoreCallbacks = useDataGridEvents(gridStore, (colState) => {
|
||||||
|
updateGridStore(colState);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!pubKey) {
|
||||||
|
return (
|
||||||
|
<Splash>
|
||||||
|
<p>{t('Please connect Vega wallet')}</p>
|
||||||
|
</Splash>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<FundingPaymentsManager
|
||||||
|
partyId={pubKey}
|
||||||
|
onMarketClick={onMarketClick}
|
||||||
|
gridProps={gridStoreCallbacks}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const useFundingPaymentsStore = create<DataGridSlice>()(
|
||||||
|
persist(createDataGridSlice, {
|
||||||
|
name: 'vega_funding_payments_store',
|
||||||
|
})
|
||||||
|
);
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export * from './funding-payments-container';
|
||||||
@@ -1,2 +1,3 @@
|
|||||||
export * from './market-successor-banner';
|
export * from './market-successor-banner';
|
||||||
export * from './market-successor-proposal-banner';
|
export * from './market-successor-proposal-banner';
|
||||||
|
export * from './market-termination-banner';
|
||||||
|
|||||||
@@ -3,12 +3,17 @@ import type { SingleExecutionResult } from '@apollo/client';
|
|||||||
import type { MockedResponse } from '@apollo/react-testing';
|
import type { MockedResponse } from '@apollo/react-testing';
|
||||||
import { MockedProvider } from '@apollo/react-testing';
|
import { MockedProvider } from '@apollo/react-testing';
|
||||||
import { MarketSuccessorProposalBanner } from './market-successor-proposal-banner';
|
import { MarketSuccessorProposalBanner } from './market-successor-proposal-banner';
|
||||||
import type { SuccessorProposalsListQuery } from '@vegaprotocol/proposals';
|
import type { MarketViewProposalsQuery } from '@vegaprotocol/proposals';
|
||||||
import { SuccessorProposalsListDocument } from '@vegaprotocol/proposals';
|
import { MarketViewProposalsDocument } from '@vegaprotocol/proposals';
|
||||||
|
import * as Types from '@vegaprotocol/types';
|
||||||
|
|
||||||
const marketProposalMock: MockedResponse<SuccessorProposalsListQuery> = {
|
const marketProposalMock: MockedResponse<MarketViewProposalsQuery> = {
|
||||||
request: {
|
request: {
|
||||||
query: SuccessorProposalsListDocument,
|
query: MarketViewProposalsDocument,
|
||||||
|
variables: {
|
||||||
|
inState: Types.ProposalState.STATE_OPEN,
|
||||||
|
proposalType: Types.ProposalType.TYPE_NEW_MARKET,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
result: {
|
result: {
|
||||||
data: {
|
data: {
|
||||||
@@ -18,8 +23,11 @@ const marketProposalMock: MockedResponse<SuccessorProposalsListQuery> = {
|
|||||||
node: {
|
node: {
|
||||||
__typename: 'Proposal',
|
__typename: 'Proposal',
|
||||||
id: 'proposal-1',
|
id: 'proposal-1',
|
||||||
|
state: Types.ProposalState.STATE_OPEN,
|
||||||
terms: {
|
terms: {
|
||||||
__typename: 'ProposalTerms',
|
__typename: 'ProposalTerms',
|
||||||
|
closingDatetime: '2023-09-27',
|
||||||
|
enactmentDatetime: '2023-09-28',
|
||||||
change: {
|
change: {
|
||||||
__typename: 'NewMarket',
|
__typename: 'NewMarket',
|
||||||
instrument: {
|
instrument: {
|
||||||
@@ -66,12 +74,13 @@ describe('MarketSuccessorProposalBanner', () => {
|
|||||||
proposalsConnection: {
|
proposalsConnection: {
|
||||||
edges: [
|
edges: [
|
||||||
...((
|
...((
|
||||||
marketProposalMock?.result as SingleExecutionResult<SuccessorProposalsListQuery>
|
marketProposalMock?.result as SingleExecutionResult<MarketViewProposalsQuery>
|
||||||
)?.data?.proposalsConnection?.edges ?? []),
|
)?.data?.proposalsConnection?.edges ?? []),
|
||||||
{
|
{
|
||||||
node: {
|
node: {
|
||||||
__typename: 'Proposal',
|
__typename: 'Proposal',
|
||||||
id: 'proposal-2',
|
id: 'proposal-2',
|
||||||
|
state: Types.ProposalState.STATE_OPEN,
|
||||||
terms: {
|
terms: {
|
||||||
__typename: 'ProposalTerms',
|
__typename: 'ProposalTerms',
|
||||||
change: {
|
change: {
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
import { Fragment, useState } from 'react';
|
import { Fragment, useState } from 'react';
|
||||||
import type {
|
import type { NewMarketSuccessorFieldsFragment } from '@vegaprotocol/proposals';
|
||||||
SuccessorProposalListFieldsFragment,
|
import { useMarketViewProposals } from '@vegaprotocol/proposals';
|
||||||
NewMarketSuccessorFieldsFragment,
|
|
||||||
} from '@vegaprotocol/proposals';
|
|
||||||
import { useSuccessorProposalsListQuery } from '@vegaprotocol/proposals';
|
|
||||||
import {
|
import {
|
||||||
ExternalLink,
|
ExternalLink,
|
||||||
Intent,
|
Intent,
|
||||||
@@ -11,23 +8,33 @@ import {
|
|||||||
} from '@vegaprotocol/ui-toolkit';
|
} from '@vegaprotocol/ui-toolkit';
|
||||||
import { t } from '@vegaprotocol/i18n';
|
import { t } from '@vegaprotocol/i18n';
|
||||||
import { DApp, TOKEN_PROPOSAL, useLinks } from '@vegaprotocol/environment';
|
import { DApp, TOKEN_PROPOSAL, useLinks } from '@vegaprotocol/environment';
|
||||||
|
import * as Types from '@vegaprotocol/types';
|
||||||
|
|
||||||
export const MarketSuccessorProposalBanner = ({
|
export const MarketSuccessorProposalBanner = ({
|
||||||
marketId,
|
marketId,
|
||||||
}: {
|
}: {
|
||||||
marketId?: string;
|
marketId?: string;
|
||||||
}) => {
|
}) => {
|
||||||
const { data: proposals } = useSuccessorProposalsListQuery({
|
const proposals = useMarketViewProposals({
|
||||||
skip: !marketId,
|
skip: !marketId,
|
||||||
|
inState: Types.ProposalState.STATE_OPEN,
|
||||||
|
proposalType: Types.ProposalType.TYPE_NEW_MARKET,
|
||||||
|
typename: 'NewMarket',
|
||||||
});
|
});
|
||||||
|
|
||||||
const successors =
|
const successors =
|
||||||
proposals?.proposalsConnection?.edges
|
proposals?.filter((item) => {
|
||||||
?.map((item) => item?.node as SuccessorProposalListFieldsFragment)
|
if (item.terms.change.__typename === 'NewMarket') {
|
||||||
.filter(
|
const newMarket = item.terms.change;
|
||||||
(item: SuccessorProposalListFieldsFragment) =>
|
if (
|
||||||
(item.terms?.change as NewMarketSuccessorFieldsFragment)
|
newMarket.successorConfiguration?.parentMarketId === marketId &&
|
||||||
?.successorConfiguration?.parentMarketId === marketId
|
item.state === Types.ProposalState.STATE_OPEN
|
||||||
) ?? [];
|
) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}) ?? [];
|
||||||
const [visible, setVisible] = useState(true);
|
const [visible, setVisible] = useState(true);
|
||||||
const tokenLink = useLinks(DApp.Governance);
|
const tokenLink = useLinks(DApp.Governance);
|
||||||
if (visible && successors.length) {
|
if (visible && successors.length) {
|
||||||
|
|||||||
@@ -0,0 +1,111 @@
|
|||||||
|
import { render, screen, waitFor } from '@testing-library/react';
|
||||||
|
import * as Types from '@vegaprotocol/types';
|
||||||
|
import type { MockedResponse } from '@apollo/client/testing';
|
||||||
|
import { MockedProvider } from '@apollo/client/testing';
|
||||||
|
import type { MarketViewProposalsQuery } from '@vegaprotocol/proposals';
|
||||||
|
import { MarketViewProposalsDocument } from '@vegaprotocol/proposals';
|
||||||
|
import type { Market } from '@vegaprotocol/markets';
|
||||||
|
import { MarketTerminationBanner } from './market-termination-banner';
|
||||||
|
|
||||||
|
const marketMock = {
|
||||||
|
id: 'market-1',
|
||||||
|
decimalPlaces: 3,
|
||||||
|
tradableInstrument: {
|
||||||
|
instrument: {
|
||||||
|
product: {
|
||||||
|
__typename: 'Future',
|
||||||
|
quoteName: 'tDAI',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
} as Market;
|
||||||
|
|
||||||
|
const proposalMock: MockedResponse<MarketViewProposalsQuery> = {
|
||||||
|
request: {
|
||||||
|
query: MarketViewProposalsDocument,
|
||||||
|
variables: { inState: Types.ProposalState.STATE_PASSED },
|
||||||
|
},
|
||||||
|
result: {
|
||||||
|
data: {
|
||||||
|
proposalsConnection: {
|
||||||
|
edges: [
|
||||||
|
{
|
||||||
|
node: {
|
||||||
|
id: 'first-id',
|
||||||
|
state: Types.ProposalState.STATE_PASSED,
|
||||||
|
terms: {
|
||||||
|
closingDatetime: '2023-09-27T11:48:18Z',
|
||||||
|
enactmentDatetime: '2023-09-30T11:48:18',
|
||||||
|
change: {
|
||||||
|
__typename: 'UpdateMarketState',
|
||||||
|
updateType:
|
||||||
|
Types.MarketUpdateType.MARKET_STATE_UPDATE_TYPE_TERMINATE,
|
||||||
|
price: '',
|
||||||
|
market: {
|
||||||
|
id: 'market-1',
|
||||||
|
tradableInstrument: {
|
||||||
|
instrument: {
|
||||||
|
name: 'Market one name',
|
||||||
|
code: 'Market one',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
node: {
|
||||||
|
id: 'second-id',
|
||||||
|
state: Types.ProposalState.STATE_PASSED,
|
||||||
|
terms: {
|
||||||
|
closingDatetime: '2023-09-27T11:48:18Z',
|
||||||
|
enactmentDatetime: '2023-10-01T11:48:18',
|
||||||
|
change: {
|
||||||
|
__typename: 'UpdateMarketState',
|
||||||
|
updateType:
|
||||||
|
Types.MarketUpdateType.MARKET_STATE_UPDATE_TYPE_TERMINATE,
|
||||||
|
price: '',
|
||||||
|
market: {
|
||||||
|
id: 'market-2',
|
||||||
|
tradableInstrument: {
|
||||||
|
instrument: {
|
||||||
|
name: 'Market two name',
|
||||||
|
code: 'Market two',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
const mocks: MockedResponse[] = [proposalMock];
|
||||||
|
|
||||||
|
describe('MarketTerminationBanner', () => {
|
||||||
|
beforeAll(() => {
|
||||||
|
jest.useFakeTimers().setSystemTime(new Date('2023-09-28T10:10:10.000Z'));
|
||||||
|
});
|
||||||
|
|
||||||
|
afterAll(() => {
|
||||||
|
jest.useRealTimers();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be properly rendered', async () => {
|
||||||
|
const { container } = render(
|
||||||
|
<MockedProvider mocks={mocks}>
|
||||||
|
<MarketTerminationBanner market={marketMock} />
|
||||||
|
</MockedProvider>
|
||||||
|
);
|
||||||
|
await waitFor(() => {
|
||||||
|
expect(container).not.toBeEmptyDOMElement();
|
||||||
|
});
|
||||||
|
expect(
|
||||||
|
screen.getByTestId('termination-warning-banner-market-1')
|
||||||
|
).toBeInTheDocument();
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,81 @@
|
|||||||
|
import { useState } from 'react';
|
||||||
|
import { format, formatDuration, intervalToDuration } from 'date-fns';
|
||||||
|
import { Intent, NotificationBanner } from '@vegaprotocol/ui-toolkit';
|
||||||
|
import { useMarketViewProposals } from '@vegaprotocol/proposals';
|
||||||
|
import { t } from '@vegaprotocol/i18n';
|
||||||
|
import * as Types from '@vegaprotocol/types';
|
||||||
|
import type { Market } from '@vegaprotocol/markets';
|
||||||
|
import { getQuoteName } from '@vegaprotocol/markets';
|
||||||
|
import { addDecimalsFormatNumber } from '@vegaprotocol/utils';
|
||||||
|
|
||||||
|
export const MarketTerminationBanner = ({
|
||||||
|
market,
|
||||||
|
}: {
|
||||||
|
market: Market | null;
|
||||||
|
}) => {
|
||||||
|
const [visible, setVisible] = useState(true);
|
||||||
|
const skip = !market || !visible;
|
||||||
|
const proposalsData = useMarketViewProposals({
|
||||||
|
skip,
|
||||||
|
inState: Types.ProposalState.STATE_PASSED,
|
||||||
|
typename: 'UpdateMarketState',
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!market) return null;
|
||||||
|
const marketFound = (proposalsData || []).find(
|
||||||
|
(item) =>
|
||||||
|
item.terms.change.__typename === 'UpdateMarketState' &&
|
||||||
|
item.terms.change.market.id === market.id &&
|
||||||
|
item.terms.change.updateType ===
|
||||||
|
Types.MarketUpdateType.MARKET_STATE_UPDATE_TYPE_TERMINATE &&
|
||||||
|
item.state === Types.ProposalState.STATE_PASSED // subscription doesn't have state parameter
|
||||||
|
);
|
||||||
|
|
||||||
|
const enactmentDatetime = new Date(marketFound?.terms.enactmentDatetime);
|
||||||
|
const name =
|
||||||
|
marketFound?.terms.change.__typename === 'UpdateMarketState'
|
||||||
|
? marketFound.terms.change.market.tradableInstrument.instrument.code
|
||||||
|
: '';
|
||||||
|
|
||||||
|
if (name && enactmentDatetime.getTime() > Date.now()) {
|
||||||
|
const dayMonthDate = format(enactmentDatetime, 'dd MMMM');
|
||||||
|
const duration = intervalToDuration({
|
||||||
|
start: new Date(),
|
||||||
|
end: enactmentDatetime,
|
||||||
|
});
|
||||||
|
const formattedDuration = formatDuration(duration, {
|
||||||
|
format: ['days', 'hours'],
|
||||||
|
});
|
||||||
|
const price =
|
||||||
|
marketFound?.terms.change.__typename === 'UpdateMarketState'
|
||||||
|
? marketFound.terms.change.price
|
||||||
|
: '';
|
||||||
|
const assetSymbol = getQuoteName(market);
|
||||||
|
return (
|
||||||
|
<NotificationBanner
|
||||||
|
intent={Intent.Warning}
|
||||||
|
onClose={() => {
|
||||||
|
setVisible(false);
|
||||||
|
}}
|
||||||
|
data-testid={`termination-warning-banner-${market.id}`}
|
||||||
|
>
|
||||||
|
<div className="uppercase mb-1">
|
||||||
|
{t('Trading on Market %s will stop on %s', [name, dayMonthDate])}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
{t(
|
||||||
|
'You will no longer be able to hold a position on this market when it closes in %s.',
|
||||||
|
[formattedDuration]
|
||||||
|
)}{' '}
|
||||||
|
{price &&
|
||||||
|
assetSymbol &&
|
||||||
|
t('The final price will be %s %s.', [
|
||||||
|
addDecimalsFormatNumber(price, market.decimalPlaces),
|
||||||
|
assetSymbol,
|
||||||
|
])}
|
||||||
|
</div>
|
||||||
|
</NotificationBanner>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
};
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
import { Loader } from '@vegaprotocol/ui-toolkit';
|
|
||||||
|
|
||||||
export const Preloader = () => {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<style>
|
|
||||||
{`
|
|
||||||
body{
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
html.dark body{
|
|
||||||
background: #000;
|
|
||||||
}
|
|
||||||
`}
|
|
||||||
</style>
|
|
||||||
<div className="pre-loader">
|
|
||||||
<Loader />
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Preloader;
|
|
||||||
@@ -36,7 +36,7 @@ import {
|
|||||||
useSearchParams,
|
useSearchParams,
|
||||||
} from 'react-router-dom';
|
} from 'react-router-dom';
|
||||||
import { Connectors } from '../lib/vega-connectors';
|
import { Connectors } from '../lib/vega-connectors';
|
||||||
import { AppLoader, DynamicLoader } from '../components/app-loader';
|
import { Bootstrapper } from '../components/bootstrapper';
|
||||||
import { useDataProvider } from '@vegaprotocol/data-provider';
|
import { useDataProvider } from '@vegaprotocol/data-provider';
|
||||||
import { activeOrdersProvider } from '@vegaprotocol/orders';
|
import { activeOrdersProvider } from '@vegaprotocol/orders';
|
||||||
import { useTelemetryApproval } from '../lib/hooks/use-telemetry-approval';
|
import { useTelemetryApproval } from '../lib/hooks/use-telemetry-approval';
|
||||||
@@ -52,6 +52,7 @@ import { ViewingBanner } from '../components/viewing-banner';
|
|||||||
import { NavHeader } from '../components/navbar/nav-header';
|
import { NavHeader } from '../components/navbar/nav-header';
|
||||||
import { Telemetry } from '../components/telemetry';
|
import { Telemetry } from '../components/telemetry';
|
||||||
import { Routes as AppRoutes } from '../lib/links';
|
import { Routes as AppRoutes } from '../lib/links';
|
||||||
|
import { SSRLoader } from './ssr-loader';
|
||||||
|
|
||||||
const DEFAULT_TITLE = t('Welcome to Vega trading!');
|
const DEFAULT_TITLE = t('Welcome to Vega trading!');
|
||||||
|
|
||||||
@@ -144,14 +145,14 @@ function VegaTradingApp(props: AppProps) {
|
|||||||
// Prevent HashRouter from being server side rendered as it
|
// Prevent HashRouter from being server side rendered as it
|
||||||
// relies on presence of document object
|
// relies on presence of document object
|
||||||
if (status === 'default') {
|
if (status === 'default') {
|
||||||
return <DynamicLoader />;
|
return <SSRLoader />;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<HashRouter>
|
<HashRouter>
|
||||||
<AppLoader>
|
<Bootstrapper>
|
||||||
<AppBody {...props} />
|
<AppBody {...props} />
|
||||||
</AppLoader>
|
</Bootstrapper>
|
||||||
<NodeSwitcherDialog open={nodeSwitcherOpen} setOpen={setNodeSwitcher} />
|
<NodeSwitcherDialog open={nodeSwitcherOpen} setOpen={setNodeSwitcher} />
|
||||||
</HashRouter>
|
</HashRouter>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -22,14 +22,17 @@ export default function Document() {
|
|||||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||||
<link rel="apple-touch-icon" content="/favicon.ico" />
|
<link rel="apple-touch-icon" content="/favicon.ico" />
|
||||||
|
|
||||||
{/* eslint-disable-next-line @next/next/no-css-tags */}
|
|
||||||
<link rel="stylesheet" href="/preloader.css" media="all" />
|
|
||||||
|
|
||||||
{/* scripts */}
|
{/* scripts */}
|
||||||
<script src="/theme-setter.js" type="text/javascript" async />
|
<script src="/theme-setter.js" type="text/javascript" async />
|
||||||
</Head>
|
</Head>
|
||||||
<Html>
|
<Html>
|
||||||
<body className="bg-white dark:bg-vega-cdark-900 text-default font-alpha">
|
<body
|
||||||
|
// Nextjs will set body to display none until js runs. Because the entire app is client rendered
|
||||||
|
// and delivered via ipfs we override this to show a server side render loading animation until the
|
||||||
|
// js is downloaded and react takes over rendering
|
||||||
|
style={{ display: 'block' }}
|
||||||
|
className="bg-white dark:bg-vega-cdark-900 text-default font-alpha"
|
||||||
|
>
|
||||||
<Main />
|
<Main />
|
||||||
<NextScript />
|
<NextScript />
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -0,0 +1,52 @@
|
|||||||
|
export const SSRLoader = () => {
|
||||||
|
const randomDelay = () => {
|
||||||
|
return parseFloat((Math.random() * (4 - 1) + 1).toFixed(2));
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
width: '100vw',
|
||||||
|
height: '100vh',
|
||||||
|
display: 'flex',
|
||||||
|
justifyContent: 'center',
|
||||||
|
alignItems: 'center',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<style jsx>{`
|
||||||
|
@keyframes flickering {
|
||||||
|
0% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
26% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`}</style>
|
||||||
|
<div style={{ width: 50, height: 50, display: 'flex', flexWrap: 'wrap' }}>
|
||||||
|
{new Array(25).fill(null).map((_, i) => {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
key={i}
|
||||||
|
style={{
|
||||||
|
width: 10,
|
||||||
|
height: 10,
|
||||||
|
animation: 'flickering 0.4s linear alternate infinite',
|
||||||
|
animationDelay: `-${randomDelay()}s`,
|
||||||
|
animationDirection: i % 2 === 0 ? 'reverse' : 'alternate',
|
||||||
|
background: 'black',
|
||||||
|
opacity: Math.random() > 0.5 ? 1 : 0,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -1,116 +0,0 @@
|
|||||||
.pre-loader {
|
|
||||||
display: flex;
|
|
||||||
width: 100%;
|
|
||||||
min-height: 100vh;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item {
|
|
||||||
width: 10px;
|
|
||||||
height: 10px;
|
|
||||||
background: #000;
|
|
||||||
}
|
|
||||||
.pre-loader .pre-loader-center {
|
|
||||||
align-items: center;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.pre-loader .pre-loader-wrapper {
|
|
||||||
width: 50px;
|
|
||||||
height: 50px;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
|
||||||
@media (prefers-color-scheme: light) {
|
|
||||||
.pre-loader .loader-item {
|
|
||||||
background: #000;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(0) {
|
|
||||||
animation-delay: 0ms;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:first-child {
|
|
||||||
animation-delay: -50ms;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(2) {
|
|
||||||
animation-delay: 0.2s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(3) {
|
|
||||||
animation-delay: -0.6s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(4) {
|
|
||||||
animation-delay: 0.4s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(5) {
|
|
||||||
animation-delay: -0.5s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(6) {
|
|
||||||
animation-delay: 0.3s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(7) {
|
|
||||||
animation-delay: -1.4s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(8) {
|
|
||||||
animation-delay: 2s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(9) {
|
|
||||||
animation-delay: -0.9s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(10) {
|
|
||||||
animation-delay: 1.5s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(11) {
|
|
||||||
animation-delay: -0.55s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(12) {
|
|
||||||
animation-delay: 1.2s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(13) {
|
|
||||||
animation-delay: -0.65s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(14) {
|
|
||||||
animation-delay: 0.7s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(15) {
|
|
||||||
animation-delay: -3.75s;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item:nth-child(16) {
|
|
||||||
animation-delay: 1.6s;
|
|
||||||
animation-direction: reverse;
|
|
||||||
}
|
|
||||||
.pre-loader .loader-item {
|
|
||||||
animation: flickering 0.4s linear infinite alternate;
|
|
||||||
}
|
|
||||||
@keyframes flickering {
|
|
||||||
0% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
25% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
26% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
html.dark .pre-loader .loader-item {
|
|
||||||
background: #fff;
|
|
||||||
}
|
|
||||||
@@ -3,6 +3,7 @@ import * as Types from '@vegaprotocol/types';
|
|||||||
import type { AccountFields } from './accounts-data-provider';
|
import type { AccountFields } from './accounts-data-provider';
|
||||||
import { getAccountData } from './accounts-data-provider';
|
import { getAccountData } from './accounts-data-provider';
|
||||||
import { AccountTable } from './accounts-table';
|
import { AccountTable } from './accounts-table';
|
||||||
|
import userEvent from '@testing-library/user-event';
|
||||||
|
|
||||||
const singleRow = {
|
const singleRow = {
|
||||||
__typename: 'AccountBalance',
|
__typename: 'AccountBalance',
|
||||||
@@ -24,6 +25,26 @@ const singleRow = {
|
|||||||
} as AccountFields;
|
} as AccountFields;
|
||||||
const singleRowData = [singleRow];
|
const singleRowData = [singleRow];
|
||||||
|
|
||||||
|
const secondRow = {
|
||||||
|
__typename: 'AccountBalance',
|
||||||
|
type: Types.AccountType.ACCOUNT_TYPE_MARGIN,
|
||||||
|
balance: '125600002',
|
||||||
|
market: {
|
||||||
|
__typename: 'Market',
|
||||||
|
id: '10cd0a793ad2887b340940337fa6d97a212e0e517fe8e9eab2b5ef3a38633f35',
|
||||||
|
},
|
||||||
|
asset: {
|
||||||
|
__typename: 'Asset',
|
||||||
|
id: '5cfa87844724df6069b94e4c8a6f03af21907d7bc251593d08e4251043ee9f7c',
|
||||||
|
symbol: 'aBTC',
|
||||||
|
decimals: 5,
|
||||||
|
},
|
||||||
|
available: '125600001',
|
||||||
|
used: '125600001',
|
||||||
|
total: '251200002',
|
||||||
|
} as AccountFields;
|
||||||
|
const multiRowData = [singleRow, secondRow];
|
||||||
|
|
||||||
describe('AccountsTable', () => {
|
describe('AccountsTable', () => {
|
||||||
it('should render correct columns', async () => {
|
it('should render correct columns', async () => {
|
||||||
// 7001-COLL-001
|
// 7001-COLL-001
|
||||||
@@ -68,6 +89,25 @@ describe('AccountsTable', () => {
|
|||||||
expect(rows?.childElementCount).toBe(1);
|
expect(rows?.childElementCount).toBe(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should sort assets', async () => {
|
||||||
|
// 7001-COLL-010
|
||||||
|
const { container } = render(
|
||||||
|
<AccountTable
|
||||||
|
rowData={multiRowData}
|
||||||
|
onClickAsset={() => null}
|
||||||
|
isReadOnly={false}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
|
||||||
|
const headerCell = screen.getByText('Asset');
|
||||||
|
await userEvent.click(headerCell);
|
||||||
|
const rows = container.querySelectorAll(
|
||||||
|
'.ag-center-cols-container .ag-row'
|
||||||
|
);
|
||||||
|
expect(rows[0].textContent).toContain('aBTC');
|
||||||
|
expect(rows[1].textContent).toContain('tBTC');
|
||||||
|
});
|
||||||
|
|
||||||
it('should apply correct formatting in view as user mode', async () => {
|
it('should apply correct formatting in view as user mode', async () => {
|
||||||
const { container } = render(
|
const { container } = render(
|
||||||
<AccountTable
|
<AccountTable
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import BigNumber from 'bignumber.js';
|
|||||||
import { AddressField, TransferFee, TransferForm } from './transfer-form';
|
import { AddressField, TransferFee, TransferForm } from './transfer-form';
|
||||||
import { AccountType } from '@vegaprotocol/types';
|
import { AccountType } from '@vegaprotocol/types';
|
||||||
import { addDecimal, formatNumber, removeDecimal } from '@vegaprotocol/utils';
|
import { addDecimal, formatNumber, removeDecimal } from '@vegaprotocol/utils';
|
||||||
|
import userEvent from '@testing-library/user-event';
|
||||||
|
|
||||||
describe('TransferForm', () => {
|
describe('TransferForm', () => {
|
||||||
const submit = () => fireEvent.submit(screen.getByTestId('transfer-form'));
|
const submit = () => fireEvent.submit(screen.getByTestId('transfer-form'));
|
||||||
@@ -33,6 +34,59 @@ describe('TransferForm', () => {
|
|||||||
submitTransfer: jest.fn(),
|
submitTransfer: jest.fn(),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
it('form tooltips correctly displayed', async () => {
|
||||||
|
// 1003-TRAN-015
|
||||||
|
// 1003-TRAN-016
|
||||||
|
// 1003-TRAN-017
|
||||||
|
// 1003-TRAN-018
|
||||||
|
// 1003-TRAN-019
|
||||||
|
render(<TransferForm {...props} />);
|
||||||
|
// Select a pubkey
|
||||||
|
fireEvent.change(screen.getByLabelText('Vega key'), {
|
||||||
|
target: { value: props.pubKeys[1] },
|
||||||
|
});
|
||||||
|
|
||||||
|
// Select asset
|
||||||
|
fireEvent.change(
|
||||||
|
// Bypass RichSelect and target hidden native select
|
||||||
|
// eslint-disable-next-line
|
||||||
|
document.querySelector('select[name="asset"]')!,
|
||||||
|
{ target: { value: asset.id } }
|
||||||
|
);
|
||||||
|
// set valid amount
|
||||||
|
fireEvent.change(screen.getByLabelText('Amount'), {
|
||||||
|
target: { value: amount },
|
||||||
|
});
|
||||||
|
|
||||||
|
userEvent.hover(screen.getByText('Include transfer fee'));
|
||||||
|
|
||||||
|
await waitFor(() => {
|
||||||
|
const tooltips = screen.getAllByTestId('tooltip-content');
|
||||||
|
expect(tooltips[0]).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
userEvent.hover(screen.getByText('Transfer fee'));
|
||||||
|
|
||||||
|
await waitFor(() => {
|
||||||
|
const tooltips = screen.getAllByTestId('tooltip-content');
|
||||||
|
expect(tooltips[0]).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
userEvent.hover(screen.getByText('Amount to be transferred'));
|
||||||
|
|
||||||
|
await waitFor(() => {
|
||||||
|
const tooltips = screen.getAllByTestId('tooltip-content');
|
||||||
|
expect(tooltips[0]).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
userEvent.hover(screen.getByText('Total amount (with fee)'));
|
||||||
|
|
||||||
|
await waitFor(() => {
|
||||||
|
const tooltips = screen.getAllByTestId('tooltip-content');
|
||||||
|
expect(tooltips[0]).toBeVisible();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it('validates a manually entered address', async () => {
|
it('validates a manually entered address', async () => {
|
||||||
render(<TransferForm {...props} />);
|
render(<TransferForm {...props} />);
|
||||||
submit();
|
submit();
|
||||||
@@ -174,6 +228,7 @@ describe('TransferForm', () => {
|
|||||||
|
|
||||||
const amountInput = screen.getByLabelText('Amount');
|
const amountInput = screen.getByLabelText('Amount');
|
||||||
const checkbox = screen.getByTestId('include-transfer-fee');
|
const checkbox = screen.getByTestId('include-transfer-fee');
|
||||||
|
// 1003-TRAN-022
|
||||||
expect(checkbox).not.toBeChecked();
|
expect(checkbox).not.toBeChecked();
|
||||||
act(() => {
|
act(() => {
|
||||||
/* fire events that update state */
|
/* fire events that update state */
|
||||||
@@ -190,6 +245,7 @@ describe('TransferForm', () => {
|
|||||||
.times(props.feeFactor)
|
.times(props.feeFactor)
|
||||||
.toFixed();
|
.toFixed();
|
||||||
const expectedAmount = new BigNumber(amount).minus(expectedFee).toFixed();
|
const expectedAmount = new BigNumber(amount).minus(expectedFee).toFixed();
|
||||||
|
// 1003-TRAN-020
|
||||||
expect(screen.getByTestId('transfer-fee')).toHaveTextContent(expectedFee);
|
expect(screen.getByTestId('transfer-fee')).toHaveTextContent(expectedFee);
|
||||||
expect(screen.getByTestId('transfer-amount')).toHaveTextContent(
|
expect(screen.getByTestId('transfer-amount')).toHaveTextContent(
|
||||||
expectedAmount
|
expectedAmount
|
||||||
@@ -201,6 +257,8 @@ describe('TransferForm', () => {
|
|||||||
submit();
|
submit();
|
||||||
|
|
||||||
await waitFor(() => {
|
await waitFor(() => {
|
||||||
|
// 1003-TRAN-023
|
||||||
|
|
||||||
expect(props.submitTransfer).toHaveBeenCalledTimes(1);
|
expect(props.submitTransfer).toHaveBeenCalledTimes(1);
|
||||||
expect(props.submitTransfer).toHaveBeenCalledWith({
|
expect(props.submitTransfer).toHaveBeenCalledWith({
|
||||||
fromAccountType: AccountType.ACCOUNT_TYPE_GENERAL,
|
fromAccountType: AccountType.ACCOUNT_TYPE_GENERAL,
|
||||||
@@ -263,6 +321,7 @@ describe('TransferForm', () => {
|
|||||||
.times(props.feeFactor)
|
.times(props.feeFactor)
|
||||||
.toFixed();
|
.toFixed();
|
||||||
const total = new BigNumber(amount).plus(expectedFee).toFixed();
|
const total = new BigNumber(amount).plus(expectedFee).toFixed();
|
||||||
|
// 1003-TRAN-021
|
||||||
expect(screen.getByTestId('transfer-fee')).toHaveTextContent(expectedFee);
|
expect(screen.getByTestId('transfer-fee')).toHaveTextContent(expectedFee);
|
||||||
expect(screen.getByTestId('transfer-amount')).toHaveTextContent(amount);
|
expect(screen.getByTestId('transfer-amount')).toHaveTextContent(amount);
|
||||||
expect(screen.getByTestId('total-transfer-fee')).toHaveTextContent(total);
|
expect(screen.getByTestId('total-transfer-fee')).toHaveTextContent(total);
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ export * from '../deposits/src/lib/deposit.mock';
|
|||||||
export * from '../environment/src/utils/node.mock';
|
export * from '../environment/src/utils/node.mock';
|
||||||
export * from '../environment/src/components/node-guard/node-guard.mock';
|
export * from '../environment/src/components/node-guard/node-guard.mock';
|
||||||
export * from '../fills/src/lib/fills.mock';
|
export * from '../fills/src/lib/fills.mock';
|
||||||
|
export * from '../funding-payments/src/lib/funding-payments.mock';
|
||||||
export * from '../proposals/src/lib/proposals-data-provider/proposals.mock';
|
export * from '../proposals/src/lib/proposals-data-provider/proposals.mock';
|
||||||
export * from '../market-depth/src/lib/market-depth.mock';
|
export * from '../market-depth/src/lib/market-depth.mock';
|
||||||
export * from '../markets/src/lib/components/market-info/market-info.mock';
|
export * from '../markets/src/lib/components/market-info/market-info.mock';
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ import { addImportNodeWallets } from './lib/commands/import-node-wallets';
|
|||||||
import { addVegaWalletTopUpRewardsPool } from './lib/commands/vega-wallet-top-up-rewards-pool';
|
import { addVegaWalletTopUpRewardsPool } from './lib/commands/vega-wallet-top-up-rewards-pool';
|
||||||
import { addAssociateTokensToVegaWallet } from './lib/commands/associate-tokens-to-vega-wallet';
|
import { addAssociateTokensToVegaWallet } from './lib/commands/associate-tokens-to-vega-wallet';
|
||||||
import { addMockChainId } from './lib/commands/mock-chain-id';
|
import { addMockChainId } from './lib/commands/mock-chain-id';
|
||||||
|
import { addVegaWalletTopUpNetworkAccount } from './lib/commands/vega-wallet-fund-network-account';
|
||||||
|
|
||||||
addGetTestIdcommand();
|
addGetTestIdcommand();
|
||||||
addMockGQLCommand();
|
addMockGQLCommand();
|
||||||
@@ -52,6 +53,7 @@ addImportNodeWallets();
|
|||||||
addVegaWalletTopUpRewardsPool();
|
addVegaWalletTopUpRewardsPool();
|
||||||
addAssociateTokensToVegaWallet();
|
addAssociateTokensToVegaWallet();
|
||||||
addMockChainId();
|
addMockChainId();
|
||||||
|
addVegaWalletTopUpNetworkAccount();
|
||||||
|
|
||||||
export {
|
export {
|
||||||
mockConnectWallet,
|
mockConnectWallet,
|
||||||
|
|||||||
@@ -0,0 +1,41 @@
|
|||||||
|
import { AccountType } from '@vegaprotocol/types';
|
||||||
|
import type { TransferBody } from '@vegaprotocol/wallet';
|
||||||
|
import { createWalletClient, sendVegaTx } from '../capsule/wallet-client';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-namespace
|
||||||
|
namespace Cypress {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
|
interface Chainable<Subject> {
|
||||||
|
VegaWalletTopUpNetworkAccount(amount: string): void;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function addVegaWalletTopUpNetworkAccount() {
|
||||||
|
Cypress.Commands.add('VegaWalletTopUpNetworkAccount', (amount: string) => {
|
||||||
|
const vegaWalletUrl = Cypress.env('VEGA_WALLET_URL');
|
||||||
|
const token = Cypress.env('VEGA_WALLET_API_TOKEN');
|
||||||
|
const vegaPubKey = Cypress.env('VEGA_PUBLIC_KEY');
|
||||||
|
const assetAddress =
|
||||||
|
'b4f2726571fbe8e33b442dc92ed2d7f0d810e21835b7371a7915a365f07ccd9b';
|
||||||
|
createWalletClient(vegaWalletUrl, token);
|
||||||
|
|
||||||
|
const transactionBody: TransferBody = {
|
||||||
|
transfer: {
|
||||||
|
fromAccountType: AccountType.ACCOUNT_TYPE_GENERAL,
|
||||||
|
toAccountType: AccountType.ACCOUNT_TYPE_NETWORK_TREASURY,
|
||||||
|
to: '0000000000000000000000000000000000000000000000000000000000000000',
|
||||||
|
asset: assetAddress,
|
||||||
|
amount: amount + '0'.repeat(18),
|
||||||
|
oneOff: {
|
||||||
|
deliverOn: 0,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
cy.highlight('Topping network account');
|
||||||
|
|
||||||
|
sendVegaTx(vegaPubKey, transactionBody);
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -29,11 +29,6 @@ export function addVegaWalletTopUpRewardsPool() {
|
|||||||
.then((epochText) => {
|
.then((epochText) => {
|
||||||
transferStartEpoch = Number(epochText.replace('Epoch', '')) + 5;
|
transferStartEpoch = Number(epochText.replace('Epoch', '')) + 5;
|
||||||
transferEndEpoch = transferStartEpoch + 100;
|
transferEndEpoch = transferStartEpoch + 100;
|
||||||
|
|
||||||
/* eslint-disable no-console */
|
|
||||||
console.log(transferStartEpoch);
|
|
||||||
console.log(transferEndEpoch);
|
|
||||||
/* eslint-enable */
|
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { useCallback, useState } from 'react';
|
import { useCallback, useState } from 'react';
|
||||||
import { t } from '@vegaprotocol/i18n';
|
import { t } from '@vegaprotocol/i18n';
|
||||||
import { FeesBreakdown, getAsset, getQuoteName } from '@vegaprotocol/markets';
|
import { getAsset, getQuoteName } from '@vegaprotocol/markets';
|
||||||
import type { OrderSubmissionBody } from '@vegaprotocol/wallet';
|
import type { OrderSubmissionBody } from '@vegaprotocol/wallet';
|
||||||
import { useVegaWallet } from '@vegaprotocol/wallet';
|
import { useVegaWallet } from '@vegaprotocol/wallet';
|
||||||
|
|
||||||
@@ -8,7 +8,11 @@ import type { Market } from '@vegaprotocol/markets';
|
|||||||
import type { EstimatePositionQuery } from '@vegaprotocol/positions';
|
import type { EstimatePositionQuery } from '@vegaprotocol/positions';
|
||||||
import { AccountBreakdownDialog } from '@vegaprotocol/accounts';
|
import { AccountBreakdownDialog } from '@vegaprotocol/accounts';
|
||||||
|
|
||||||
import { formatRange, formatValue } from '@vegaprotocol/utils';
|
import {
|
||||||
|
formatNumberPercentage,
|
||||||
|
formatRange,
|
||||||
|
formatValue,
|
||||||
|
} from '@vegaprotocol/utils';
|
||||||
import { marketMarginDataProvider } from '@vegaprotocol/accounts';
|
import { marketMarginDataProvider } from '@vegaprotocol/accounts';
|
||||||
import { useDataProvider } from '@vegaprotocol/data-provider';
|
import { useDataProvider } from '@vegaprotocol/data-provider';
|
||||||
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
||||||
@@ -22,15 +26,23 @@ import {
|
|||||||
EST_TOTAL_MARGIN_TOOLTIP_TEXT,
|
EST_TOTAL_MARGIN_TOOLTIP_TEXT,
|
||||||
MARGIN_ACCOUNT_TOOLTIP_TEXT,
|
MARGIN_ACCOUNT_TOOLTIP_TEXT,
|
||||||
} from '../../constants';
|
} from '../../constants';
|
||||||
import { useEstimateFees } from '../../hooks';
|
import {
|
||||||
|
sumFees,
|
||||||
|
sumFeesDiscounts,
|
||||||
|
useEstimateFees,
|
||||||
|
} from '../../hooks/use-estimate-fees';
|
||||||
import { KeyValue } from './key-value';
|
import { KeyValue } from './key-value';
|
||||||
import {
|
import {
|
||||||
Accordion,
|
Accordion,
|
||||||
AccordionChevron,
|
AccordionChevron,
|
||||||
AccordionPanel,
|
AccordionPanel,
|
||||||
|
Intent,
|
||||||
|
Pill,
|
||||||
Tooltip,
|
Tooltip,
|
||||||
} from '@vegaprotocol/ui-toolkit';
|
} from '@vegaprotocol/ui-toolkit';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
|
import BigNumber from 'bignumber.js';
|
||||||
|
import { FeesBreakdown } from '../fees-breakdown';
|
||||||
|
|
||||||
const emptyValue = '-';
|
const emptyValue = '-';
|
||||||
|
|
||||||
@@ -50,7 +62,18 @@ export const DealTicketFeeDetails = ({
|
|||||||
const feeEstimate = useEstimateFees(order, isMarketInAuction);
|
const feeEstimate = useEstimateFees(order, isMarketInAuction);
|
||||||
const asset = getAsset(market);
|
const asset = getAsset(market);
|
||||||
const { decimals: assetDecimals, quantum } = asset;
|
const { decimals: assetDecimals, quantum } = asset;
|
||||||
|
const totalFees = feeEstimate?.fees && sumFees(feeEstimate?.fees);
|
||||||
|
const feesDiscounts =
|
||||||
|
feeEstimate?.fees && sumFeesDiscounts(feeEstimate?.fees);
|
||||||
|
|
||||||
|
const totalPercentageDiscount =
|
||||||
|
feesDiscounts &&
|
||||||
|
totalFees &&
|
||||||
|
feesDiscounts.total !== '0' &&
|
||||||
|
totalFees !== '0' &&
|
||||||
|
new BigNumber(feesDiscounts.total)
|
||||||
|
.dividedBy(BigNumber.sum(totalFees, feesDiscounts.total))
|
||||||
|
.times(100);
|
||||||
return (
|
return (
|
||||||
<KeyValue
|
<KeyValue
|
||||||
label={t('Fees')}
|
label={t('Fees')}
|
||||||
@@ -59,8 +82,19 @@ export const DealTicketFeeDetails = ({
|
|||||||
`~${formatValue(feeEstimate?.totalFeeAmount, assetDecimals)}`
|
`~${formatValue(feeEstimate?.totalFeeAmount, assetDecimals)}`
|
||||||
}
|
}
|
||||||
formattedValue={
|
formattedValue={
|
||||||
feeEstimate?.totalFeeAmount &&
|
<>
|
||||||
`~${formatValue(feeEstimate?.totalFeeAmount, assetDecimals, quantum)}`
|
{totalPercentageDiscount && (
|
||||||
|
<Pill size="xxs" intent={Intent.Warning} className="mr-1">
|
||||||
|
-{formatNumberPercentage(totalPercentageDiscount, 2)}
|
||||||
|
</Pill>
|
||||||
|
)}
|
||||||
|
{feeEstimate?.totalFeeAmount &&
|
||||||
|
`~${formatValue(
|
||||||
|
feeEstimate?.totalFeeAmount,
|
||||||
|
assetDecimals,
|
||||||
|
quantum
|
||||||
|
)}`}
|
||||||
|
</>
|
||||||
}
|
}
|
||||||
labelDescription={
|
labelDescription={
|
||||||
<>
|
<>
|
||||||
|
|||||||
@@ -153,6 +153,7 @@ describe('DealTicket', () => {
|
|||||||
'checked'
|
'checked'
|
||||||
);
|
);
|
||||||
expect(screen.getByTestId('order-size')).toHaveDisplayValue('0');
|
expect(screen.getByTestId('order-size')).toHaveDisplayValue('0');
|
||||||
|
// 7002-SORD-031
|
||||||
expect(screen.getByTestId('order-tif')).toHaveValue(
|
expect(screen.getByTestId('order-tif')).toHaveValue(
|
||||||
Schema.OrderTimeInForce.TIME_IN_FORCE_GTC
|
Schema.OrderTimeInForce.TIME_IN_FORCE_GTC
|
||||||
);
|
);
|
||||||
@@ -235,7 +236,7 @@ describe('DealTicket', () => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should set values for a non-persistent reduce only order and disable post only checkbox', () => {
|
it('should set values for a non-persistent reduce only order and disable post only checkbox', async () => {
|
||||||
const expectedOrder = {
|
const expectedOrder = {
|
||||||
marketId: market.id,
|
marketId: market.id,
|
||||||
type: Schema.OrderType.TYPE_LIMIT,
|
type: Schema.OrderType.TYPE_LIMIT,
|
||||||
@@ -273,13 +274,28 @@ describe('DealTicket', () => {
|
|||||||
expect(screen.getByTestId('order-price')).toHaveDisplayValue(
|
expect(screen.getByTestId('order-price')).toHaveDisplayValue(
|
||||||
expectedOrder.price
|
expectedOrder.price
|
||||||
);
|
);
|
||||||
|
// 7003-SORD-054
|
||||||
|
// 7003-SORD-055
|
||||||
|
// 7003-SORD-057
|
||||||
expect(screen.getByTestId('post-only')).toBeDisabled();
|
expect(screen.getByTestId('post-only')).toBeDisabled();
|
||||||
expect(screen.getByTestId('reduce-only')).toBeEnabled();
|
expect(screen.getByTestId('reduce-only')).toBeEnabled();
|
||||||
expect(screen.getByTestId('reduce-only')).toBeChecked();
|
expect(screen.getByTestId('reduce-only')).toBeChecked();
|
||||||
expect(screen.getByTestId('post-only')).not.toBeChecked();
|
expect(screen.getByTestId('post-only')).not.toBeChecked();
|
||||||
|
userEvent.hover(screen.getByText('Reduce only'));
|
||||||
|
// 7003-SORD-056
|
||||||
|
await waitFor(() => {
|
||||||
|
const tooltips = screen.getAllByTestId('tooltip-content');
|
||||||
|
expect(tooltips[0]).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
userEvent.hover(screen.getByText('Post only'));
|
||||||
|
await waitFor(() => {
|
||||||
|
const tooltips = screen.getAllByTestId('tooltip-content');
|
||||||
|
expect(tooltips[0]).toBeVisible();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should set values for a persistent post only order and disable reduce only checkbox', () => {
|
it('should set values for a persistent post only order and disable reduce only checkbox', async () => {
|
||||||
const expectedOrder = {
|
const expectedOrder = {
|
||||||
marketId: market.id,
|
marketId: market.id,
|
||||||
type: Schema.OrderType.TYPE_LIMIT,
|
type: Schema.OrderType.TYPE_LIMIT,
|
||||||
@@ -318,10 +334,49 @@ describe('DealTicket', () => {
|
|||||||
expect(screen.getByTestId('order-price')).toHaveDisplayValue(
|
expect(screen.getByTestId('order-price')).toHaveDisplayValue(
|
||||||
expectedOrder.price
|
expectedOrder.price
|
||||||
);
|
);
|
||||||
|
// 7003-SORD-054
|
||||||
|
// 7003-SORD-055
|
||||||
|
// 7003-SORD-057
|
||||||
expect(screen.getByTestId('post-only')).toBeEnabled();
|
expect(screen.getByTestId('post-only')).toBeEnabled();
|
||||||
expect(screen.getByTestId('reduce-only')).toBeDisabled();
|
expect(screen.getByTestId('reduce-only')).toBeDisabled();
|
||||||
expect(screen.getByTestId('post-only')).toBeChecked();
|
expect(screen.getByTestId('post-only')).toBeChecked();
|
||||||
expect(screen.getByTestId('reduce-only')).not.toBeChecked();
|
expect(screen.getByTestId('reduce-only')).not.toBeChecked();
|
||||||
|
|
||||||
|
userEvent.hover(screen.getByText('Reduce only'));
|
||||||
|
// 7003-SORD-056
|
||||||
|
await waitFor(() => {
|
||||||
|
const tooltips = screen.getAllByTestId('tooltip-content');
|
||||||
|
expect(tooltips[0]).toBeVisible();
|
||||||
|
});
|
||||||
|
userEvent.hover(screen.getByText('Post only'));
|
||||||
|
await waitFor(() => {
|
||||||
|
const tooltips = screen.getAllByTestId('tooltip-content');
|
||||||
|
expect(tooltips[0]).toBeVisible();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should see an explanation of post only', async () => {
|
||||||
|
render(generateJsx());
|
||||||
|
userEvent.hover(screen.getByText('Post only'));
|
||||||
|
// 7003-SORD-058
|
||||||
|
await waitFor(() => {
|
||||||
|
const tooltips = screen.getAllByTestId('tooltip-content');
|
||||||
|
expect(tooltips[0]).toHaveTextContent(
|
||||||
|
`"Post only" will ensure the order is not filled immediately but is placed on the order book as a passive order. When the order is processed it is either stopped (if it would not be filled immediately), or placed in the order book as a passive order until the price taker matches with it.`
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should see an explanation of reduce only', async () => {
|
||||||
|
render(generateJsx());
|
||||||
|
userEvent.hover(screen.getByText('Reduce only'));
|
||||||
|
// 7003-SORD-058
|
||||||
|
await waitFor(() => {
|
||||||
|
const tooltips = screen.getAllByTestId('tooltip-content');
|
||||||
|
expect(tooltips[0]).toHaveTextContent(
|
||||||
|
`"Reduce only" can be used only with non-persistent orders, such as "Fill or Kill" or "Immediate or Cancel".`
|
||||||
|
);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should set values for a persistent post only iceberg order and disable reduce only checkbox', () => {
|
it('should set values for a persistent post only iceberg order and disable reduce only checkbox', () => {
|
||||||
@@ -430,6 +485,12 @@ describe('DealTicket', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Only FOK and IOC should be present for type market order
|
// Only FOK and IOC should be present for type market order
|
||||||
|
// 7002-SORD-023
|
||||||
|
// 7002-SORD-024
|
||||||
|
// 7002-SORD-025
|
||||||
|
// 7002-SORD-026
|
||||||
|
// 7002-SORD-027
|
||||||
|
// 7002-SORD-028
|
||||||
expect(
|
expect(
|
||||||
Array.from(screen.getByTestId('order-tif').children).map(
|
Array.from(screen.getByTestId('order-tif').children).map(
|
||||||
(o) => o.textContent
|
(o) => o.textContent
|
||||||
@@ -437,6 +498,7 @@ describe('DealTicket', () => {
|
|||||||
).toEqual(['Fill or Kill (FOK)', 'Immediate or Cancel (IOC)']);
|
).toEqual(['Fill or Kill (FOK)', 'Immediate or Cancel (IOC)']);
|
||||||
|
|
||||||
// IOC should be default
|
// IOC should be default
|
||||||
|
// 7002-SORD-030
|
||||||
expect(screen.getByTestId('order-tif')).toHaveDisplayValue(
|
expect(screen.getByTestId('order-tif')).toHaveDisplayValue(
|
||||||
'Immediate or Cancel (IOC)'
|
'Immediate or Cancel (IOC)'
|
||||||
);
|
);
|
||||||
@@ -451,6 +513,12 @@ describe('DealTicket', () => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Switch to type limit order -> all TIF options should be shown
|
// Switch to type limit order -> all TIF options should be shown
|
||||||
|
// 7002-SORD-023
|
||||||
|
// 7002-SORD-024
|
||||||
|
// 7002-SORD-025
|
||||||
|
// 7002-SORD-026
|
||||||
|
// 7002-SORD-027
|
||||||
|
// 7002-SORD-028
|
||||||
await userEvent.click(screen.getByTestId('order-type-Limit'));
|
await userEvent.click(screen.getByTestId('order-type-Limit'));
|
||||||
expect(screen.getByTestId('order-tif').children).toHaveLength(
|
expect(screen.getByTestId('order-tif').children).toHaveLength(
|
||||||
Object.keys(Schema.OrderTimeInForce).length
|
Object.keys(Schema.OrderTimeInForce).length
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ export interface KeyValuePros {
|
|||||||
symbol: string;
|
symbol: string;
|
||||||
indent?: boolean | undefined;
|
indent?: boolean | undefined;
|
||||||
labelDescription?: ReactNode;
|
labelDescription?: ReactNode;
|
||||||
formattedValue?: string;
|
formattedValue?: ReactNode;
|
||||||
onClick?: () => void;
|
onClick?: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -23,7 +23,11 @@ export const KeyValue = ({
|
|||||||
onClick,
|
onClick,
|
||||||
formattedValue,
|
formattedValue,
|
||||||
}: KeyValuePros) => {
|
}: KeyValuePros) => {
|
||||||
const displayValue = `${formattedValue ?? '-'} ${symbol || ''}`;
|
const displayValue = (
|
||||||
|
<>
|
||||||
|
{formattedValue || '-'} {symbol || ''}
|
||||||
|
</>
|
||||||
|
);
|
||||||
const valueElement = onClick ? (
|
const valueElement = onClick ? (
|
||||||
<button onClick={onClick} className="font-mono ml-auto">
|
<button onClick={onClick} className="font-mono ml-auto">
|
||||||
{displayValue}
|
{displayValue}
|
||||||
|
|||||||
@@ -0,0 +1,130 @@
|
|||||||
|
import { sumFeesFactors } from '@vegaprotocol/markets';
|
||||||
|
import type { TradeFee, FeeFactors } from '@vegaprotocol/types';
|
||||||
|
import {
|
||||||
|
addDecimalsFormatNumber,
|
||||||
|
formatNumberPercentage,
|
||||||
|
} from '@vegaprotocol/utils';
|
||||||
|
import { t } from '@vegaprotocol/i18n';
|
||||||
|
import BigNumber from 'bignumber.js';
|
||||||
|
import { sumFees, sumFeesDiscounts } from '../../hooks';
|
||||||
|
|
||||||
|
const formatValue = (
|
||||||
|
value: string | number | null | undefined,
|
||||||
|
decimals: number
|
||||||
|
): string =>
|
||||||
|
value && !isNaN(Number(value))
|
||||||
|
? addDecimalsFormatNumber(value, decimals)
|
||||||
|
: '-';
|
||||||
|
|
||||||
|
const FeesBreakdownItem = ({
|
||||||
|
label,
|
||||||
|
factor,
|
||||||
|
value,
|
||||||
|
symbol,
|
||||||
|
decimals,
|
||||||
|
}: {
|
||||||
|
label: string;
|
||||||
|
factor?: BigNumber;
|
||||||
|
value: string;
|
||||||
|
symbol?: string;
|
||||||
|
decimals: number;
|
||||||
|
}) => (
|
||||||
|
<>
|
||||||
|
<dt className="col-span-2">{label}</dt>
|
||||||
|
{factor && (
|
||||||
|
<dd className="text-right col-span-1">
|
||||||
|
{formatNumberPercentage(new BigNumber(factor).times(100), 2)}
|
||||||
|
</dd>
|
||||||
|
)}
|
||||||
|
<dd className="text-right col-span-3">
|
||||||
|
{formatValue(value, decimals)} {symbol || ''}
|
||||||
|
</dd>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
export const FeesBreakdown = ({
|
||||||
|
fees,
|
||||||
|
feeFactors,
|
||||||
|
symbol,
|
||||||
|
decimals,
|
||||||
|
}: {
|
||||||
|
fees?: TradeFee;
|
||||||
|
feeFactors?: FeeFactors;
|
||||||
|
symbol?: string;
|
||||||
|
decimals: number;
|
||||||
|
}) => {
|
||||||
|
if (!fees) return null;
|
||||||
|
const totalFees = sumFees(fees);
|
||||||
|
const {
|
||||||
|
total: totalDiscount,
|
||||||
|
referral: referralDiscount,
|
||||||
|
volume: volumeDiscount,
|
||||||
|
} = sumFeesDiscounts(fees);
|
||||||
|
if (totalFees === '0') return null;
|
||||||
|
return (
|
||||||
|
<dl className="grid grid-cols-6">
|
||||||
|
<FeesBreakdownItem
|
||||||
|
label={t('Infrastructure fee')}
|
||||||
|
factor={
|
||||||
|
feeFactors?.infrastructureFee
|
||||||
|
? new BigNumber(feeFactors?.infrastructureFee)
|
||||||
|
: undefined
|
||||||
|
}
|
||||||
|
value={fees.infrastructureFee}
|
||||||
|
symbol={symbol}
|
||||||
|
decimals={decimals}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<FeesBreakdownItem
|
||||||
|
label={t('Liquidity fee')}
|
||||||
|
factor={
|
||||||
|
feeFactors?.liquidityFee
|
||||||
|
? new BigNumber(feeFactors?.liquidityFee)
|
||||||
|
: undefined
|
||||||
|
}
|
||||||
|
value={fees.liquidityFee}
|
||||||
|
symbol={symbol}
|
||||||
|
decimals={decimals}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<FeesBreakdownItem
|
||||||
|
label={t('Maker fee')}
|
||||||
|
factor={
|
||||||
|
feeFactors?.makerFee ? new BigNumber(feeFactors?.makerFee) : undefined
|
||||||
|
}
|
||||||
|
value={fees.makerFee}
|
||||||
|
symbol={symbol}
|
||||||
|
decimals={decimals}
|
||||||
|
/>
|
||||||
|
{volumeDiscount && volumeDiscount !== '0' && (
|
||||||
|
<FeesBreakdownItem
|
||||||
|
label={t('Volume discount')}
|
||||||
|
factor={new BigNumber(volumeDiscount).dividedBy(
|
||||||
|
BigNumber.sum(totalFees, totalDiscount)
|
||||||
|
)}
|
||||||
|
value={volumeDiscount}
|
||||||
|
symbol={symbol}
|
||||||
|
decimals={decimals}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
{referralDiscount && referralDiscount !== '0' && (
|
||||||
|
<FeesBreakdownItem
|
||||||
|
label={t('Referral discount')}
|
||||||
|
factor={new BigNumber(referralDiscount).dividedBy(
|
||||||
|
BigNumber.sum(totalFees, totalDiscount)
|
||||||
|
)}
|
||||||
|
value={referralDiscount}
|
||||||
|
symbol={symbol}
|
||||||
|
decimals={decimals}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
<FeesBreakdownItem
|
||||||
|
label={t('Total fees')}
|
||||||
|
factor={feeFactors ? sumFeesFactors(feeFactors) : undefined}
|
||||||
|
value={totalFees}
|
||||||
|
symbol={symbol}
|
||||||
|
decimals={decimals}
|
||||||
|
/>
|
||||||
|
</dl>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
export * from './deal-ticket';
|
export * from './deal-ticket';
|
||||||
export * from './deal-ticket-validation';
|
export * from './deal-ticket-validation';
|
||||||
|
export * from './fees-breakdown';
|
||||||
export * from './trading-mode-tooltip';
|
export * from './trading-mode-tooltip';
|
||||||
|
|||||||
@@ -22,6 +22,12 @@ query EstimateFees(
|
|||||||
makerFee
|
makerFee
|
||||||
infrastructureFee
|
infrastructureFee
|
||||||
liquidityFee
|
liquidityFee
|
||||||
|
makerFeeReferralDiscount
|
||||||
|
makerFeeVolumeDiscount
|
||||||
|
infrastructureFeeReferralDiscount
|
||||||
|
infrastructureFeeVolumeDiscount
|
||||||
|
liquidityFeeReferralDiscount
|
||||||
|
liquidityFeeVolumeDiscount
|
||||||
}
|
}
|
||||||
totalFeeAmount
|
totalFeeAmount
|
||||||
}
|
}
|
||||||
|
|||||||
+7
-1
@@ -15,7 +15,7 @@ export type EstimateFeesQueryVariables = Types.Exact<{
|
|||||||
}>;
|
}>;
|
||||||
|
|
||||||
|
|
||||||
export type EstimateFeesQuery = { __typename?: 'Query', estimateFees: { __typename?: 'FeeEstimate', totalFeeAmount: string, fees: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string } } };
|
export type EstimateFeesQuery = { __typename?: 'Query', estimateFees: { __typename?: 'FeeEstimate', totalFeeAmount: string, fees: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null } } };
|
||||||
|
|
||||||
|
|
||||||
export const EstimateFeesDocument = gql`
|
export const EstimateFeesDocument = gql`
|
||||||
@@ -34,6 +34,12 @@ export const EstimateFeesDocument = gql`
|
|||||||
makerFee
|
makerFee
|
||||||
infrastructureFee
|
infrastructureFee
|
||||||
liquidityFee
|
liquidityFee
|
||||||
|
makerFeeReferralDiscount
|
||||||
|
makerFeeVolumeDiscount
|
||||||
|
infrastructureFeeReferralDiscount
|
||||||
|
infrastructureFeeVolumeDiscount
|
||||||
|
liquidityFeeReferralDiscount
|
||||||
|
liquidityFeeVolumeDiscount
|
||||||
}
|
}
|
||||||
totalFeeAmount
|
totalFeeAmount
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,11 +6,17 @@ import type { EstimateFeesQuery } from './__generated__/EstimateOrder';
|
|||||||
|
|
||||||
const data: EstimateFeesQuery = {
|
const data: EstimateFeesQuery = {
|
||||||
estimateFees: {
|
estimateFees: {
|
||||||
totalFeeAmount: '12',
|
totalFeeAmount: '120',
|
||||||
fees: {
|
fees: {
|
||||||
infrastructureFee: '2',
|
infrastructureFee: '20',
|
||||||
liquidityFee: '4',
|
infrastructureFeeReferralDiscount: '2',
|
||||||
makerFee: '6',
|
infrastructureFeeVolumeDiscount: '4',
|
||||||
|
liquidityFee: '40',
|
||||||
|
liquidityFeeReferralDiscount: '6',
|
||||||
|
liquidityFeeVolumeDiscount: '8',
|
||||||
|
makerFee: '60',
|
||||||
|
makerFeeReferralDiscount: '10',
|
||||||
|
makerFeeVolumeDiscount: '12',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -67,11 +73,17 @@ describe('useEstimateFees', () => {
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
expect(result.current).toEqual({
|
expect(result.current).toEqual({
|
||||||
totalFeeAmount: '6',
|
totalFeeAmount: '60',
|
||||||
fees: {
|
fees: {
|
||||||
infrastructureFee: '1',
|
infrastructureFee: '10',
|
||||||
liquidityFee: '2',
|
infrastructureFeeReferralDiscount: '1',
|
||||||
makerFee: '3',
|
infrastructureFeeVolumeDiscount: '2',
|
||||||
|
liquidityFee: '20',
|
||||||
|
liquidityFeeReferralDiscount: '3',
|
||||||
|
liquidityFeeVolumeDiscount: '4',
|
||||||
|
makerFee: '30',
|
||||||
|
makerFeeReferralDiscount: '5',
|
||||||
|
makerFeeVolumeDiscount: '6',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -5,6 +5,32 @@ import type { EstimateFeesQuery } from './__generated__/EstimateOrder';
|
|||||||
import { useEstimateFeesQuery } from './__generated__/EstimateOrder';
|
import { useEstimateFeesQuery } from './__generated__/EstimateOrder';
|
||||||
|
|
||||||
const divideByTwo = (n: string) => (BigInt(n) / BigInt(2)).toString();
|
const divideByTwo = (n: string) => (BigInt(n) / BigInt(2)).toString();
|
||||||
|
export const sumFeesDiscounts = (
|
||||||
|
fees: EstimateFeesQuery['estimateFees']['fees']
|
||||||
|
) => {
|
||||||
|
const volume = (
|
||||||
|
BigInt(fees.makerFeeVolumeDiscount || '0') +
|
||||||
|
BigInt(fees.infrastructureFeeVolumeDiscount || '0') +
|
||||||
|
BigInt(fees.liquidityFeeVolumeDiscount || '0')
|
||||||
|
).toString();
|
||||||
|
const referral = (
|
||||||
|
BigInt(fees.makerFeeReferralDiscount || '0') +
|
||||||
|
BigInt(fees.infrastructureFeeReferralDiscount || '0') +
|
||||||
|
BigInt(fees.liquidityFeeReferralDiscount || '0')
|
||||||
|
).toString();
|
||||||
|
return {
|
||||||
|
volume,
|
||||||
|
referral,
|
||||||
|
total: (BigInt(volume) + BigInt(referral)).toString(),
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const sumFees = (fees: EstimateFeesQuery['estimateFees']['fees']) =>
|
||||||
|
(
|
||||||
|
BigInt(fees.makerFee || '0') +
|
||||||
|
BigInt(fees.infrastructureFee || '0') +
|
||||||
|
BigInt(fees.liquidityFee || '0')
|
||||||
|
).toString();
|
||||||
|
|
||||||
export const useEstimateFees = (
|
export const useEstimateFees = (
|
||||||
order?: OrderSubmissionBody['orderSubmission'],
|
order?: OrderSubmissionBody['orderSubmission'],
|
||||||
@@ -43,6 +69,26 @@ export const useEstimateFees = (
|
|||||||
),
|
),
|
||||||
liquidityFee: divideByTwo(data.estimateFees.fees.liquidityFee),
|
liquidityFee: divideByTwo(data.estimateFees.fees.liquidityFee),
|
||||||
makerFee: divideByTwo(data.estimateFees.fees.makerFee),
|
makerFee: divideByTwo(data.estimateFees.fees.makerFee),
|
||||||
|
infrastructureFeeReferralDiscount:
|
||||||
|
data.estimateFees.fees.infrastructureFeeReferralDiscount &&
|
||||||
|
divideByTwo(
|
||||||
|
data.estimateFees.fees.infrastructureFeeReferralDiscount
|
||||||
|
),
|
||||||
|
infrastructureFeeVolumeDiscount:
|
||||||
|
data.estimateFees.fees.infrastructureFeeVolumeDiscount &&
|
||||||
|
divideByTwo(data.estimateFees.fees.infrastructureFeeVolumeDiscount),
|
||||||
|
liquidityFeeReferralDiscount:
|
||||||
|
data.estimateFees.fees.liquidityFeeReferralDiscount &&
|
||||||
|
divideByTwo(data.estimateFees.fees.liquidityFeeReferralDiscount),
|
||||||
|
liquidityFeeVolumeDiscount:
|
||||||
|
data.estimateFees.fees.liquidityFeeVolumeDiscount &&
|
||||||
|
divideByTwo(data.estimateFees.fees.liquidityFeeVolumeDiscount),
|
||||||
|
makerFeeReferralDiscount:
|
||||||
|
data.estimateFees.fees.makerFeeReferralDiscount &&
|
||||||
|
divideByTwo(data.estimateFees.fees.makerFeeReferralDiscount),
|
||||||
|
makerFeeVolumeDiscount:
|
||||||
|
data.estimateFees.fees.makerFeeVolumeDiscount &&
|
||||||
|
divideByTwo(data.estimateFees.fees.makerFeeVolumeDiscount),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
: data?.estimateFees;
|
: data?.estimateFees;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { t } from '@vegaprotocol/i18n';
|
import { t } from '@vegaprotocol/i18n';
|
||||||
import { Button } from '@vegaprotocol/ui-toolkit';
|
import { Button, Splash } from '@vegaprotocol/ui-toolkit';
|
||||||
import { useNodeSwitcherStore } from '../../hooks/use-node-switcher-store';
|
import { useNodeSwitcherStore } from '../../hooks/use-node-switcher-store';
|
||||||
|
|
||||||
export const AppFailure = ({
|
export const AppFailure = ({
|
||||||
@@ -10,17 +10,15 @@ export const AppFailure = ({
|
|||||||
error?: string | null;
|
error?: string | null;
|
||||||
}) => {
|
}) => {
|
||||||
const setNodeSwitcher = useNodeSwitcherStore((store) => store.setDialogOpen);
|
const setNodeSwitcher = useNodeSwitcherStore((store) => store.setDialogOpen);
|
||||||
const nonIdealWrapperClasses =
|
|
||||||
'h-full min-h-screen flex items-center justify-center';
|
|
||||||
return (
|
return (
|
||||||
<div className={nonIdealWrapperClasses}>
|
<Splash>
|
||||||
<div className="text-center">
|
<div className="text-center">
|
||||||
<p className="text-xl mb-4">{title}</p>
|
<p className="mb-4 text-xl">{title}</p>
|
||||||
{error && <p className="text-sm mb-8">{error}</p>}
|
{error && <p className="mb-8 text-sm">{error}</p>}
|
||||||
<Button onClick={() => setNodeSwitcher(true)}>
|
<Button onClick={() => setNodeSwitcher(true)}>
|
||||||
{t('Change node')}
|
{t('Change node')}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</Splash>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
import { Loader, Splash } from '@vegaprotocol/ui-toolkit';
|
||||||
|
|
||||||
|
export const AppLoader = () => {
|
||||||
|
return (
|
||||||
|
<Splash>
|
||||||
|
<Loader />
|
||||||
|
</Splash>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export { AppLoader } from './app-loader';
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
export * from './app-failure';
|
export * from './app-failure';
|
||||||
|
export * from './app-loader';
|
||||||
export * from './network-loader';
|
export * from './network-loader';
|
||||||
export * from './network-switcher';
|
export * from './network-switcher';
|
||||||
export * from './node-guard';
|
export * from './node-guard';
|
||||||
|
|||||||
@@ -429,6 +429,12 @@ function compileFeatureFlags(): FeatureFlags {
|
|||||||
process.env['NX_GOVERNANCE_TRANSFERS']
|
process.env['NX_GOVERNANCE_TRANSFERS']
|
||||||
) as string
|
) as string
|
||||||
),
|
),
|
||||||
|
VOLUME_DISCOUNTS: TRUTHY.includes(
|
||||||
|
windowOrDefault(
|
||||||
|
'NX_VOLUME_DISCOUNTS',
|
||||||
|
process.env['NX_VOLUME_DISCOUNTS']
|
||||||
|
) as string
|
||||||
|
),
|
||||||
};
|
};
|
||||||
const EXPLORER_FLAGS = {
|
const EXPLORER_FLAGS = {
|
||||||
EXPLORER_ASSETS: TRUTHY.includes(
|
EXPLORER_ASSETS: TRUTHY.includes(
|
||||||
|
|||||||
@@ -81,6 +81,7 @@ export const DocsLinks = VEGA_DOCS_URL
|
|||||||
WITHDRAWAL_LIMITS: `${VEGA_DOCS_URL}/concepts/assets/deposits-withdrawals#withdrawal-limits`,
|
WITHDRAWAL_LIMITS: `${VEGA_DOCS_URL}/concepts/assets/deposits-withdrawals#withdrawal-limits`,
|
||||||
VALIDATOR_SCORES_REWARDS: `${VEGA_DOCS_URL}/concepts/vega-chain/validator-scores-and-rewards`,
|
VALIDATOR_SCORES_REWARDS: `${VEGA_DOCS_URL}/concepts/vega-chain/validator-scores-and-rewards`,
|
||||||
MARKET_LIFECYCLE: `${VEGA_DOCS_URL}/concepts/trading-on-vega/market-lifecycle`,
|
MARKET_LIFECYCLE: `${VEGA_DOCS_URL}/concepts/trading-on-vega/market-lifecycle`,
|
||||||
|
ETH_DATA_SOURCES: `${VEGA_DOCS_URL}/concepts/trading-on-vega/data-sources#ethereum-data-sources`,
|
||||||
}
|
}
|
||||||
: undefined;
|
: undefined;
|
||||||
|
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ export type CosmicElevatorFlags = Pick<
|
|||||||
| 'REFERRALS'
|
| 'REFERRALS'
|
||||||
| 'UPDATE_MARKET_STATE'
|
| 'UPDATE_MARKET_STATE'
|
||||||
| 'GOVERNANCE_TRANSFERS'
|
| 'GOVERNANCE_TRANSFERS'
|
||||||
|
| 'VOLUME_DISCOUNTS'
|
||||||
>;
|
>;
|
||||||
export type Configuration = z.infer<typeof tomlConfigSchema>;
|
export type Configuration = z.infer<typeof tomlConfigSchema>;
|
||||||
export const CUSTOM_NODE_KEY = 'custom' as const;
|
export const CUSTOM_NODE_KEY = 'custom' as const;
|
||||||
|
|||||||
@@ -81,6 +81,7 @@ const COSMIC_ELEVATOR_FLAGS = {
|
|||||||
REFERRALS: z.optional(z.boolean()),
|
REFERRALS: z.optional(z.boolean()),
|
||||||
UPDATE_MARKET_STATE: z.optional(z.boolean()),
|
UPDATE_MARKET_STATE: z.optional(z.boolean()),
|
||||||
GOVERNANCE_TRANSFERS: z.optional(z.boolean()),
|
GOVERNANCE_TRANSFERS: z.optional(z.boolean()),
|
||||||
|
VOLUME_DISCOUNTS: z.optional(z.boolean()),
|
||||||
};
|
};
|
||||||
|
|
||||||
const EXPLORER_FLAGS = {
|
const EXPLORER_FLAGS = {
|
||||||
|
|||||||
@@ -1,3 +1,15 @@
|
|||||||
|
fragment TradeFeeFields on TradeFee {
|
||||||
|
makerFee
|
||||||
|
infrastructureFee
|
||||||
|
liquidityFee
|
||||||
|
makerFeeReferralDiscount
|
||||||
|
makerFeeVolumeDiscount
|
||||||
|
infrastructureFeeReferralDiscount
|
||||||
|
infrastructureFeeVolumeDiscount
|
||||||
|
liquidityFeeReferralDiscount
|
||||||
|
liquidityFeeVolumeDiscount
|
||||||
|
}
|
||||||
|
|
||||||
fragment FillFields on Trade {
|
fragment FillFields on Trade {
|
||||||
id
|
id
|
||||||
market {
|
market {
|
||||||
@@ -16,14 +28,10 @@ fragment FillFields on Trade {
|
|||||||
id
|
id
|
||||||
}
|
}
|
||||||
buyerFee {
|
buyerFee {
|
||||||
makerFee
|
...TradeFeeFields
|
||||||
infrastructureFee
|
|
||||||
liquidityFee
|
|
||||||
}
|
}
|
||||||
sellerFee {
|
sellerFee {
|
||||||
makerFee
|
...TradeFeeFields
|
||||||
infrastructureFee
|
|
||||||
liquidityFee
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -61,14 +69,10 @@ fragment FillUpdateFields on TradeUpdate {
|
|||||||
createdAt
|
createdAt
|
||||||
type
|
type
|
||||||
buyerFee {
|
buyerFee {
|
||||||
makerFee
|
...TradeFeeFields
|
||||||
infrastructureFee
|
|
||||||
liquidityFee
|
|
||||||
}
|
}
|
||||||
sellerFee {
|
sellerFee {
|
||||||
makerFee
|
...TradeFeeFields
|
||||||
infrastructureFee
|
|
||||||
liquidityFee
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+26
-19
@@ -3,9 +3,11 @@ import * as Types from '@vegaprotocol/types';
|
|||||||
import { gql } from '@apollo/client';
|
import { gql } from '@apollo/client';
|
||||||
import * as Apollo from '@apollo/client';
|
import * as Apollo from '@apollo/client';
|
||||||
const defaultOptions = {} as const;
|
const defaultOptions = {} as const;
|
||||||
export type FillFieldsFragment = { __typename?: 'Trade', id: string, createdAt: any, price: string, size: string, buyOrder: string, sellOrder: string, aggressor: Types.Side, market: { __typename?: 'Market', id: string }, buyer: { __typename?: 'Party', id: string }, seller: { __typename?: 'Party', id: string }, buyerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string }, sellerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string } };
|
export type TradeFeeFieldsFragment = { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null };
|
||||||
|
|
||||||
export type FillEdgeFragment = { __typename?: 'TradeEdge', cursor: string, node: { __typename?: 'Trade', id: string, createdAt: any, price: string, size: string, buyOrder: string, sellOrder: string, aggressor: Types.Side, market: { __typename?: 'Market', id: string }, buyer: { __typename?: 'Party', id: string }, seller: { __typename?: 'Party', id: string }, buyerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string }, sellerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string } } };
|
export type FillFieldsFragment = { __typename?: 'Trade', id: string, createdAt: any, price: string, size: string, buyOrder: string, sellOrder: string, aggressor: Types.Side, market: { __typename?: 'Market', id: string }, buyer: { __typename?: 'Party', id: string }, seller: { __typename?: 'Party', id: string }, buyerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null }, sellerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null } };
|
||||||
|
|
||||||
|
export type FillEdgeFragment = { __typename?: 'TradeEdge', cursor: string, node: { __typename?: 'Trade', id: string, createdAt: any, price: string, size: string, buyOrder: string, sellOrder: string, aggressor: Types.Side, market: { __typename?: 'Market', id: string }, buyer: { __typename?: 'Party', id: string }, seller: { __typename?: 'Party', id: string }, buyerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null }, sellerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null } } };
|
||||||
|
|
||||||
export type FillsQueryVariables = Types.Exact<{
|
export type FillsQueryVariables = Types.Exact<{
|
||||||
filter?: Types.InputMaybe<Types.TradesFilter>;
|
filter?: Types.InputMaybe<Types.TradesFilter>;
|
||||||
@@ -13,17 +15,30 @@ export type FillsQueryVariables = Types.Exact<{
|
|||||||
}>;
|
}>;
|
||||||
|
|
||||||
|
|
||||||
export type FillsQuery = { __typename?: 'Query', trades?: { __typename?: 'TradeConnection', edges: Array<{ __typename?: 'TradeEdge', cursor: string, node: { __typename?: 'Trade', id: string, createdAt: any, price: string, size: string, buyOrder: string, sellOrder: string, aggressor: Types.Side, market: { __typename?: 'Market', id: string }, buyer: { __typename?: 'Party', id: string }, seller: { __typename?: 'Party', id: string }, buyerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string }, sellerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string } } }>, pageInfo: { __typename?: 'PageInfo', startCursor: string, endCursor: string, hasNextPage: boolean, hasPreviousPage: boolean } } | null };
|
export type FillsQuery = { __typename?: 'Query', trades?: { __typename?: 'TradeConnection', edges: Array<{ __typename?: 'TradeEdge', cursor: string, node: { __typename?: 'Trade', id: string, createdAt: any, price: string, size: string, buyOrder: string, sellOrder: string, aggressor: Types.Side, market: { __typename?: 'Market', id: string }, buyer: { __typename?: 'Party', id: string }, seller: { __typename?: 'Party', id: string }, buyerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null }, sellerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null } } }>, pageInfo: { __typename?: 'PageInfo', startCursor: string, endCursor: string, hasNextPage: boolean, hasPreviousPage: boolean } } | null };
|
||||||
|
|
||||||
export type FillUpdateFieldsFragment = { __typename?: 'TradeUpdate', id: string, marketId: string, buyOrder: string, sellOrder: string, buyerId: string, sellerId: string, aggressor: Types.Side, price: string, size: string, createdAt: any, type: Types.TradeType, buyerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string }, sellerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string } };
|
export type FillUpdateFieldsFragment = { __typename?: 'TradeUpdate', id: string, marketId: string, buyOrder: string, sellOrder: string, buyerId: string, sellerId: string, aggressor: Types.Side, price: string, size: string, createdAt: any, type: Types.TradeType, buyerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null }, sellerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null } };
|
||||||
|
|
||||||
export type FillsEventSubscriptionVariables = Types.Exact<{
|
export type FillsEventSubscriptionVariables = Types.Exact<{
|
||||||
filter: Types.TradesSubscriptionFilter;
|
filter: Types.TradesSubscriptionFilter;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
|
|
||||||
export type FillsEventSubscription = { __typename?: 'Subscription', tradesStream?: Array<{ __typename?: 'TradeUpdate', id: string, marketId: string, buyOrder: string, sellOrder: string, buyerId: string, sellerId: string, aggressor: Types.Side, price: string, size: string, createdAt: any, type: Types.TradeType, buyerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string }, sellerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string } }> | null };
|
export type FillsEventSubscription = { __typename?: 'Subscription', tradesStream?: Array<{ __typename?: 'TradeUpdate', id: string, marketId: string, buyOrder: string, sellOrder: string, buyerId: string, sellerId: string, aggressor: Types.Side, price: string, size: string, createdAt: any, type: Types.TradeType, buyerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null }, sellerFee: { __typename?: 'TradeFee', makerFee: string, infrastructureFee: string, liquidityFee: string, makerFeeReferralDiscount?: string | null, makerFeeVolumeDiscount?: string | null, infrastructureFeeReferralDiscount?: string | null, infrastructureFeeVolumeDiscount?: string | null, liquidityFeeReferralDiscount?: string | null, liquidityFeeVolumeDiscount?: string | null } }> | null };
|
||||||
|
|
||||||
|
export const TradeFeeFieldsFragmentDoc = gql`
|
||||||
|
fragment TradeFeeFields on TradeFee {
|
||||||
|
makerFee
|
||||||
|
infrastructureFee
|
||||||
|
liquidityFee
|
||||||
|
makerFeeReferralDiscount
|
||||||
|
makerFeeVolumeDiscount
|
||||||
|
infrastructureFeeReferralDiscount
|
||||||
|
infrastructureFeeVolumeDiscount
|
||||||
|
liquidityFeeReferralDiscount
|
||||||
|
liquidityFeeVolumeDiscount
|
||||||
|
}
|
||||||
|
`;
|
||||||
export const FillFieldsFragmentDoc = gql`
|
export const FillFieldsFragmentDoc = gql`
|
||||||
fragment FillFields on Trade {
|
fragment FillFields on Trade {
|
||||||
id
|
id
|
||||||
@@ -43,17 +58,13 @@ export const FillFieldsFragmentDoc = gql`
|
|||||||
id
|
id
|
||||||
}
|
}
|
||||||
buyerFee {
|
buyerFee {
|
||||||
makerFee
|
...TradeFeeFields
|
||||||
infrastructureFee
|
|
||||||
liquidityFee
|
|
||||||
}
|
}
|
||||||
sellerFee {
|
sellerFee {
|
||||||
makerFee
|
...TradeFeeFields
|
||||||
infrastructureFee
|
|
||||||
liquidityFee
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
${TradeFeeFieldsFragmentDoc}`;
|
||||||
export const FillEdgeFragmentDoc = gql`
|
export const FillEdgeFragmentDoc = gql`
|
||||||
fragment FillEdge on TradeEdge {
|
fragment FillEdge on TradeEdge {
|
||||||
node {
|
node {
|
||||||
@@ -76,17 +87,13 @@ export const FillUpdateFieldsFragmentDoc = gql`
|
|||||||
createdAt
|
createdAt
|
||||||
type
|
type
|
||||||
buyerFee {
|
buyerFee {
|
||||||
makerFee
|
...TradeFeeFields
|
||||||
infrastructureFee
|
|
||||||
liquidityFee
|
|
||||||
}
|
}
|
||||||
sellerFee {
|
sellerFee {
|
||||||
makerFee
|
...TradeFeeFields
|
||||||
infrastructureFee
|
|
||||||
liquidityFee
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
${TradeFeeFieldsFragmentDoc}`;
|
||||||
export const FillsDocument = gql`
|
export const FillsDocument = gql`
|
||||||
query Fills($filter: TradesFilter, $pagination: Pagination) {
|
query Fills($filter: TradesFilter, $pagination: Pagination) {
|
||||||
trades(filter: $filter, pagination: $pagination) {
|
trades(filter: $filter, pagination: $pagination) {
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user