This document contains the help content for the linera
command-line program.
Command Overview:
linera
↴linera transfer
↴linera open-chain
↴linera open-multi-owner-chain
↴linera change-ownership
↴linera change-application-permissions
↴linera close-chain
↴linera local-balance
↴linera query-balance
↴linera sync-balance
↴linera sync
↴linera process-inbox
↴linera query-validator
↴linera query-validators
↴linera set-validator
↴linera remove-validator
↴linera finalize-committee
↴linera resource-control-policy
↴linera create-genesis-config
↴linera watch
↴linera service
↴linera faucet
↴linera publish-bytecode
↴linera publish-data-blob
↴linera read-data-blob
↴linera create-application
↴linera publish-and-create
↴linera request-application
↴linera keygen
↴linera assign
↴linera retry-pending-block
↴linera wallet
↴linera wallet show
↴linera wallet set-default
↴linera wallet init
↴linera wallet forget-keys
↴linera wallet forget-chain
↴linera project
↴linera project new
↴linera project test
↴linera project publish-and-create
↴linera net
↴linera net up
↴linera net helper
↴
A Byzantine-fault tolerant sidechain with low-latency finality and high throughput
Usage: linera [OPTIONS] <COMMAND>
transfer
— Transfer fundsopen-chain
— Open (i.e. activate) a new chain deriving the UID from an existing oneopen-multi-owner-chain
— Open (i.e. activate) a new multi-owner chain deriving the UID from an existing onechange-ownership
— Change who owns the chain, and how the owners work together proposing blockschange-application-permissions
— Changes the application permissions configurationclose-chain
— Close an existing chainlocal-balance
— Read the current native-token balance of the given account directly from the local statequery-balance
— Simulate the execution of one block made of pending messages from the local inbox, then read the native-token balance of the account from the local statesync-balance
— (DEPRECATED) Synchronize the local state of the chain with a quorum validators, then query the local balancesync
— Synchronize the local state of the chain with a quorum validatorsprocess-inbox
— Process all pending incoming messages from the inbox of the given chain by creating as many blocks as needed to execute all (non-failing) messages. Failing messages will be marked as rejected and may bounce to their sender depending on their configurationquery-validator
— Show the version and genesis config hash of a new validator, and print a warning if it is incompatiblequery-validators
— Show the current set of validators for a chainset-validator
— Add or modify a validator (admin only)remove-validator
— Remove a validator (admin only)finalize-committee
— Deprecates all committees except the last oneresource-control-policy
— View or update the resource control policycreate-genesis-config
— Create genesis configuration for a Linera deployment. Create initial user chains and print information to be used for initialization of validator setup. This will also create an initial wallet for the owner of the initial "root" chainswatch
— Watch the network for notificationsservice
— Run a GraphQL service to explore and extend the chains of the walletfaucet
— Run a GraphQL service that exposes a faucet where users can claim tokens. This gives away the chain's tokens, and is mainly intended for testingpublish-bytecode
— Publish bytecodepublish-data-blob
— Publish a data blob of binary dataread-data-blob
— Verify that a data blob is readablecreate-application
— Create an applicationpublish-and-create
— Create an application, and publish the required bytecoderequest-application
— Request an application from another chain, so it can be used on this onekeygen
— Create an unassigned key-pairassign
— Link a key owned by the wallet to a chain that was just created for that keyretry-pending-block
— Retry a block we unsuccessfully tried to propose earlierwallet
— Show the contents of the walletproject
— Manage Linera projectsnet
— Manage a local Linera Network
-
--wallet <WALLET_STATE_PATH>
— Sets the file storing the private state of user chains (an empty one will be created if missing) -
--storage <STORAGE_CONFIG>
— Storage configuration for the blockchain history -
-w
,--with-wallet <WITH_WALLET>
— Given an integer value N, read the wallet state and the wallet storage config from the environment variables LINERA_WALLET_{N} and LINERA_STORAGE_{N} instead of LINERA_WALLET and LINERA_STORAGE -
--send-timeout-ms <SEND_TIMEOUT>
— Timeout for sending queries (milliseconds)Default value:
4000
-
--recv-timeout-ms <RECV_TIMEOUT>
— Timeout for receiving responses (milliseconds)Default value:
4000
-
--max-pending-message-bundles <MAX_PENDING_MESSAGE_BUNDLES>
— The maximum number of incoming message bundles to include in a block proposalDefault value:
10
-
--wasm-runtime <WASM_RUNTIME>
— The WebAssembly runtime to use -
--max-concurrent-queries <MAX_CONCURRENT_QUERIES>
— The maximal number of simultaneous queries to the database -
--max-stream-queries <MAX_STREAM_QUERIES>
— The maximal number of simultaneous stream queries to the databaseDefault value:
10
-
--cache-size <CACHE_SIZE>
— The maximal number of entries in the storage cacheDefault value:
1000
-
--retry-delay-ms <RETRY_DELAY>
— Delay increment for retrying to connect to a validatorDefault value:
1000
-
--max-retries <MAX_RETRIES>
— Number of times to retry connecting to a validatorDefault value:
10
-
--wait-for-outgoing-messages
— Whether to wait until a quorum of validators has confirmed that all sent cross-chain messages have been delivered -
--long-lived-services
— (EXPERIMENTAL) Whether application services can persist in some cases between queries -
--tokio-threads <TOKIO_THREADS>
— The number of Tokio worker threads to use -
--blanket-message-policy <BLANKET_MESSAGE_POLICY>
— The policy for handling incoming messagesDefault value:
accept
Possible values:
accept
: Automatically accept all incoming messages. Reject them only if execution failsreject
: Automatically reject tracked messages, ignore or skip untracked messages, but accept protected onesignore
: Don't include any messages in blocks, and don't make any decision whether to accept or reject
-
--restrict-chain-ids-to <RESTRICT_CHAIN_IDS_TO>
— A set of chains to restrict incoming messages from. By default, messages from all chains are accepted. To reject messages from all chains, specify an empty string
Transfer funds
Usage: linera transfer --from <SENDER> --to <RECIPIENT> <AMOUNT>
<AMOUNT>
— Amount to transfer
--from <SENDER>
— Sending chain ID (must be one of our chains)--to <RECIPIENT>
— Recipient account
Open (i.e. activate) a new chain deriving the UID from an existing one
Usage: linera open-chain [OPTIONS]
-
--from <CHAIN_ID>
— Chain ID (must be one of our chains) -
--to-public-key <PUBLIC_KEY>
— Public key of the new owner (otherwise create a key pair and remember it) -
--initial-balance <BALANCE>
— The initial balance of the new chain. This is subtracted from the parent chain's balanceDefault value:
0
Open (i.e. activate) a new multi-owner chain deriving the UID from an existing one
Usage: linera open-multi-owner-chain [OPTIONS]
-
--from <CHAIN_ID>
— Chain ID (must be one of our chains) -
--super-owner-public-keys <SUPER_OWNER_PUBLIC_KEYS>
— Public keys of the new super owners -
--owner-public-keys <OWNER_PUBLIC_KEYS>
— Public keys of the new regular owners -
--owner-weights <OWNER_WEIGHTS>
— Weights for the new owners.If they are specified there must be exactly one weight for each owner. If no weights are given, every owner will have weight 100.
-
--multi-leader-rounds <MULTI_LEADER_ROUNDS>
— The number of rounds in which every owner can propose blocks, i.e. the first round number in which only a single designated leader is allowed to propose blocks -
--fast-round-ms <FAST_ROUND_DURATION>
— The duration of the fast round, in milliseconds -
--base-timeout-ms <BASE_TIMEOUT>
— The duration of the first single-leader and all multi-leader roundsDefault value:
10000
-
--timeout-increment-ms <TIMEOUT_INCREMENT>
— The number of milliseconds by which the timeout increases after each single-leader roundDefault value:
1000
-
--fallback-duration-ms <FALLBACK_DURATION>
— The age of an incoming tracked or protected message after which the validators start transitioning the chain to fallback mode, in millisecondsDefault value:
86400000
-
--execute-operations <EXECUTE_OPERATIONS>
— If present, only operations from the specified applications are allowed, and no system operations. Otherwise all operations are allowed -
--mandatory-applications <MANDATORY_APPLICATIONS>
— At least one operation or incoming message from each of these applications must occur in every block -
--close-chain <CLOSE_CHAIN>
— These applications are allowed to close the current chain using the system API -
--initial-balance <BALANCE>
— The initial balance of the new chain. This is subtracted from the parent chain's balanceDefault value:
0
Change who owns the chain, and how the owners work together proposing blocks.
Specify the complete set of new owners, by public key. Existing owners that are not included will be removed.
Usage: linera change-ownership [OPTIONS]
-
--chain-id <CHAIN_ID>
— The ID of the chain whose owners will be changed -
--super-owner-public-keys <SUPER_OWNER_PUBLIC_KEYS>
— Public keys of the new super owners -
--owner-public-keys <OWNER_PUBLIC_KEYS>
— Public keys of the new regular owners -
--owner-weights <OWNER_WEIGHTS>
— Weights for the new owners.If they are specified there must be exactly one weight for each owner. If no weights are given, every owner will have weight 100.
-
--multi-leader-rounds <MULTI_LEADER_ROUNDS>
— The number of rounds in which every owner can propose blocks, i.e. the first round number in which only a single designated leader is allowed to propose blocks -
--fast-round-ms <FAST_ROUND_DURATION>
— The duration of the fast round, in milliseconds -
--base-timeout-ms <BASE_TIMEOUT>
— The duration of the first single-leader and all multi-leader roundsDefault value:
10000
-
--timeout-increment-ms <TIMEOUT_INCREMENT>
— The number of milliseconds by which the timeout increases after each single-leader roundDefault value:
1000
-
--fallback-duration-ms <FALLBACK_DURATION>
— The age of an incoming tracked or protected message after which the validators start transitioning the chain to fallback mode, in millisecondsDefault value:
86400000
Changes the application permissions configuration
Usage: linera change-application-permissions [OPTIONS]
--chain-id <CHAIN_ID>
— The ID of the chain to which the new permissions will be applied--execute-operations <EXECUTE_OPERATIONS>
— If present, only operations from the specified applications are allowed, and no system operations. Otherwise all operations are allowed--mandatory-applications <MANDATORY_APPLICATIONS>
— At least one operation or incoming message from each of these applications must occur in every block--close-chain <CLOSE_CHAIN>
— These applications are allowed to close the current chain using the system API
Close an existing chain.
A closed chain cannot execute operations or accept messages anymore. It can still reject incoming messages, so they bounce back to the sender.
Usage: linera close-chain --from <CHAIN_ID>
--from <CHAIN_ID>
— Chain ID (must be one of our chains)
Read the current native-token balance of the given account directly from the local state.
NOTE: The local balance does not reflect messages that are waiting to be picked in the local inbox, or that have not been synchronized from validators yet. Use linera sync
then either linera query-balance
or linera process-inbox && linera local-balance
for a consolidated balance.
Usage: linera local-balance [ACCOUNT]
<ACCOUNT>
— The account to read, written asCHAIN-ID:OWNER
or simplyCHAIN-ID
for the chain balance. By defaults, we read the chain balance of the default chain in the wallet
Simulate the execution of one block made of pending messages from the local inbox, then read the native-token balance of the account from the local state.
NOTE: The balance does not reflect messages that have not been synchronized from validators yet. Call linera sync
first to do so.
Usage: linera query-balance [ACCOUNT]
<ACCOUNT>
— The account to query, written asCHAIN-ID:OWNER
or simplyCHAIN-ID
for the chain balance. By defaults, we read the chain balance of the default chain in the wallet
(DEPRECATED) Synchronize the local state of the chain with a quorum validators, then query the local balance.
This command is deprecated. Use linera sync && linera query-balance
instead.
Usage: linera sync-balance [ACCOUNT]
<ACCOUNT>
— The account to query, written asCHAIN-ID:OWNER
or simplyCHAIN-ID
for the chain balance. By defaults, we read the chain balance of the default chain in the wallet
Synchronize the local state of the chain with a quorum validators
Usage: linera sync [CHAIN_ID]
<CHAIN_ID>
— The chain to synchronize with validators. If omitted, synchronizes the default chain of the wallet
Process all pending incoming messages from the inbox of the given chain by creating as many blocks as needed to execute all (non-failing) messages. Failing messages will be marked as rejected and may bounce to their sender depending on their configuration
Usage: linera process-inbox [CHAIN_ID]
<CHAIN_ID>
— The chain to process. If omitted, uses the default chain of the wallet
Show the version and genesis config hash of a new validator, and print a warning if it is incompatible
Usage: linera query-validator <ADDRESS>
<ADDRESS>
— The new validator's address
Show the current set of validators for a chain
Usage: linera query-validators [CHAIN_ID]
<CHAIN_ID>
— The chain to query. If omitted, query the default chain of the wallet
Add or modify a validator (admin only)
Usage: linera set-validator [OPTIONS] --name <NAME> --address <ADDRESS>
-
--name <NAME>
— The public key of the validator -
--address <ADDRESS>
— Network address -
--votes <VOTES>
— Voting powerDefault value:
1
-
--skip-online-check
— Skip the version and genesis config checks
Remove a validator (admin only)
Usage: linera remove-validator --name <NAME>
--name <NAME>
— The public key of the validator
Deprecates all committees except the last one
Usage: linera finalize-committee
View or update the resource control policy
Usage: linera resource-control-policy [OPTIONS]
--block <BLOCK>
— Set the base price for creating a block--fuel-unit <FUEL_UNIT>
— Set the price per unit of fuel--read-operation <READ_OPERATION>
— Set the price per read operation--write-operation <WRITE_OPERATION>
— Set the price per write operation--byte-read <BYTE_READ>
— Set the price per byte read--byte-written <BYTE_WRITTEN>
— Set the price per byte written--byte-stored <BYTE_STORED>
— Set the price per byte stored--operation <OPERATION>
— Set the base price of sending a operation from a block..--operation-byte <OPERATION_BYTE>
— Set the additional price for each byte in the argument of a user operation--message <MESSAGE>
— Set the base price of sending a message from a block..--message-byte <MESSAGE_BYTE>
— Set the additional price for each byte in the argument of a user message--maximum-fuel-per-block <MAXIMUM_FUEL_PER_BLOCK>
— Set the maximum amount of fuel per block--maximum-executed-block-size <MAXIMUM_EXECUTED_BLOCK_SIZE>
— Set the maximum size of an executed block, in bytes--maximum-blob-size <MAXIMUM_BLOB_SIZE>
— Set the maximum size of data blobs, compressed bytecode and other binary blobs, in bytes--maximum-bytecode-size <MAXIMUM_BYTECODE_SIZE>
— Set the maximum size of decompressed contract or service bytecode, in bytes--maximum-bytes-read-per-block <MAXIMUM_BYTES_READ_PER_BLOCK>
— Set the maximum read data per block--maximum-bytes-written-per-block <MAXIMUM_BYTES_WRITTEN_PER_BLOCK>
— Set the maximum write data per block
Create genesis configuration for a Linera deployment. Create initial user chains and print information to be used for initialization of validator setup. This will also create an initial wallet for the owner of the initial "root" chains
Usage: linera create-genesis-config [OPTIONS] --committee <COMMITTEE_CONFIG_PATH> --genesis <GENESIS_CONFIG_PATH> <NUM_OTHER_INITIAL_CHAINS>
<NUM_OTHER_INITIAL_CHAINS>
— Number of initial (aka "root") chains to create in addition to the admin chain
-
--committee <COMMITTEE_CONFIG_PATH>
— Sets the file describing the public configurations of all validators -
--genesis <GENESIS_CONFIG_PATH>
— The output config path to be consumed by the server -
--admin-root <ADMIN_ROOT>
— Index of the admin chain in the genesis configDefault value:
0
-
--initial-funding <INITIAL_FUNDING>
— Known initial balance of the chainDefault value:
0
-
--start-timestamp <START_TIMESTAMP>
— The start timestamp: no blocks can be created before this time -
--block-price <BLOCK_PRICE>
— Set the base price for creating a blockDefault value:
0
-
--fuel-unit-price <FUEL_UNIT_PRICE>
— Set the price per unit of fuelDefault value:
0
-
--read-operation-price <READ_OPERATION_PRICE>
— Set the price per read operationDefault value:
0
-
--write-operation-price <WRITE_OPERATION_PRICE>
— Set the price per write operationDefault value:
0
-
--byte-read-price <BYTE_READ_PRICE>
— Set the price per byte readDefault value:
0
-
--byte-written-price <BYTE_WRITTEN_PRICE>
— Set the price per byte writtenDefault value:
0
-
--byte-stored-price <BYTE_STORED_PRICE>
— Set the price per byte storedDefault value:
0
-
--operation-price <OPERATION_PRICE>
— Set the base price of sending a operation from a block..Default value:
0
-
--operation-byte-price <OPERATION_BYTE_PRICE>
— Set the additional price for each byte in the argument of a user operationDefault value:
0
-
--message-price <MESSAGE_PRICE>
— Set the base price of sending a message from a block..Default value:
0
-
--message-byte-price <MESSAGE_BYTE_PRICE>
— Set the additional price for each byte in the argument of a user messageDefault value:
0
-
--maximum-fuel-per-block <MAXIMUM_FUEL_PER_BLOCK>
— Set the maximum amount of fuel per block -
--maximum-executed-block-size <MAXIMUM_EXECUTED_BLOCK_SIZE>
— Set the maximum size of an executed block -
--maximum-bytecode-size <MAXIMUM_BYTECODE_SIZE>
— Set the maximum size of decompressed contract or service bytecode, in bytes -
--maximum-blob-size <MAXIMUM_BLOB_SIZE>
— Set the maximum size of data blobs, compressed bytecode and other binary blobs, in bytes -
--maximum-bytes-read-per-block <MAXIMUM_BYTES_READ_PER_BLOCK>
— Set the maximum read data per block -
--maximum-bytes-written-per-block <MAXIMUM_BYTES_WRITTEN_PER_BLOCK>
— Set the maximum write data per block -
--testing-prng-seed <TESTING_PRNG_SEED>
— Force this wallet to generate keys using a PRNG and a given seed. USE FOR TESTING ONLY -
--network-name <NETWORK_NAME>
— A unique name to identify this network
Watch the network for notifications
Usage: linera watch [OPTIONS] [CHAIN_ID]
<CHAIN_ID>
— The chain ID to watch
--raw
— Show all notifications from all validators
Run a GraphQL service to explore and extend the chains of the wallet
Usage: linera service [OPTIONS]
-
--listener-skip-process-inbox
— Do not create blocks automatically to receive incoming messages. Instead, wait for an explicit mutationprocessInbox
-
--listener-delay-before-ms <DELAY_BEFORE_MS>
— Wait before processing any notification (useful for testing)Default value:
0
-
--listener-delay-after-ms <DELAY_AFTER_MS>
— Wait after processing any notification (useful for rate limiting)Default value:
0
-
--port <PORT>
— The port on which to run the serverDefault value:
8080
Run a GraphQL service that exposes a faucet where users can claim tokens. This gives away the chain's tokens, and is mainly intended for testing
Usage: linera faucet [OPTIONS] --amount <AMOUNT> [CHAIN_ID]
<CHAIN_ID>
— The chain that gives away its tokens
-
--port <PORT>
— The port on which to run the serverDefault value:
8080
-
--amount <AMOUNT>
— The number of tokens to send to each new chain -
--limit-rate-until <LIMIT_RATE_UNTIL>
— The end timestamp: The faucet will rate-limit the token supply so it runs out of money no earlier than this -
--listener-skip-process-inbox
— Do not create blocks automatically to receive incoming messages. Instead, wait for an explicit mutationprocessInbox
-
--listener-delay-before-ms <DELAY_BEFORE_MS>
— Wait before processing any notification (useful for testing)Default value:
0
-
--listener-delay-after-ms <DELAY_AFTER_MS>
— Wait after processing any notification (useful for rate limiting)Default value:
0
Publish bytecode
Usage: linera publish-bytecode <CONTRACT> <SERVICE> [PUBLISHER]
<CONTRACT>
— Path to the Wasm file for the application "contract" bytecode<SERVICE>
— Path to the Wasm file for the application "service" bytecode<PUBLISHER>
— An optional chain ID to publish the bytecode. The default chain of the wallet is used otherwise
Publish a data blob of binary data
Usage: linera publish-data-blob <BLOB_PATH> [PUBLISHER]
<BLOB_PATH>
— Path to data blob file to be published<PUBLISHER>
— An optional chain ID to publish the blob. The default chain of the wallet is used otherwise
Verify that a data blob is readable
Usage: linera read-data-blob <HASH> [READER]
<HASH>
— The hash of the content<READER>
— An optional chain ID to verify the blob. The default chain of the wallet is used otherwise
Create an application
Usage: linera create-application [OPTIONS] <BYTECODE_ID> [CREATOR]
<BYTECODE_ID>
— The bytecode ID of the application to create<CREATOR>
— An optional chain ID to host the application. The default chain of the wallet is used otherwise
--json-parameters <JSON_PARAMETERS>
— The shared parameters as JSON string--json-parameters-path <JSON_PARAMETERS_PATH>
— Path to a JSON file containing the shared parameters--json-argument <JSON_ARGUMENT>
— The instantiation argument as a JSON string--json-argument-path <JSON_ARGUMENT_PATH>
— Path to a JSON file containing the instantiation argument--required-application-ids <REQUIRED_APPLICATION_IDS>
— The list of required dependencies of application, if any
Create an application, and publish the required bytecode
Usage: linera publish-and-create [OPTIONS] <CONTRACT> <SERVICE> [PUBLISHER]
<CONTRACT>
— Path to the Wasm file for the application "contract" bytecode<SERVICE>
— Path to the Wasm file for the application "service" bytecode<PUBLISHER>
— An optional chain ID to publish the bytecode. The default chain of the wallet is used otherwise
--json-parameters <JSON_PARAMETERS>
— The shared parameters as JSON string--json-parameters-path <JSON_PARAMETERS_PATH>
— Path to a JSON file containing the shared parameters--json-argument <JSON_ARGUMENT>
— The instantiation argument as a JSON string--json-argument-path <JSON_ARGUMENT_PATH>
— Path to a JSON file containing the instantiation argument--required-application-ids <REQUIRED_APPLICATION_IDS>
— The list of required dependencies of application, if any
Request an application from another chain, so it can be used on this one
Usage: linera request-application [OPTIONS] <APPLICATION_ID>
<APPLICATION_ID>
— The ID of the application to request
--target-chain-id <TARGET_CHAIN_ID>
— The target chain on which the application is already registered. If not specified, the chain on which the application was created is used--requester-chain-id <REQUESTER_CHAIN_ID>
— The owned chain on which the application is missing
Create an unassigned key-pair
Usage: linera keygen
Link a key owned by the wallet to a chain that was just created for that key
Usage: linera assign --key <KEY> --message-id <MESSAGE_ID>
--key <KEY>
— The public key to assign--message-id <MESSAGE_ID>
— The ID of the message that created the chain. (This uniquely describes the chain and where it was created.)
Retry a block we unsuccessfully tried to propose earlier.
As long as a block is pending most other commands will fail, since it is unsafe to propose multiple blocks at the same height.
Usage: linera retry-pending-block [CHAIN_ID]
<CHAIN_ID>
— The chain with the pending block. If not specified, the wallet's default chain is used
Show the contents of the wallet
Usage: linera wallet <COMMAND>
show
— Show the contents of the walletset-default
— Change the wallet default chaininit
— Initialize a wallet from the genesis configurationforget-keys
— Forgets the specified chain's keysforget-chain
— Forgets the specified chain, including the associated key pair
Show the contents of the wallet
Usage: linera wallet show [CHAIN_ID]
<CHAIN_ID>
Change the wallet default chain
Usage: linera wallet set-default <CHAIN_ID>
<CHAIN_ID>
Initialize a wallet from the genesis configuration
Usage: linera wallet init [OPTIONS]
--genesis <GENESIS_CONFIG_PATH>
— The path to the genesis configuration for a Linera deployment. Either this or--faucet
must be specified--faucet <FAUCET>
— The address of a faucet--with-new-chain
— Request a new chain from the faucet, credited with tokens. This requires--faucet
--with-other-chains <WITH_OTHER_CHAINS>
— Other chains to follow--testing-prng-seed <TESTING_PRNG_SEED>
— Force this wallet to generate keys using a PRNG and a given seed. USE FOR TESTING ONLY
Forgets the specified chain's keys
Usage: linera wallet forget-keys <CHAIN_ID>
<CHAIN_ID>
Forgets the specified chain, including the associated key pair
Usage: linera wallet forget-chain <CHAIN_ID>
<CHAIN_ID>
Manage Linera projects
Usage: linera project <COMMAND>
new
— Create a new Linera projecttest
— Test a Linera projectpublish-and-create
— Build and publish a Linera project
Create a new Linera project
Usage: linera project new [OPTIONS] <NAME>
<NAME>
— The project name. A directory of the same name will be created in the current directory
--linera-root <LINERA_ROOT>
— Use the given clone of the Linera repository instead of remote crates
Test a Linera project.
Equivalent to running cargo test
with the appropriate test runner.
Usage: linera project test [PATH]
<PATH>
Build and publish a Linera project
Usage: linera project publish-and-create [OPTIONS] [PATH] [NAME] [PUBLISHER]
-
<PATH>
— The path of the root of the Linera project. Defaults to current working directory if unspecified -
<NAME>
— Specify the name of the Linera project. This is used to locate the generated bytecode. The generated bytecode should be of the form<name>_{contract,service}.wasm
.Defaults to the package name in Cargo.toml, with dashes replaced by underscores.
-
<PUBLISHER>
— An optional chain ID to publish the bytecode. The default chain of the wallet is used otherwise
--json-parameters <JSON_PARAMETERS>
— The shared parameters as JSON string--json-parameters-path <JSON_PARAMETERS_PATH>
— Path to a JSON file containing the shared parameters--json-argument <JSON_ARGUMENT>
— The instantiation argument as a JSON string--json-argument-path <JSON_ARGUMENT_PATH>
— Path to a JSON file containing the instantiation argument--required-application-ids <REQUIRED_APPLICATION_IDS>
— The list of required dependencies of application, if any
Manage a local Linera Network
Usage: linera net <COMMAND>
up
— Start a Local Linera Networkhelper
— Print a bash helper script to makelinera net up
easier to use. The script is meant to be installed in~/.bash_profile
or sourced when needed
Start a Local Linera Network
Usage: linera net up [OPTIONS]
-
--extra-wallets <EXTRA_WALLETS>
— The number of extra wallets and user chains to initialise. Default is 0 -
--other-initial-chains <OTHER_INITIAL_CHAINS>
— The number of initial "root" chains created in the genesis config on top of the default "admin" chain. All initial chains belong to the first "admin" walletDefault value:
2
-
--initial-amount <INITIAL_AMOUNT>
— The initial amount of native tokens credited in the initial "root" chains, including the default "admin" chainDefault value:
1000000
-
--validators <VALIDATORS>
— The number of validators in the local test network. Default is 1Default value:
1
-
--shards <SHARDS>
— The number of shards per validator in the local test network. Default is 1Default value:
1
-
--policy-config <POLICY_CONFIG>
— Configure the resource control policy (notably fees) according to pre-defined settingsDefault value:
default
Possible values:
default
,only-fuel
,fuel-and-block
,all-categories
,devnet
-
--testing-prng-seed <TESTING_PRNG_SEED>
— Force this wallet to generate keys using a PRNG and a given seed. USE FOR TESTING ONLY -
--path <PATH>
— Run with a specific path where the wallet and validator input files are. If none, then a temporary directory is created -
--storage <STORAGE>
— Run with a specific storage. If none, then a linera-storage-service is started on a random free port -
--external-protocol <EXTERNAL_PROTOCOL>
— External protocol used, either grpc or grpcsDefault value:
grpc
Print a bash helper script to make linera net up
easier to use. The script is meant to be installed in ~/.bash_profile
or sourced when needed
Usage: linera net helper
This document was generated automatically by
clap-markdown
.