Questions tagged [eos]

EOS tag refers to the EOS.IO blockchain technology - see https://eos.io/ and also https://eosio.stackexchange.com/

The EOS.IO Software is open source blockchain infrastructure software.

It's found on GitHub here: https://github.com/EOSIO/eos

There is also a stackexchange site here: https://eosio.stackexchange.com/

Questions tagged with 'eos' or 'eos.io' will typically refer to the blockchain software, and to questions about configuring it, forking it, installing it, running it, or writing smart contracts on it.

Of the two, 'eos.io' would be better for two reasons:

  1. 'eos' already has other meanings, and searching on 'eos' brings up 4,700 false positives;
  2. 'eos.io' is the actual official name of the software as of December 2017

Therefore I recommend this tag be renamed 'eos.io' and an 'eos' tag be aliased to it.

85 questions
51
votes
3 answers

Try using 'as prefix' for one of the imported directives,or hiding the name from all but one of the import

I have imported a Eosdart package which have action.dart file and even flutter have action.dart file so there is conflict which one should pick. please help in removing the conflict i have mentioned the error detail as a comment in code where i…
guruprakash gupta
  • 877
  • 4
  • 9
  • 15
5
votes
3 answers

Cant stop Docker/Vmmem from running

not so long ago I started to practice with writing EOS smart contracts on my windows 10 computer. For this I needed to install among others, a Linux subsystem for Windows and Docker. In the last couple of days I noticed some pretty significant…
Jord van Eldik
  • 351
  • 2
  • 10
5
votes
0 answers

Troubleshooting connecting with the eosjs library to eos testnet on aws

we’re using the eosjs library, and have setup to connect to the eos mainnet and it's worked. The issue is when connecting to my aws instance running a testnet, i am getting 'failed to fetch' error: i've tried using these from my instance as…
rowdyruckus
  • 892
  • 4
  • 12
  • 23
4
votes
1 answer

ReactJS events - this.props.onSubmit(this.state....)

The following code snippet is from a simple Todo list which stores information on a local EOS blockchain and has a frontend web interface built on ReactJS. The question is related to ReactJS, specifically the event handler code snippet saveTodo(e)…
kamiss
  • 45
  • 1
  • 5
3
votes
2 answers

Missing C++ std library methods and other errors while compiling EOS on Ubuntu 14.04?

I'm trying to compile the EOS blockchain/smart contract project on GitHub on Ubuntu 14.04: https://github.com/EOSIO/eos After getting Clang 4.0 to install, installing build_essentials, and upgrading CMake to 3.5, I was able to run the build process…
Robert Oschler
  • 14,153
  • 18
  • 94
  • 227
2
votes
2 answers

EOS transaction using RPC

I am trying to build a EOS transaction manually by querying the EOS(Jungle testnet endpoint) using CURL. I can get some information about the accounts using CURL. Can anyone please tell me the steps to do a simple transaction from Account A to…
Priya
  • 51
  • 1
2
votes
1 answer

How to solve 'missing setcode.vmtype (type=uint8)' error when deploying EOS Smart Contract using eosjs?

I'm trying to deploy an EOS Smart Contract using eosjs. I referred the code from https://eosio.github.io/eosjs/latest/how-to-guides/how-to-deploy-a-smart-contract const wasmFilePath = './hello.wasm' const abiFilePath = './hello.abi' const fs =…
coder
  • 23
  • 3
2
votes
1 answer

How to deploy a smartcontract in EOS on testnet using SET after creating abi and wsm files?

aditib@WJLP-1098:~/contracts$ cleos -u https://jungle.eosio.cr:443 set contract adtester1234 hello/ -p adtester1234@active Failed to get existing code hash, continue without duplicate check... Reading WASM from…
AditiB
  • 332
  • 2
  • 10
2
votes
1 answer

EOSJS & Scatter - Cannot read property 'Symbol(Symbol.iterator)' of undefined

I'm getting an error whenever I try to transfer EOS using Scatter. The issue appears to be in eosjs. Scatter opens up and I successfully sign, but then the transaction fails with the following error. I think it's happening as eosjs is trying to…
dliebeskind
  • 101
  • 2
  • 12
2
votes
0 answers

(eosjs) How to fetch a row with string type

In A.cpp, there is starinfo struct and memo property of string type. struct starinfo{ uint64_t num; account_name account; asset price; string memo; } I published contract, and wrote some value using push action.…
Lawyer Kenny
  • 363
  • 4
  • 16
2
votes
2 answers

EOS CDT: where are the *.h and the *.cpp files stored in the filesystem, I need reference to them to compile

I'm trying to use the EOS CDT (contract development toolkit). I've downloaded and installed the repository from github, and used to following commands, as indicated from the eos.io development…
Carlo Luther
  • 2,402
  • 7
  • 46
  • 75
2
votes
1 answer

EOS-Mainnet won't work. Can't run nodeos

nodeos won't work. Getting: 925748ms thread-0 chain_plugin.cpp:202 plugin_initialize ] initializing chain plugin Failed to initialize
pinkhoodie
  • 21
  • 1
  • 3
2
votes
1 answer

Will the voter get money if its voted node becomes the proposer

In EOS, will the voter get money if its voted node becomes the proposer? Also, how is the proposer itself rewarded?
FunkyBaby
  • 535
  • 3
  • 12
1
vote
0 answers

Unreal Engine 5 - Can’t Join another player’s Session through EOS

I'm trying to build a Peer-2-Peer multiplayer game using EOS (Epic Online Services) Online Subsystem in Unreal Engine 5.1.1. The Setup: I configured my organization (product, application, client, client policy) in the Epic Developer Portal. Then I…
Elias Marrero
  • 187
  • 2
  • 15
1
vote
0 answers

Alternative to std::istream in c++

I have the next code but I'm using it in an eosio smart contract so get this error: use of overloaded operator '>>' is ambiguous (with operand types 'std::istream' I think that the problem is because I don't use the header #include
Eosio
  • 39
  • 3
1
2 3 4 5 6