question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Can I use scatter to transfer own coins between test accounts within private chain ?

See original GitHub issue

I create the test coin ‘SYS’ within private chain. I want to transfer some ‘SYS’ between the test accounts by use scatter api. I use transfer by this code: transfer() { const account = scatter.identity.accounts.find(x => x.blockchain === ‘eos’); const opts = { authorization:[${account.name}@${account.authority}] }; eos.transfer(account.name, ‘user1’, ‘1.0000 SYS’, ‘’, opts).then(trx => { console.log(‘trx’, trx); }).catch(err => { console.error(err); }) };

but it throw error with this: apigen.js:107 POST http://192.168.1.107:8888/v1/chain/push_transaction 500 (Internal Server Error) App.vue:154 trx-err {“code”:500,“message”:“Internal Service Error”,“error”:{“code”:3090003,“name”:“unsatisfied_authorization”,“what”:“Provided keys, permissions, and delays do not satisfy declared authorizations”,“details”:[]}}

What’s wrong with this code ? Can’t scatter transfer private coins within private chain ? or other reason?

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
wenji-mycommented, Nov 16, 2018

@nsjames Throw that error is because I made a careless error, I am solved now. Thank your help!

0reactions
nsjamescommented, Nov 15, 2018

That’s a strange error, looks like it’s blank and not returning the details of what went wrong. If i remember correctly theres a verbose errors flag in nodeos which you can enable that might allow it to throw more information.

Closing this though, as the original problem is solved.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Set Up a Local EOS Testnet - Medium
You can generate as many tokens as you'd like for testing, as well as generate as many accounts as you'd like, and transfer...
Read more >
EOS first baby steps: account, wallet, keypair, testnet, transfer ...
Scatter is a browser extension that allows you to sign transactions for multiple blockchains and provide personal information to web ...
Read more >
How to get local testnet account for use with scatter
I'm running a chain locally. Making accounts with cleos and interacting with contracts is easy to understand. But now i want to use...
Read more >
Sending crypto to Multiple Addresses in One transaction with ...
We use ScatterMe to send 100s of USDT to multiple addresses within a single transaction. Try it out at https://scatterme.app/. Follow Coin ......
Read more >
How to Transfer Your Crypto From Exchanges - Ledger
The safest way to store your crypto assets is onto a hardware wallet like Ledger, where your private keys are stored offline, in...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found