You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,6 @@ Unless you need to set a non-default value, it is recommended to only populate o
34
34
|`CLIENT_TRANSPORT_SECURITY`| "false" | Flag to enable or disable TLS for both networks. |
35
35
|`CONSENSUS_MAX_EXECUTION_TIME`| "15000" | Maximum time in ms the SDK will wait when submitting a transaction/query before throwing a TIMEOUT error. |
36
36
|`CONTRACT_CALL_GAS_LIMIT`| "50_000_000" | Maximum gas limit applied to eth_call endpoint networks, the Relay will accept up to 50M but keep it capped at 15M for the actual call. |
37
-
|`CONTRACT_CODE_SIZE_LIMIT`| 24576 | Maximum contract code size in bytes (24KB by default) allowed for contract deployment transactions. This limit is enforced during transaction validation to prevent excessive gas consumption from oversized contracts. |
38
37
|`CONTRACT_QUERY_TIMEOUT_RETRIES`| "3" | Maximum retries for failed contract call query with timeout exceeded error |
39
38
|`DEBUG_API_ENABLED`| "false" | Enables all debug related methods: `debug_traceTransaction`|
40
39
|`DEFAULT_RATE_LIMIT`| "200" | default fallback rate limit, if no other is configured. |
it('@release should execute "eth_sendRawTransaction" and deploy a contract with code size within the CONTRACT_CODE_SIZE_LIMIT - 24kb limit',asyncfunction(){
156
-
constgasPrice=awaitrelay.gasPrice(requestId);
157
-
158
-
// create a regular deployment transaction with contract code size within the CONTRACT_CODE_SIZE_LIMIT - 24kb limit
it('@release should pass precheck and execute "eth_sendRawTransaction" for a regular transaction i.e. non contract deployment transaction with data exceeding the CONTRACT_CODE_SIZE_LIMIT - 24kb limit',asyncfunction(){
204
-
constgasPrice=awaitrelay.gasPrice(requestId);
205
-
// Create a transaction with large data but sent to an existing address (not contract creation)
0 commit comments