corp intro/features

This commit is contained in:
tim
2025-02-17 20:11:47 -04:00
parent 3c49f3d741
commit f7f6e3abfc
5 changed files with 107 additions and 6 deletions

View File

@@ -44,15 +44,17 @@ export default defineConfig({
siteTitle: ' ', siteTitle: ' ',
nav: [ nav: [
{ text: 'Home', link: '/' }, { text: 'Home', link: '/' },
{ text: 'Docs', link: '/how-it-works' }, { text: 'Docs', link: '/introduction' },
{ text: 'App', link: 'https://app.dexorder.trade/', target: 'dexorderapp', props: {} } { text: 'App', link: 'https://app.dexorder.trade/', target: 'dexorderapp', props: {} }
], ],
sidebar: [ sidebar: [
{ {
text: 'Getting Started', text: 'About',
items: [ items: [
{text: 'How It Works', link: '/how-it-works',}, {text: 'Introduction', link: '/introduction',},
{text: 'Features', link: '/features',},
{text: 'Fees', link: '/fees',},
] ]
}, },
{ {
@@ -60,10 +62,9 @@ export default defineConfig({
items: [ items: [
{text: 'Terms of Service', link: '/terms-of-service',}, {text: 'Terms of Service', link: '/terms-of-service',},
{text: 'Execution Policy', link: '/execution-policy',}, {text: 'Execution Policy', link: '/execution-policy',},
{text: 'Privacy Policy', link: '/privacy-policy',}, // {text: 'Privacy Policy', link: '/privacy-policy',}, TODO
] ]
}, },
{text: 'Fees', link: '/fees',},
], ],
socialLinks: [ socialLinks: [

View File

@@ -16,3 +16,7 @@ Dexorder will attempt to execute each tranche at least ten (10) times under norm
If an execution attempt reverts for an unrecognized reason unrelated to price, time, or other order conditions, If an execution attempt reverts for an unrecognized reason unrelated to price, time, or other order conditions,
Dexorder will progressively slow down its execution attempts of that tranche, and if the tranche execution raises Dexorder will progressively slow down its execution attempts of that tranche, and if the tranche execution raises
an unknown reversion code three times in a row, the execution of that order may be prematurely aborted. an unknown reversion code three times in a row, the execution of that order may be prematurely aborted.
## Timeout
Dexorder commits to providing triggering services for 367 days from the time your order was placed. Orders older than 367 days may be considered stale and removed from the triggering system.

45
src/features.md Normal file
View File

@@ -0,0 +1,45 @@
# Dexorder Features
## Limit Orders / Diagonals
Set price limits and wait for the market to come to you. You can even make _diagonal_ limit lines, for example to buy trend pullbacks.
Examples:
> Buy 1.0 WETH/USD if the price is below \$2000
## DCA / TWAP
Dollar cost average (DCA) or get a time-weighted average price (TWAP) by using the timing features available in dexorders. Set rate limits in combination with limit lines to trigger a DCA/TWAP only when certain price targets are met.
Examples:
> Buy 0.1 WETH/USDC daily
> When WETH/USDC drops below \$2000, buy 5% per hour.
## Stop-Loss / Take-Profit
Automatically exit your positions by attaching a conditional order to your entry order.
> After buying WETH/USDC, sell if it gains 25%
> After buying WETH/USDC, sell if it loses 5%
## Breakout Orders / Range Orders
Wait until the market pumps _above_ your target level before buying into the new trend. Use custom tranches to set both an upper and lower range limit.
> Wait for SHT/USDC to break above \$0.01 then buy 50,000 SHT.
> Buy WETH/USDC only in the price range \$2000-\$2500
## One-cancels-the-other (OCO) Groups
Multiple orders may be bundled into an OCO group, in which case if one order triggers, it cancels the others. The cancellation can be triggered by either a partial fill of any amount or by the completion of an entire order.
> Buy \$100 worth of SHT/USDC below \$0.002 or \$100 worth of SHTC/USDC below \$0.001, but don't buy both.
## One-click Cancel All
Since your trading vault is aware of all the orders you've placed in it, it can efficiently cancel all your open orders with just a single transaction. Even if you have 1,000 open orders, one quick, cheap CancelAll transaction is all you need.

View File

@@ -13,7 +13,7 @@ hero:
target: dexorder-app target: dexorder-app
- theme: alt - theme: alt
text: Documentation text: Documentation
link: /how-it-works link: /introduction
# image: # image:
# light: /dexorder_full_lightmode.svg # light: /dexorder_full_lightmode.svg
# dark: /dexorder_full_darkmode.svg # dark: /dexorder_full_darkmode.svg

51
src/introduction.md Normal file
View File

@@ -0,0 +1,51 @@
# What is Dexorder?
Dexorder is an on-chain system providing advanced order management for DeFi traders. Dexorder is noncustodial and runs on the [Arbitrum One](https://arbitrum.io/) network (more L2's coming soon).
* Limit Orders
* DCA / TWAP
* Diagonal Limit Lines
* Stop-loss & Take-profit
* Breakout Orders
* One-Click Cancel All
See more [Features](/features).
<img src="/how-it-works.png" alt="How It Works" class="img-fluid">
## Personal Trading Vault
Dexorder is not an exchange. Dexorder never has custody of your funds and never participates as a counterparty in your trade.
Instead, Dexorder provides you with your own personal trading vault smart contract, which can hold orders as well as tokens. When your order conditions are met and the vault is activated with gas, your vault swaps directly with your favorite DeFi pools.
## Funds are Never Locked
Your trading vault can only trade the tokens that you deposit into it. This means there is no separate "approval" transaction. Rather, depositing coins into your vault makes them available to trade.
Tokens deposited into your vault may always be withdrawn at any time by only you. Funds are _never_ locked by the vault. If active orders in the vault need funds that you withdrew, those orders are simply unable to trade, and the orders will stay open without being able to execute. If you put tokens back into your vault, the orders will automatically resume and trade the newly deposited funds.
## Prepaid Gas
Orders like Limit Orders and DCA Orders may not execute right away but wait until certain time or price conditions are met.
Dexorder charges an up-front gas fee, and then when the market conditions for your order are met, Dexorder supplies your vault with gas and asks it to execute the swap. Your trading vault checks the order first, and if everything is ok, it swaps directly with the DeFi pool.
Dexorder does not participate in the swap and cannot touch the tokens or orders in your vault. Dexorder provides an order-triggering service that supplies gas to your trading vault at the correct times according to market conditions. If Dexorder tries to trigger an order at the wrong time, your smart vault will check the order and reject the attempt.
Once you place an order, Dexorder will provide the gas for all future swaps your order may need, in accordance with our [Execution Policy](/execution-policy).
See [Gas Fees](/fees#gas-fees) for more.
## Web Interface
Creating dexorders couldn't be easier, using the charts you know and love by [TradingView](https://tradingview.com/). What you see on the chart is the order you get on-chain.
When you place orders from the website, your wallet signs your order, putting it into your trading vault on-chain. Similarly, actions like Cancel or Cancel All are also signed by your web wallet and sent directly to the blockchain. Dexorder's servers are not involved with any of these interactions, which are made directly from your web wallet to your on-chain vault.
## API
See our [smart contracts](https://github.com/dexorder-trade/contract) for interacting directly with Dexorder vaults on-chain.