From 8a61024dcd0989faf45dd92235b7b9533955bbec Mon Sep 17 00:00:00 2001 From: CharlieC3 <2747302+CharlieC3@users.noreply.github.com> Date: Wed, 12 May 2021 12:02:58 -0400 Subject: [PATCH] docs: add additional stacks-node properties references --- .../references/stacks-node-configuration.md | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/pages/references/stacks-node-configuration.md b/src/pages/references/stacks-node-configuration.md index ed4e0df2..d460a0a0 100644 --- a/src/pages/references/stacks-node-configuration.md +++ b/src/pages/references/stacks-node-configuration.md @@ -340,6 +340,36 @@ Example: walk_interval = 30 ``` +#### read_only_call_limit_read_length + +Total amount of data in bytes allowed to be retrieved from a read-only smart-contract call. + +Example: + +```toml +read_only_call_limit_read_length = 100000 +``` + +#### read_only_call_limit_read_count + +Total amount of data pieces allowed to be retrieved from a read-only smart-contract call. + +Example: + +```toml +read_only_call_limit_read_count = 30 +``` + +#### read_only_call_limit_runtime + +Total execution cost limit for executing read-only smart-contracts. + +Example: + +```toml +read_only_call_limit_runtime = 1000000000 +``` + ### Section: burnchain This section contains configuration options pertaining to the blockchain the stacks-node binds to on the backend for proof-of-transfer (BTC).