2022-08-13 20:17:20 +02:00
|
|
|
# Set up Graffiti
|
2020-10-26 18:12:37 +01:00
|
|
|
|
2023-04-11 17:42:35 +02:00
|
|
|
You can use your node's graffiti flag to include a short text in the blocks that your node creates.
|
|
|
|
You will be able to see it using the block explorer.
|
2020-11-16 11:22:29 +01:00
|
|
|
|
2023-04-28 00:30:58 +03:00
|
|
|
The graffiti can be either a string or, if you want to specify raw bytes, you can use 0x-prefixed hex value.
|
|
|
|
|
2022-11-13 07:59:55 +01:00
|
|
|
## Command line
|
|
|
|
|
2022-07-22 21:47:24 +02:00
|
|
|
=== "Mainnet"
|
2022-07-24 22:13:47 +02:00
|
|
|
```sh
|
|
|
|
./run-mainnet-beacon-node.sh --graffiti="<YOUR_WORDS>"
|
|
|
|
```
|
2022-07-22 21:47:24 +02:00
|
|
|
|
|
|
|
=== "Prater"
|
2022-07-24 22:13:47 +02:00
|
|
|
```sh
|
|
|
|
./run-prater-beacon-node.sh --graffiti="<YOUR_WORDS>"
|
|
|
|
```
|
2020-10-26 18:12:37 +01:00
|
|
|
|