Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/wiki/pectra-faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@

The consolidation will fail as the validators must be active on the beacon chain at the time of consolidation execution.

#### **Q:** Whats the ABI of the consolidation system contract?

Check failure on line 150 in docs/wiki/pectra-faq.md

View workflow job for this annotation

GitHub Actions / lint

Headings should be surrounded by blank lines

docs/wiki/pectra-faq.md:150 MD022/blanks-around-headings Headings should be surrounded by blank lines [Expected: 1; Actual: 0; Below] [Context: "#### **Q:** Whats the ABI of the consolidation system contract?"] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md022.md
The EIP-7251 consolidations contract is deployed here `0x0000BBdDc7CE488642fb579F8B00f3a590007251`, source here: https://github.com/ethereum/sys-asm/blob/main/src/consolidations/main.eas.

Check failure on line 151 in docs/wiki/pectra-faq.md

View workflow job for this annotation

GitHub Actions / lint

Bare URL used

docs/wiki/pectra-faq.md:151:114 MD034/no-bare-urls Bare URL used [Context: "https://github.com/ethereum/sy..."] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md034.md

Check failure on line 151 in docs/wiki/pectra-faq.md

View workflow job for this annotation

GitHub Actions / lint

Trailing spaces

docs/wiki/pectra-faq.md:151:188 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md009.md
The consolidations are put in a queue and dequeued at a rate of 2 per block.
The contract is not written in solidity, nor do they have a typical solidity ABI in order to not enshrine the API.

Expand Down Expand Up @@ -195,7 +195,7 @@

#### **Q:** Whats the ABI of the withdrawal system contract?

The EIP-7002 contract is deployed here `0x00000961Ef480Eb55e80D19ad83579A64c00700` source here: https://github.com/ethereum/sys-asm/blob/main/src/withdrawals/main.
The EIP-7002 contract is deployed here `0x00000961Ef480Eb55e80D19ad83579A64c00700` source here: https://github.com/ethereum/sys-asm/blob/main/src/withdrawals/main.eas.

Check failure on line 198 in docs/wiki/pectra-faq.md

View workflow job for this annotation

GitHub Actions / lint

Bare URL used

docs/wiki/pectra-faq.md:198:97 MD034/no-bare-urls Bare URL used [Context: "https://github.com/ethereum/sy..."] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md034.md

Check failure on line 198 in docs/wiki/pectra-faq.md

View workflow job for this annotation

GitHub Actions / lint

Trailing spaces

docs/wiki/pectra-faq.md:198:168 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md009.md
The withdrawals are put in a queue and at maximum 16 are dequeued per block.
The contract is not written in solidity, nor do they have a typical solidity ABI in order to not enshrine the API.
The functionality of the withdrawal contract in pseudo code:
Expand Down
Loading