Greatest hits from previous weeks:
|
I tried to look for inside the EOS repository and contracts examples but I could not find anything like this. I want to know how can I read another contract table. So, as an example: my contract …
|
Should I analyze all the blocks or are there some methods in the eosjs library?
|
I’m trying to simply connect to my local EOS block from within a React Component with the following code; import EOSJS from ‘eosjs’; const config = { keyProvider: [‘INSERT_PRIVATE_KEY_HERE’], …
|
Looks like there a new foundation that has started a new blockchain using EOS codebase. Telos: telosfoundation.io/ What are difference between Block.one / EOS chain and Telos, in the view …
|
When I perform a token transfer from the cleos command line, it works with no problems: $ cleos push action eosio.token transfer ‘[“rider2″,”vehicle1″,”1000.0000 TOK”,”initial”]’ -p rider2 executed …
|
I have contractB trigger an inline action: /// @abi action void send() { action( permission_level{ _self, N(active) }, N(contractA), N(get), std::make_tuple( _self ) …
|
We do have the Persistence API to store data for a smart contract in the EOSIO database. I was wondering where this database is located. I understood that it is patterned after Boost Multi-Index. 1) …
|