Marius Mézerette

Results 11 comments of Marius Mézerette

In cli you need to use double quote: `pip install "fastapi-cache2[redis]"`

Hello, trying to fix that as well, but I'm a little lost in what we need to change in the code to support the decoding for this tuple[] solidity type....

@sc0Vu Hi, what's your plan about supporting ABIEncoderV2 tuple[] type ?

It seems your contract is deployed to the BSC, so you need a provider on that blockchain. localhost:8545 is a local address in cas you use a local node (hardhat,...

Please see my response here: https://github.com/web3p/web3.php/issues/251#issuecomment-1063884215

Here is a full example how to call a function on a smart contract which require a signer (to change the status of the blockchain). A simple call like balanceOf...

The chainId of the blockchain you are using... ``` // See: https://chainlist.org public const chainIds = [ 'mainnet' => 1, 'ropsten' => 3, 'rinkeby' => 4, 'goerli' => 5, 'kovan'...

Indeed, I didn't remove this optional part. In fact this method use an empiric way to define the maximum gas limit to use: ```php /** * Compute the maximum gasLimit...

It's the name of the smart contract method you want to call. For example purpose I choose 'transferMyGreatToken', but of course you need to change it. (For a specific smart...