argotorg / argotorg/solidity

second parameter in solidity contact methode crashes sepolia node

Open
#15,715 1 comment 0 reactions 0 assignees View on GitHub
bug :bug:
Dominant language
C++
Stars
25.7k
Forks
6.2k
Avg merge
2d 19h
Merged PRs (30d)
29

Description

solidity contract on my ethereum sepolia node deployment

## Description
I would like to install a **simple** solidity contract on my ethereum sepolia node.
It works, but if each method has only one parameter.
With two parameters e.g. **uint bla** in the method I get 500 errors from the server.

## Environment

- "ethers": "6.13.5",
- "hardhat": "2.22.17",
- solidity 0.8.28;

## Steps to Reproduce

```solidity
pragma solidity 0.8.28;

contract SimpleStorage {
uint storedData;

function set(uint x, uint bla) public {
storedData = x;
}

function get() public view returns (uint) {
return storedData;
}
}

Contributor guide

Open the contributing guide

Research direction

Reproduce the SimpleStorage deployment on an Ethereum Sepolia node using Solidity 0.8.28, ethers 6.13.5, and Hardhat 2.22.17. Compare a one-parameter method with set(uint x, uint bla), capture the 500 response, and determine whether the failure is in the Solidity contract, transaction handling, or node/server integration.

Written by the indexing model from the issue text.

Assessment

Tech stack
solidity
Domain
blockchain
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.