Skip to content
Open
Show file tree
Hide file tree
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
193 changes: 0 additions & 193 deletions docs/composability/SDK - Solana Native.md

This file was deleted.

68 changes: 68 additions & 0 deletions docs/developing/integrate/wallets/EIP_1559.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
---
title: EIP-1599
proofedDate: 20252901
iterationBy: na
includedInSite: false
approvedBy: na
comment:
---

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

## Overview

EIP-1559 introduces a more predictable and efficient transaction fee mechanism. Neon EVM supports EIP-1559, aligning its fee model with Ethereum’s ecosystem and improving the user experience.

## Key Features
### Base fee

- **Dynamic adjustment**: The base fee adjusts automatically based on network demand, increasing when blocks are more than 50% full and decreasing when they are less.
- **Burn mechanism**: The base fee is burned, reducing the total token supply and creating a deflationary effect.

### Priority fee (Tip)

- Users can include a tip to incentivize validators to prioritize their transactions.
- Higher tips can expedite transaction confirmation during periods of high network demand.

### Improved predictability

- The base fee mechanism minimizes gas price volatility, making transaction costs easier to estimate.

## Using MetaMask with EIP-1559
### Step-by-Step Guide

1. **Initiate a transaction**
- Open your dApp or wallet and start a transaction (e.g., transferring tokens).
- MetaMask will display a transaction prompt.

<div className='neon-img-width-600' style={{textAlign: 'center'}}>

![](img/eip1.png)

</div>

2. **Edit gas settings**
- Click **Edit** or **Settings** to modify gas parameters.

<div className='neon-img-width-600' style={{textAlign: 'center'}}>

![](img/eip2.png)

</div>

3. **Set base fee and priority fee**
- **Max fee**: The maximum amount per gas unit (Base Fee + Priority Fee).
- **Priority fee (Tip)**: Optional fee to speed up transaction processing.

<div className='neon-img-width-600' style={{textAlign: 'center'}}>

![](img/eip3.png)

</div>

4. **Confirm and submit**
- Save your settings and confirm the transaction.

5. **Monitor the transaction**
- Use MetaMask or a block explorer like [Neonscan](https://neonscan.io/) to track transaction status. Adjust the Priority Fee if necessary.
Binary file added docs/developing/integrate/wallets/img/eip1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/developing/integrate/wallets/img/eip2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/developing/integrate/wallets/img/eip3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ const sidebars = {
items: [
'developing/integrate/wallets/integrating_metamask_into_your_dapp',
'developing/integrate/wallets/integrating_walletconnect',
'developing/integrate/wallets/EIP_1559',
'developing/integrate/wallets/safe',
'developing/integrate/wallets/safe_cli',
'developing/integrate/wallets/integrating_web3auth',
Expand Down