Search content
Sort by

Showing 6 of 6 results by falconfree
Post
Topic
Board Tokens (Altcoins)
Re: 🌟🚀[ANN][JS]JavaScript Token/Javascript Blockchain platform/NO ICO📈🌟🚀
by
falconfree
on 08/06/2018, 09:35:07 UTC
We are working hard on JSChain Miner and plan to release it this summer.
Post
Topic
Board Tokens (Altcoins)
Re: 🌟🚀[ANN][JS]JavaScript Token/Javascript Blockchain platform/NO ICO📈🌟🚀
by
falconfree
on 07/04/2018, 12:58:46 UTC
We are working on the development of browser miner now. We plan to release the demo after May 25.
Post
Topic
Board Tokens (Altcoins)
Re: 🌟🚀[ANN][JS]JavaScript Token/Javascript Blockchain platform/NO ICO📈🌟🚀
by
falconfree
on 11/03/2018, 09:29:48 UTC
Development in progress, the source code is stored locally. We are testing blockchain platform in local network now.
Post
Topic
Board Tokens (Altcoins)
🌟🚀[ANN][JS]JavaScript Token/Javascript Blockchain platform/NO ICO📈🌟🚀
by
falconfree
on 12/02/2018, 11:07:09 UTC
Powered by Community
Explanation
Mission of JSChain is to connect blockchain with the whole world and to help people to interact with it.

We are creating our own blockchain platform, main advantages of it will be a lot more
convenient and fast integration and compatibility with web sites, apps and paying platforms.

Also it will reduce the entry threshold in blockchain and will attract more new JavaScript developers.

Stackoverflow statistics show that the percentage of JavaScript developers increases
every year and it is most popular programming language according to their surveys.

Click for proof

Also we have plans of creating and developing different software, APIs, libraries and light wallets,
on free basis and based on JavaScript Token as a currency. The goal of our coin will be the foundation of community
of JavaScript developers;creating materials for learning about applying JavaScript to blockchain.

The mission of our team is to unite divided blockchain technologies in one extensible system and,
by doing this, to help people to interact with blockchain. We are creating innovative blockchain platform,
 which main goal is accessibility for users. We are now already working on integration with sites,
native apps, mobile platforms and paying systems.

We have chosen to use JavaScript for achieving this results - the most popular programming language of 2017.
 Nowadays, JavaScript can be used everywhere, from SPA to creating AI and programming robots.
You can use your favourite libraries and frameworks or choose from hundreds of thousands of existing packages.
Only JavaScript has so well-developed infrastructure for analyzing and improving code.
There is a bunch of extensions and supersets of JavaScript, so you can use TypeScript/ClojureScript/CoffeeScript
Additional exciting part is that there is an opportunity of expanding JS from other languages, be it C/C++, Go or Rust.

Roadmap

#1 Website. End of Q4 2017
#2 JavaScript Chain testnet and development. Q1 2018
#3 Decentralized Blockchain and mining in browser. Q2 2018
#4 Implementing the best practices: (micro payment services, proof of vote, mining solution web app & mobile app.) Q3 2018
#5 Sharding, beta release of the merchant API, web app & mobile app. Q4 2018
#6 Virtual machine. Q1 2019
#7 Smart-contracts on JavaScript Chain. Q2 2019
#8 Scaling performance and global integration. Q3-Q4 2019

Links
Coinmarketcap
Exchange: Southexchange
Exchange: Etherdelta
Whitepaper: http://jschain.io/whitepaper/whitepaper.pdf
Roadmap: http://jschain.io/#roadmap
Old thread: https://bitcointalk.org/index.php?topic=2251683.0


Contact
E-mail: service@jschain.io


Post
Topic
Board Altcoin Discussion
Re: Receiving eth by contract and call fallback function
by
falconfree
on 05/02/2018, 11:38:37 UTC
I am thinking to create a contract to receive ethers
Once ether is received the contract will automatically call a fallback function
In this fallback function it will calculate the coins based on msg.value and send the tokens back to the sender address msg.sender
In this way once my contract received ethers it will automatically send back tokens according to a fixed exchange rate
Is this correct?thanks
Hello
It's correct way. Have you send external tokens (tokens whitch are existing) from our contract?
If it is true, then see ethereum Crowdsale contract (on official web site) - payable function with transfer function.
Post
Topic
Board Altcoin Discussion
Re: Web3.js question
by
falconfree
on 05/02/2018, 11:32:24 UTC
Hi thanks
I have a question for web3.js of ethereum
1 to run web3.js whether I must run Geth on the same server
3 whether I must run the fill node on the same server in order to run web3.js
3 web3.js is used to make a web application for ethereum token and contract?
4 web3.js cannot be used in the code of sol? Run in mist?

Thanks
Hi
I have some experience in ethereum development with web3.js.
You can connect web3 to any node (geth on the same server with web3.js app, or Infura service, or others).
Web3 may connect to node via ipc/rpc/ws interfaces. So node mast have open connection via one of this interfaces.
Through web3.js you can interact with contracts/tokens/ethereum accounts and others.
Web3 can compile sol code and deploy it to ethereum blockchain.
Web3 is powerfull Smiley But it has not very good and implicate documentation.