Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sip-2030.md #1651

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 25 additions & 22 deletions content/sips/sip-2030.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The following exchange data shows the market details for USDT trading pairs:

### Rationale

USDT is one of the most widely used stablecoins in the cryptocurrency space, and its addition as a trading pair in Perps V2 will attract more traders and increase the platform's trading volume.
USDT is one of the most widely used stablecoins in the cryptocurrency space, and its addition as a trading pair in Perps V2 will attract more traders and increase the platform's trading volume, especially in cases of depegging or expected depegging.

### Technical Specification

Expand All @@ -66,32 +66,35 @@ Implementation requires adding the USDT trading pair to Perps V2. The off-chain

N/A

### Configurable Values (Via SCCP)
### Configurable Values

All Perps V2 configurable values for the USDT market will be set in subsequent SCCPs.
The USDT market will launch unpaused with the following configuration:

```json
{
"makerFee": "",
"takerFee": "",
"takerFeeDelayedOrder": "",
"makerFeeDelayedOrder": "",
"takerFeeOffchainDelayedOrder": "",
"makerFeeOffchainDelayedOrder": "",
"maxLeverage": "",
"maxMarketValue": "",
"maxFundingVelocity": "",
"skewScale": "",

"nextPriceConfirmWindow": "",
"delayedOrderConfirmWindow": "",
"minDelayTimeDelta": "",
"maxDelayTimeDelta": "",
"offchainDelayedOrderMinAge": "",
"offchainDelayedOrderMaxAge": "",
"offchainPriceDivergence": ""
"makerFee": "0.3",
"takerFee": "0.3",
"takerFeeDelayedOrder": "0.3",
"makerFeeDelayedOrder": "0.3",
"takerFeeOffchainDelayedOrder": "0.00015",
"makerFeeOffchainDelayedOrder": "0",
"nextPriceConfirmWindow": "2",
"delayedOrderConfirmWindow": "120",
"minDelayTimeDelta": "60",
"maxDelayTimeDelta": "6000",
"offchainDelayedOrderMinAge": "2",
"offchainDelayedOrderMaxAge": "60",
"maxLeverage": "55",
"maxMarketValue": "5000000",
"maxFundingVelocity": "3",
"skewScale": "10000000000",
"offchainPriceDivergence": "0.025",
"liquidationPremiumMultiplier": "1",
"liquidationBufferRatio": "0.0075",
"maxPD": "0.00015",
"maxLiquidationDelta": "0.0003",
}

```

## Copyright

Expand Down
Loading