Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

SEO client error links fixes #220

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The token was [officially launched](https://blog.1inch.io/1inch-token-is-release

### Token Unlock Schedule

On the release day, 6% of the 1INCH token's total issuance of 1.5 billion was unlocked. The remaining tokens will be gradually unlocked over a [four-year period](https://1inch.io/token/) by the end of 2024.
On the release day, 6% of the 1INCH token's total issuance of 1.5 billion was unlocked. The remaining tokens will be gradually unlocked over a [four-year period](https://1inch.io/dao/) by the end of 2024.

![](./assets/chart2.png)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A swap surplus is the result of a unique market dynamic known as "positive slipp

- A swap surplus is not a trading fee, and does not occur with every swap.

- With the 1inch router v4 and v5 update, [optimized routers](https://docs.1inch.io/docs/aggregation-protocol/smart-contract/AggregationRouterV5) such as unoswap, uniswapV3Swap and clipperSwap along with any `fillOrder` function will never take a surplus, only the swap function. If you have more questions on this topic please reach out to our live chat!*
- With the 1inch router v4 and v5 update, [optimized routers](https://docs.1inch.io/docs/aggregation-protocol/smart-contract/AggregationRouterV6) such as unoswap, uniswapV3Swap and clipperSwap along with any `fillOrder` function will never take a surplus, only the swap function. If you have more questions on this topic please reach out to our live chat!*

### Where does a surplus amount of tokens end up after a swap is complete?
With [1IP-28] Discontinue Swap Surplus Collection, the community has decided to disconnect the collection of the swap surplus by the 1inch DAO. The primary purpose was to ensure the stable and consistent growth of the 1inch Network. 1inch Network Interface is dependent on the third-party API providers, which manage the infrastructure behind the swap functionality. Following the decision of the DAO to discontinue swap surplus collection, the operational set up of such third-party API providers imposed the collection of slippage as a fee for swap services provision and maintenance. Currently, the surplus amount is retained by these providers as a service fee.
With [1IP-28] Discontinue Swap Surplus Collection, the community has decided to disconnect the collection of the swap surplus by the 1inch DAO. The primary purpose was to ensure the stable and consistent growth of the 1inch Network. 1inch Network Interface is dependent on the third-party API providers, which manage the infrastructure behind the swap functionality. Following the decision of the DAO to discontinue swap surplus collection, the operational set up of such third-party API providers imposed the collection of slippage as a fee for swap services provision and maintenance. Currently, the surplus amount is retained by these providers as a service fee.
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,4 @@ const salt = AuctionSalt.decode(
)
AuctionCalculator.fromAuctionData(suffix, salt)
// #=> AuctionCalculator instance
```
```
6 changes: 3 additions & 3 deletions docs/limit-order-protocol/smart-contract/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* [interfaces](interfaces/README.md)
* [IDaiLikePermit](interfaces/IDaiLikePermit.md)
* [IWithdrawable](interfaces/IWithdrawable.md)
* [Interaction](interfaces/Interaction.md)
* [PostInteraction](interfaces/PostInteraction.md)
* [PreInteraction](interfaces/PreInteraction.md)
* [Interaction](interfaces/InteractionNotificationReceiver.md)
* [PostInteraction](interfaces/PostInteractionNotificationReceiver.md)
* [PreInteraction](interfaces/PreInteractionNotificationReceiver.md)
* [libraries](libraries/README.md)
* [ArgumentsDecoder](libraries/ArgumentsDecoder.md)
* [Permitable](libraries/Permitable.md)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


## Derives
- [ImmutableOwner](helpers/ImmutableOwner.md)
- [ImmutableOwner](ImmutableOwner.md)

## Functions
### constructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


## Derives
- [ImmutableOwner](helpers/ImmutableOwner.md)
- [ImmutableOwner](ImmutableOwner.md)

## Functions
### constructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


## Derives
- [ImmutableOwner](helpers/ImmutableOwner.md)
- [ImmutableOwner](ImmutableOwner.md)

## Functions
### constructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const DeveloperList = [
{
button:{
title: 'View Articles',
href: './docs/educational-resources/introduction'
href: './docs/educational-resources/Introduction'
},
image: (
<div className={clsx(styles.developerCardImage, styles.educationalResourcesImage)}/>
Expand Down
8 changes: 2 additions & 6 deletions src/components/homepage-footer/HomepageFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@ const FooterLinks = {
title: '1inch DAO',
link: 'https://1inch.io/dao/'
},
{
title: '1INCH token',
link: 'https://1inch.io/token/'
},
{
title: 'Forum',
link: 'https://gov.1inch.io/'
Expand All @@ -58,7 +54,7 @@ const FooterLinks = {
},
{
title: 'API',
link: 'https://1inch.io/api/'
link: 'https://1inch.io/page-api/'
},
{
title: 'Press room',
Expand Down Expand Up @@ -147,7 +143,7 @@ export default function HomepageFooter() {
<div>
<p className={styles.footerSubscribeTitle}>Subscribe to 1inch newsletter</p>
<p className={styles.footerSubscribeText}>Get the latest news and updates</p>
<Link to='https://cdn.forms-content.sg-form.com/b14fb08e-939b-11eb-873a-46ac7bfee17b'
<Link to='https://embeds.beehiiv.com/c8131833-9a5a-4beb-826a-16b0236448b5'
className={styles.footerSubscribeButton}>
<span className={styles.footerSubscribeButtonText}>Subscribe</span>
<ChevronRightImg/>
Expand Down
Loading