EOS Deployment - Discussion

now when I paste your code I get this:
isam@isam-SATELLITE-C850-1MC:~/contracts/HelloWorld$ cleos push action bob hello ‘[“carol”]’ -p carol
Error 3010005: Invalid action
Ensure that your action JSON follows the contract’s abi!
Error Details:
Fail to parse action JSON data=’‘[“carol”]’’
Unexpected char ‘-30’ in “”

1 Like

Looks like you still have the wrong quotes around carol. You are writing “carol”, it should be “carol”. The quotes are different. Try that and let me know.

We never made an account called user

Hi… I am working on EOSIO project since few months. I have built a supply chain application using EOS blockchain. I have currently deployed this in my office machine and I can access the app in office intranet. Problem: If I access from any other device connected from intranet and i do post operation i get the following error from EOS:
(Note: GET operation works fine and also post operation works fine from the deployed machine.)

Error in-=>: Error: deadline exceeded 30229us
at new RpcError (eosjs-rpcerror.ts:13:1)
at JsonRpc. (eosjs-jsonrpc.ts:60:1)
at step (eosjs-jsonrpc.ts:4:1)
at Object.next (eosjs-jsonrpc.ts:4:1)
at fulfilled (eosjs-jsonrpc.ts:4:1)

The EOSJS version i am using is as follows:

“eosjs”: “^20.0.3”,

and the EOS docker instance details is as follows:


RUN apt-get update && apt-get install -y wget sudo curl

RUN wget https://github.com/EOSIO/eosio.cdt/releases/download/v1.6.2/eosio.cdt_1.6.2-1-ubuntu-18.04_amd64.deb

RUN apt-get update && sudo apt install -y ./eosio.cdt_1.6.2-1-ubuntu-18.04_amd64.deb

RUN wget https://github.com/EOSIO/eos/releases/download/v2.0.5/eosio_2.0.5-1-ubuntu-18.04_amd64.deb

RUN apt-get update && sudo apt install -y ./eosio_2.0.5-1-ubuntu-18.04_amd64.deb

Can anyone advise me what the problem would be. I am unable to figure it out.
Thanks in advance :slight_smile: