Bitcoin Forum

Alternate cryptocurrencies => Altcoin Discussion => Topic started by: vectisitch on December 25, 2019, 11:19:11 AM



Title: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: vectisitch on December 25, 2019, 11:19:11 AM
Helios Protocol (@HeliosPlatform)
Testnet Launch + Holiday Giveaway!

Deploy a Solidity DApp on the Helios Testnet and enter to win a 1 year subscription to any @jetbrains IDE of your choosing! Up to $500 USD value!

https://t.co/CUgu655Zbq

#DApps #Blockchain #Decentralized #Airdrop #Bounties

https://i.ibb.co/KD1mSJJ/EMVb-Tol-UEAEO105-jpg-large.jpg (https://ibb.co/RN57dqq)

The Advantage of deploying your dapp on Helios is that we have multiple blockchains, so scalability is not a problem. Every wallet has it's own blockchain and they are all connected by a dag system. Each dapp has it's own blockchain and soon you will be able to host your website on your blockchain making the need for a centralised server obsolete. With nodes all over the globe you will not have the problem of ddos attacks. We have very low fees and instant transactions because any transaction to or from your wallet is instantly sent instead of waiting for the next block. So blockages and slow downs are also non existant with Helios.
Come and try us and take full advantage of our dapp incubator program which helps you financially to deploy with us.
We have been constantly developing since the start and aim to become the go to platform for your dapps. We feel we have world beating features that will out perform any existing dapp platform wit hthe added benefit of a decentralised web.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: DaMut on December 25, 2019, 11:47:56 AM
is this thread created solely for announcing the contest? if it is, I think it would be better for you to move it on the bounty section https://bitcointalk.org/index.php?board=238.0.
if not, I think you should add something more like the advantage of deploying the smart contract on helios blockchain rather than deploying it on other blockchains.
 


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: vectisitch on December 25, 2019, 01:42:36 PM
is this thread created solely for announcing the contest? if it is, I think it would be better for you to move it on the bounty section https://bitcointalk.org/index.php?board=238.0.
if not, I think you should add something more like the advantage of deploying the smart contract on helios blockchain rather than deploying it on other blockchains.
 

I have updated my post, It's christmas so i rushed the post to start with.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: DaMut on December 25, 2019, 01:55:50 PM
is this thread created solely for announcing the contest? if it is, I think it would be better for you to move it on the bounty section https://bitcointalk.org/index.php?board=238.0.
if not, I think you should add something more like the advantage of deploying the smart contract on helios blockchain rather than deploying it on other blockchains.
 

I have updated my post, It's christmas so i rushed the post to start with.
that is fine, I have shared it on my local giveaway/contest thread https://bitcointalk.org/index.php?topic=751577.msg53434959#msg53434959.
who knows, it might attract people to participate in deploying the smart contract in helios blockchain because of this event.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: vectisitch on December 25, 2019, 03:40:12 PM
is this thread created solely for announcing the contest? if it is, I think it would be better for you to move it on the bounty section https://bitcointalk.org/index.php?board=238.0.
if not, I think you should add something more like the advantage of deploying the smart contract on helios blockchain rather than deploying it on other blockchains.
 

I have updated my post, It's christmas so i rushed the post to start with.
that is fine, I have shared it on my local giveaway/contest thread https://bitcointalk.org/index.php?topic=751577.msg53434959#msg53434959.
who knows, it might attract people to participate in deploying the smart contract in helios blockchain because of this event.


Thankyou very much.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: vectisitch on December 28, 2019, 01:24:29 PM
We have a fantastic opportunity for developers to see what we’re made of. We have teamed up with JetBrains to bring you this killer giveaway right here! That’s right, come build with us and deploy your DApp on the Hypothesis Testnet and enter to win a 1-year subscription to any JetBrains IDE of your choosing! This is up to a $500 USD value!! Don’t miss out, the offer is only going to be available for a limited time!!!

This week we added an array of walk-throughs to the developer page of our website that developers can use to perform various functions on the Helios Protocol Hypothesis Testnet. In the first example below, we show how to take Solidity code from Ethereum, deploy, and use on the Helios Protocol platform. This example shows it is simply copying and pasting the code, unmodified. In the second example, two new walkthroughs were added to easily show how to deploy your Smart Contract and interact with it on our platform. Come develop with us. It’s so easy to migrate, a CaptainCaveDann could do it!

    https://heliosprotocol.io/developer/ethereum_solidity_example_voting.html
    https://heliosprotocol.io/developer/walkthroughs.html

There are two things you need to understand about Helios Protocol before we can explain what we added to the code this week:

1) On Helios Protocol, every smart contract and wallet has its own chain. Communication between these chains is achieved through transactions from one chain to another. Smart contracts can send a transaction to call a function on another smart contract. Because this process requires sending and receiving a transaction, the contract that sent the transaction cannot immediately see the result of the function that it called on the other chain.

2) Helios Protocol has a unique new feature where a transaction can specify which smart contract it would like to execute, or the code address. Unlike Ethereum, this means a transaction with data doesn’t necessarily need to execute the code stored the chain it is being sent to. You can send a transaction with data from chain A to chain B, while executing code from chain C. But the question arises: what chain state, or storage address, will the smart contract execution use? The answer: it will always use the storage and state on whatever chain the transaction lives on. If it is the send part of the transaction in this example, it will use the storage on chain A. If it is the receive part of the transaction, it will use the storage on chain B. However, in order to stop smart contracts from being able to overwrite and modify the storage of another smart contract, each external smart contract gets its own isolated storage on each chain. In our example, chain A will have a special isolated storage specifically for smart contract C, but it will still be contained in the state of chain A.

This week, we implemented this:

There is an OPCODE called STATICCALL. On Ethereum, this opcode allows you to call another smart contract in read only mode, use the storage of that smart contract, and get the result of the computation. But as we mentioned in 1), if a smart contract wants to do this, it has to wait for the transaction to send and receive and therefore cannot get a result back immediately. However, recall from 2), that the external smart contract actually has its own isolated storage on this chain too. Thus, we have modified STATICCALL to allow a smart contract A to call smart contract C, and use the isolated storage of C, contained within its own chain, in read only mode. The end behavior of this is exactly the same as Ethereum, except it uses a different storage location.

We also added ability for send transaction computations to create new computation call transactions. Made a recursion limit of 20 to stop infinite loops that fill the block with infinite transactions.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: Jbrice on January 03, 2020, 09:25:33 PM
With the arrival of smart contracts, it will now be easier to deploy your decentralized applications in the Helios Protocol network. The network offers many advantages among which we find parallel blockchain, infinite scalability and low network costs between each transaction.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: max76 on January 03, 2020, 10:51:04 PM
Running smart contracts on Helios Protocol blockchain is very profitable compared to running them on the ETHEREUM one.
Helios Protocol is faster and cheaper than Ethereum. In Helios Protocol, it's also possible to run a solidity ETHEREUM project without problems.
I like it.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: faridrn on January 03, 2020, 11:19:36 PM
This project includes a number of best things: great team, great product, great idea, great start! We need products and ideas! I'm sure the company will occupy a leading place in this world!  Excellent opportunities for safe investment. A great project with innovation, I believe this is one of the best companies of the world.
Project and system concept is very good, the cohesiveness of this project team can be guaranteed, the quality of security is very trustworthy, just how we investors to share this important information to the world, success continues. I'm glad to get to such a promising project and near future will see an unprecedented growth of this project. I'm interested to be here.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: WhiteWhale367 on January 03, 2020, 11:31:11 PM
In digital world all should be "plug and play", thats how it is with Helios Protocol. Just simple way to implement your smart contracts. Because of Helios unique features it is an optimal solution for your DApps. All facts are explained in details.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: xxxROBIxxx on January 03, 2020, 11:39:05 PM
Helios platform is fully community driven project which comes with a super low fees and instant transactions. Nowadays crypto lovers wants to move their funds as lowest costs and the quickest time possible. Having ETH scalability problems are the moment, Helios is coming up with infinite scalability and parallel blockchain. On top of that Helios Protocol has super unique new feature which is smart contracts - means: every smart contract comes with his own chain and communicating between each other. ⭐️⭐️⭐️⭐️⭐️


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: vectisitch on January 04, 2020, 12:15:58 AM
Another reason to take full advantage
https://twitter.com/HeliosPlatform/status/1213211233999941632

https://i.ibb.co/pXLW1nT/incubator.jpg (https://ibb.co/KyrN5mg)

https://i.ibb.co/fMtjYsV/migrate-from-ethereum.jpg (https://ibb.co/8M21DHn)


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: Sulfurath on January 04, 2020, 02:38:49 AM
a great time for this coin to see that it will have smart contracts, if i had the skills i would start my own chain.
We have been needing and ethereum that is more infinitely scalable as well, i stopped using ethereum because of it.
With the right marketing this coin will do really well.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: HACKELMaN501 on January 04, 2020, 09:25:23 AM
Helios brings a high scalability with it! It is also possible to integrate any dApp(programmed in Solidity) into the Helios platform!
What Ethereum was in 2016/2017 can become Helios in 2020! The advantage is clear with Helios, because the technology is more mature, faster and "greener". Added to this are the low transaction costs, which means a lot because no one wanna pay high fees.

All in all, Helios has the chance to convince various dApps that the Helios platform is the right one.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: hazni on January 04, 2020, 02:40:50 PM
The Helios platform will be capable of executing smart contracts and dApps programmed in Solidity just like the Ethereum platform. This will allow for accelerated adoption of the Helios platform by existing developers. It will also allow for seamless migration of Ethereum based dApps to the Helios platform. Furthermore, we are allocating a large percentage of HLS tokens to a dApp incubator fund to support new visionary projects built on the Helios platform.

Advantages of Helios Protocol smart contracts vs Ethereum smart contracts: Very low transactions fee, infinite scalability and parallel blockchains based on DAG


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: patrickrn32 on January 04, 2020, 02:56:35 PM
The Helios platform will be capable of executing smart contracts and dApps programmed in Solidity just like the Ethereum platform.
This will allow for accelerated adoption of the Helios platform by existing developers. It will also allow for seamless migration of Ethereum based dApps to the Helios platform.
Thats great!


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: TheBiochemist on January 04, 2020, 09:18:47 PM
Good to see a protocol that actually uses much less energy compared to ETH / BTC since energy consumption is a hot topic today.

I´ve read countless articles about bitcoin / eth and how they waste energy and when looking at the political climate, things like green new deal, UN agendas for lower emission, innovate to 0 emission by 2050 etc etc comes up. Initiatives like this sure will cause many to look at older PoW cryptos with an evil eye and it also provides an good reason for anti crypto actors to work against them.

Along with cheaper / faster transactions and solidity support, the energy consumption situation provides a strong reasons to run your dApps at Helios protocol instead of ETH and I think it would be smart in a future with hard competition. I, sadly, have not made any dApp my self but if i did, I would try running it at the helios test net and see how it preforms, or I might get left behind.





Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: knuckey on January 05, 2020, 04:43:45 AM
One more smart contract platform is created, it would be more interesting if the OP was willing to make a comparison table between helios and other smart contract platform.

By the way, is the signature you are using is a campaign from helios? Can you give me the url for the bounty thread?


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: vectisitch on January 05, 2020, 07:56:43 AM
One more smart contract platform is created, it would be more interesting if the OP was willing to make a comparison table between helios and other smart contract platform.

By the way, is the signature you are using is a campaign from helios? Can you give me the url for the bounty thread?

We are working on a comparison chart . Here is the address for our bounties. The link is also in my signature
https://heliosprotocol.io/airdrops_bounties.php


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: CjMapope on January 05, 2020, 08:34:47 PM
heres some discussion: the OP looks like a 3 year old did it :P
maybe you would get more interest in this if you showed even a more professional understanding of format and typing English words :/
how can you trust a platform that boasts about their hard coding skills, that has team members that cant even manage simple proofreading? :(
"world beating features"  um, ok?what does that even MEAN?  spelling errors as well...
i still think Helios seems interesting, just hard to have faith in a team that cant even launch a professional OP :/


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: Wombat001 on January 06, 2020, 03:49:18 AM
In my opinion the issue for smart contract platforms has always been scalability and cost. We all remember the crypto kitties incident with the eth network. Helios does not have this problem with it's side chains so you don't need to worry about the chain being congested. Low transaction fees, very fast and helios is a self funded community driven project. I will also mention the low energy consumption Helios uses compared to others as this is a big issues on many peoples mind.



Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: vectisitch on January 06, 2020, 01:24:50 PM
heres some discussion: the OP looks like a 3 year old did it :P
maybe you would get more interest in this if you showed even a more professional understanding of format and typing English words :/
how can you trust a platform that boasts about their hard coding skills, that has team members that cant even manage simple proofreading? :(
"world beating features"  um, ok?what does that even MEAN?  spelling errors as well...
i still think Helios seems interesting, just hard to have faith in a team that cant even launch a professional OP :/

Hmm, interesting analysis there. So you decide on a project by a spelling error? I think theres more to it than that. Some people are better at some things than others.
I don't see any spelling errors in my post? Maybe you could point them out? And i am a native English speaker, because i happen to come from a country called England.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: Banadony on January 07, 2020, 08:03:48 PM
I discovered that Helios offered better and superb smart contract platform more than most blockchain platform that offers similar services. much better in transactions, network speed , execution and processing.  much better than EDS blockchain and host of others.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: Abhijitsaha on January 08, 2020, 08:07:28 PM
For any project to be hit one day all is need is consistency and hard work.
That's what i loved in Helios. The project is running 2+ years with self funding and consistent hard work of the core team members. Much love for this type of project ❤️


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: fitraok09 on January 11, 2020, 02:18:38 AM
I discovered that Helios offered better and superb smart contract platform more than most blockchain platform that offers similar services. much better in transactions, network speed , execution and processing.  much better than EDS blockchain and host of others.

Are you a developer?  have you do at least one or two or more skill in the following programming languages: blockchain, Node.JS + Web3.JS, PostgreSQL, Docker, Kubernetes, Git, C#, C++, nor Python

please contact me, you can to be a helios developer. we will hire you


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: wave70 on January 13, 2020, 10:13:27 AM
The parallel blockchain idea and smart contracts handling looks very interesting. However I still think that real adoption will be what will make a crypto project a real winner. What are the plans of Helios to increase adoption?


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: joseit0 on January 13, 2020, 08:37:01 PM
the smart contract of Helios is better than others Platforms. Offer too a DAG Technology, Low Fees on transactions and much more, is a good project to see and use.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: longlivecapitalism on January 13, 2020, 09:40:55 PM
The parallel blockchain idea and smart contracts handling looks very interesting. However I still think that real adoption will be what will make a crypto project a real winner. What are the plans of Helios to increase adoption?
I believe that creating certain features such as smart contracts and the dApp incubator among others will contribute to the adoption of this coin and make it more attractive to investors. Obviously, it's crucial to make sure that people know that such a coin exists (even inside the crypto world, it's easy for coins to not get the attention they deserve because there are too many of them) so promotion is important. Helios could become the next Ethereum and serve its users even better if it stays true to its purpose and is marketed right. Every single top 20 coin started out small.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: vnmalireddy on January 14, 2020, 06:27:30 AM
All Looking good for Helios protocol, just waiting for launch of there smart Contract dApps, which will make all future dApps relay on HLS due to secure, high speed, and low fee transactions, Helios has potential to  out smart ETH soon


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: Jrmorgan87 on January 17, 2020, 12:25:43 AM
Helios Protocol (@HeliosPlatform)
Testnet Launch + Holiday Giveaway!

Deploy a Solidity DApp on the Helios Testnet and enter to win a 1 year subscription to any @jetbrains IDE of your choosing! Up to $500 USD value!

https:/[Suspicious link removed]/CUgu655Zbq

#DApps #Blockchain #Decentralized #Airdrop #Bounties

https://i.ibb.co/KD1mSJJ/EMVb-Tol-UEAEO105-jpg-large.jpg (https://ibb.co/RN57dqq)

The Advantage of deploying your dapp on Helios is that we have multiple blockchains, so scalability is not a problem. Every wallet has it's own blockchain and they are all connected by a dag system. Each dapp has it's own blockchain and soon you will be able to host your website on your blockchain making the need for a centralised server obsolete. With nodes all over the globe you will not have the problem of ddos attacks. We have very low fees and instant transactions because any transaction to or from your wallet is instantly sent instead of waiting for the next block. So blockages and slow downs are also non existant with Helios.
Come and try us and take full advantage of our dapp incubator program which helps you financially to deploy with us.
We have been constantly developing since the start and aim to become the go to platform for your dapps. We feel we have world beating features that will out perform any existing dapp platform wit hthe added benefit of a decentralised web.



Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: Alri_17 on January 18, 2020, 09:26:04 PM
The helios procolo is committed to decentralization to give prominence to developers and users of its platform and what also makes it attractive is that it is based on dag technology, this makes it an excellent alternative to the ethernet platform. I saw that there is currently a campaign for developers with the opportunity to earn $500 for deploying their dapp in their tesnet, not bad.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: riksen on January 19, 2020, 08:51:26 PM
The parallel blockchain idea and smart contracts handling looks very interesting. However I still think that real adoption will be what will make a crypto project a real winner. What are the plans of Helios to increase adoption?

If there are teams that will use the Dapps part of the Helios network. Helios will certainly become a large and strong network. But that is not enough to make the project successful. You also need a good team and a large community for that. Team is working hard to get there. Come and chat with the community on discord.


Title: Re: Helios Protocol smart contract, decentralised web platform launches testnet
Post by: joseleo19 on January 20, 2020, 02:46:06 AM
I recommend you @HeliosPlatform  it is a consolidated project. Smart contract platform based on dag, side chains that make it infinitely scalable. Excellent developers and community