Frequency collator node running in instant seal mode.
10K+
This image has been deprecated and will be removed in a future Frequency release. The new image, frequencychain/standalone-node, replaces it. Current usage patterns for this image are fully supported by the new image, as well as additional enhancements.
Runs just one collator node that will not connect to any other nodes. Defaults to running in instant sealing mode where a block will be triggered when a transaction enters the validated transaction pool. A "collator node" is a Frequency parachain node that is actively collating (aka forming blocks to submit to the relay chain, although in this case without a relay chain).
docker run --rm -p 9944:9944 -p 30333:30333 frequencychain/instant-seal-node:<version.tag>
If running in manual sealing mode or to form empty blocks in instant sealing mode, the engine_createBlock RPC can be used:
curl http://localhost:9944 -H "Content-Type:application/json;charset=utf-8" -d '{ \
"jsonrpc":"2.0", \
"id":1, \
"method":"engine_createBlock", \
"params": [true, true] \
}'
| Argument | Description |
|---|---|
--sealing=instant | Manual sealing + automatically form a block each time a transaction enters the validated transaction pool |
Note: Docker --rm removes the volume when stopped.
docker run --rm -p 9944:9944 -p 30333:30333 frequencychain/instant-seal-node:<version.tag>
| Argument | Description |
|---|---|
--sealing=manual | Only form a block when engine_createBlock RPC is called |
--help | See all the options possible |
docker run --rm -p 9944:9944 -p 30333:30333 frequencychain/instant-seal-node:<version.tag> -- --manual-seal
| Node | Ports | Explorer URL |
|---|---|---|
| Frequency Local-Only Node | ws and rpc :9944, p2p:3033 | 127.0.0.1:9944 |
Content type
Image
Digest
sha256:e8f817260…
Size
91.2 MB
Last updated
over 2 years ago
docker pull frequencychain/instant-seal-node