-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
47 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
title: Data Indexers | ||
sidebar_position: 1 | ||
sidebar_position: 2 | ||
--- | ||
|
||
## Overview | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: SDKs and Libraries | ||
sidebar_position: 1 | ||
--- | ||
|
||
## Overview | ||
|
||
Welcome to the SDKs page! Find useful information about SDKs and Libraries (e.g. | ||
Foundry, Viem, Hardhat), such as recommended configuration or known issues. | ||
|
||
### Hardhat | ||
|
||
> [Hardhat](https://hardhat.org/) is a development environment for Ethereum | ||
> software. It consists of different components for editing, compiling, | ||
> debugging and deploying your smart contracts and dApps, all of which work | ||
> together to create a complete development environment. | ||
#### Hardhat Ignition | ||
|
||
> Hardhat Ignition is a declarative system for deploying smart contracts on | ||
> Ethereum. | ||
We recommend users to pay attention to the | ||
[configuration of Ignition on Kakarot Sepolia](https://hardhat.org/ignition/docs/config#requiredconfirmations). | ||
|
||
There are some known issues with the default Ignition configuration. For | ||
instance, no. of block confirmations required by ignition to prevent re-orgs | ||
defaults to 5. We recommend users to set this to 1 in Kakarot Sepolia. Another | ||
example is that Kakarot does not support fee bumping since it has no fee market | ||
(FIFO system). | ||
|
||
```js | ||
// hardhat.config.js | ||
module.exports = { | ||
ignition: { | ||
blockPollingInterval: 3_000, | ||
timeBeforeBumpingFees: 3 * 60 * 1_000, | ||
maxFeeBumps: 0, | ||
requiredConfirmations: 1, | ||
}, | ||
}; | ||
``` |