Skip to content

Commit

Permalink
Fixed broken links.
Browse files Browse the repository at this point in the history
  • Loading branch information
oable committed Mar 22, 2024
1 parent 2f02a35 commit 7539466
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/operating/accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Operator keys should be spread [evenly between Proxy instances](operator-introdu

## Holder accounts

[Holder accounts](/docs/architecture/solana-accounts/#holder-accounts) are a crucial element of Neon EVM. Neon Proxy creates holder accounts with [rent-exempt balances](https://docs.solana.com/ru/developing/programming-model/accounts#rent) on start. The number of holder accounts created determines the TPS provided to users and can be configured with `PRX_PERM_ACCOUNT_LIMIT`.
[Holder accounts](/docs/architecture/solana-accounts/#holder-accounts) are a crucial element of Neon EVM. Neon Proxy creates holder accounts with [rent-exempt balances](https://solana.com/docs/core/accounts#rent) on start. The number of holder accounts created determines the TPS provided to users and can be configured with `PRX_PERM_ACCOUNT_LIMIT`.

You may retrieve a list of Neon Operator key accounts and attached holder accounts (see [**Retrieve your balance**](#query-balance) below).

Expand Down
10 changes: 5 additions & 5 deletions docs/tokens/gas_fees.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ proofedDate: 20231204
iterationBy: na
includedInSite: true
approvedBy: na
comment: Calc sheet https://docs.google.com/spreadsheets/d/1g2ms3DveyPgrG0Gf6cSwq6xhT0AgrrRus_pa9ICHP4w/edit?usp=sharing
comment: Calc sheet https://docs.google.com/spreadsheets/d/1g2ms3DveyPgrG0Gf6cSwq6xhT0AgrrRus_pa9ICHP4w/edit?usp=sharing
---

import Formula from '../single-source-snippets/_price_formula.mdx'
Expand All @@ -24,7 +24,7 @@ The NEON token is used to pay the “gas fees” required for transaction execut

:::info
Neon EVM will soon support fee payment in the same token as the transaction token for supported tokens e.g. SOL and USDC.
:::
:::

> `Gas Fee` = `Gas amount` \* `Gas price`
>
Expand Down Expand Up @@ -85,11 +85,11 @@ The Gas amount is calculated with N=1 iterations and S=0 storage costs:

### Example 2: create a new account
Within [Solana](https://docs.solana.com/storage_rent_economics), the rental cost for storage can be paid via one of two methods:
1. Set it and forget it.
1. Set it and forget it.

> With this approach, accounts with two years' worth of rent deposited are exempt from network rent charges. By maintaining this minimum balance, the broader network benefits from reduced liquidity and the account holder can rest assured that their data is retained for continual access and usage.
2. Pay per byte.
2. Pay per byte.

> The network can charge rent on a per-epoch basis, in credit for the next epoch. This rent is deducted at a rate specified in genesis, in Lamports per Kilobyte-year.
Expand Down Expand Up @@ -119,4 +119,4 @@ To simplify the user experience, Neon takes option 1 and charges two years' wort

## What next?

If you want to get your dApp started on Neon EVM, you may be wondering how you pay for the first transactions that are required to buy the NEON required to cover gas costs. This is where our starter pack of [gasless transactions](/docs/developing/gasless) comes in. Furthermore, our "coming soon" feature will allow users to pay fees in [alternative tokens](https://neonevm.org/blog/feature-alternative-gas-fee-token).
If you want to get your dApp started on Neon EVM, you may be wondering how you pay for the first transactions that are required to buy the NEON required to cover gas costs. This is where our starter pack of gasless transactions comes in. Furthermore, our "coming soon" feature will allow users to pay fees in [alternative tokens](https://neonevm.org/blog/feature-alternative-gas-fee-token).
2 changes: 1 addition & 1 deletion src/components/NeonEcosystemView/proxy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function Proxy(props: { changeState: Dispatch<any>, theme: 'dark' | 'ligh
<circle cx="1259" cy="390" r="15" stroke={linkColor} strokeWidth="2"/>
</g>
</a>
<a href="/docs/tokens/gas_fees">
<a href="/docs/tokens/gas_fees.mdx">
<text fill={linkColor} fontFamily="Inter" fontSize="25" letterSpacing="-0.514979px" textDecoration="underline"><tspan x="1491.85" y="398.091">gas fees</tspan></text>
<g>
<path d="M1602.6 382.8H1616.2V396.4" stroke={linkColor} strokeWidth="2" strokeMiterlimit="10" strokeLinecap="round"/>
Expand Down

0 comments on commit 7539466

Please sign in to comment.