Skip to content

Commit

Permalink
Merge branch 'main' into 1394-doc-eth_getBlockReceipts-API-method
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Sanko <[email protected]>
  • Loading branch information
mjsmike62 authored Oct 25, 2023
2 parents 05f913b + 5ecde3a commit 22beb16
Show file tree
Hide file tree
Showing 4 changed files with 260 additions and 61 deletions.
2 changes: 1 addition & 1 deletion docs/private-networks/tutorials/contracts/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const rawTxOptions = {
from: account.address,
to: null, //public tx
value: "0x00",
data: "0x" + contractBin + contractInit, // contract binary appended with initialization value
data: "0x" + contractBin + contractConstructorInit, // contract binary appended with initialization value
gasPrice: "0x0", //ETH per unit of gas
gasLimit: "0x24A22", //max number of gas units the tx is allowed to use
};
Expand Down
32 changes: 32 additions & 0 deletions docs/public-networks/reference/cli/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -1167,6 +1167,38 @@ The key-value storage to use. Use this option only if using a storage system pro

For development use only, the `memory` option provides ephemeral storage for sync testing and debugging.

### `kzg-trusted-setup`

<!--tabs-->

# Syntax

```bash
--kzg-trusted-setup=<PATH>
```

# Example

```bash
--kzg-trusted-setup=/etc/besu/kzg-trusted-setup.txt
```

# Environment variable

```bash
BESU_KZG_TRUSTED_SETUP=/etc/besu/kzg-trusted-setup.txt
```

# Configuration file

```bash
kzg-trusted-setup=/etc/besu/kzg-trusted-setup.txt
```

<!--/tabs-->

The path to the [C-KZG-4844](https://github.com/ethereum/c-kzg-4844) trusted setup file. Use this option to pass a custom setup file for custom networks or to override the default setup file for named networks.

### `logging`

<!--tabs-->
Expand Down
156 changes: 109 additions & 47 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 22beb16

Please sign in to comment.