ethereum sponsors

London, United Kingdom, June 14, 2016 – The Ethereum Foundation is pleased to announce Microsoft as the Premiere Sponsor of Devcon2, the Ethereum developer conference in Shanghai, 19-21 September, 2016.Devcon2, which will showcase the most up-to-date research and development work supported by the Foundation, also represents the most comprehensive Ethereum-focused developer’s conference to date.The Ethereum Foundation’s Chief Scientist, Vitalik Buterin, notes that “We are very happy to have Microsoft’s sponsorship for Devcon2 and highly appreciate their continued support and collaboration with the Ethereum Foundation and the Ethereum ecosystem.We look forward to continuing to work together in the future.” Microsoft, an early leader with its Blockchain as a Service (BaaS), provides an open, hyperscale cloud platform and an expanding ecosystem of blockchain technologies for businesses, consortiums and governments who are looking to adopt the technology.As part of the conference, Ethereum developers will hear from Microsoft experts and learn about Microsoft Azure’s leading tools for blockchain technology development.
“We’re thrilled to support the Ethereum Foundation’s Devcon2, which will bring together pioneers in blockchain from all over the world,” said Marley Gray, Director of Blockchain and Distributed Ledger Business Development, Microsoft.“The Ethereum blockchain is powerful, and we’re looking forward to continuing the collaborative relationship with the Ethereum community, together bringing the best of blockchain technology to our cloud platform, Microsoft Azure.” While Devcon2 continues to be an independent event, this year it is presented as part of the International Blockchain Week along with the Wanxiang Blockchain Labs’ events.The weeklong, single venue format functions to provide both the development-focused Devcon2 and the business and industry focused Global Summit events in one week to facilitate greater interaction and cross-pollination between people involved in different areas or aspects of blockchain tech.Please save the date and check the Ethereum blog for periodic updates until the event website is available in late June.
The Ethereum Foundation is a registered non-profit “Stiftung” (foundation) in Zug, Switzerland that is the primary source for Ethereum platform innovation research and core development.Interested in sponsorship or exhibition opportunities?litecoin return on investmentContact For any other ticketing inquiries, please contact We're dedicated to a harassment-free experience at all of our eventsbitcoin cyclerDEVCON, the first Ethereum’s developer conference, received a new sponsor.bitcoin bytecoinMicrosoft (NASDAQ:MSFT), the multinational IT company, announced its direct involvement in the event.ethereum libraryDEVCON2 is the next ethereum developer and community gathering to take place, the event will be held at Shangai from 19 to 21 September.bitcoin rig motherboard
According to George Hallam (External Relations at the Ethereum Foundation) DEVCON2 will; …showcase the most up-to-date research and development work supported by the Foundation, also represents the most comprehensive Ethereum-focused developer’s conference to date… Vitalik Buterin, Ethereum’s inventor, and co-founder expressed words of gratitude: We are very happy to have Microsoft’s sponsorship for Devcon2 and highly appreciate their continued support and collaboration with the Ethereum Foundation and the Ethereum ecosystem.bitcoin fog companyWe look forward to continuing to work together in the future.” DEVCON2 Will bring together a variety of industry representatives, developers, and community members from all around the world.Microsoft decided to provide cloud infrastructure deemed Blockchain as a Service (Baas) on November 9 of 2015.Microsoft will present its Baas solutions at DEVCON2.
Marley Gray, Director of Blockchain and Distributed Ledger Business Development for Microsoft, said: We’re thrilled to support the Ethereum Foundation’s Devcon2, which will bring together pioneers in blockchain from all over the world.The Ethereum blockchain is powerful, and we’re looking forward to continuing the collaborative relationship with the Ethereum community, together bringing the best of blockchain technology to our cloud platform, Microsoft Azure.Microsoft also sponsored the previous DEVCON conference, which was held in November of last year at London -ether price was hovering from $1 to $0.7-.All in all, this event will bring value to the Ethereum ecosystem, and it may be a pivotal moment from which the platform will grow further.Block chain technology is getting a lot of attention, not just as means to store the ledger of transactions that power cryptocurrencies like Bitcoin, but to encapsulate code and data as “smart contracts”.This post looks at one open-source block chain technology Ethereum and builds a smart contract to demonstrate the strengths of such an approach.
A block chain is a data structure that stores time-ordered data in an ever-growing list, like an accounting ledger.The block chain data structure is maintained using a distributed, peer-to-peer network of computers with no central “master”.Each block in the chain contains transactions which represent a change of state in the database; the transfer of funds from one account to another, for example.Transactions are verified by multiple nodes in the network and are eventually stored in blocks in the block chain.Each block contains a signed hash of the contents of the preceding block, making it impossible for a block’s contents to be tampered with.It is possible to traverse the entire block chain to ensure that the hash of one block is stored in the block that follows it.Block chains contain a series of transfers of value from one address to another.An address uniquely identifies an account (or a user) in the system and is in fact a public key whose paired private key belongs only to the user who created the account.
Value cannot be transferred from an account without a digital signature that requires the source account’s private key.As well as securing the list of transactions cryptographically, block chains also provide a distributed consensus of the state of the database.It ensures that value transfers happen once or not at all, giving the application developer the peace of mind that, once stored, their data is both immutable and trusted.The block chain network effectively picks a random node to generate the next block in the chain by giving that privilege to the node that solves a mathematical task that takes a lot of computing power.The node that finds a solution to the problem nominates the next block in the chain and publishes it, where it is verified by others in the network.The winning node is rewarded for this “proof of work” with freshly minted crypto-currency and transaction fees collected from the transactions’ creators.This process is known as “mining” and serves the purpose of: In practice, mining favours only the very fastest, specialised hardware and an “arms race” develops where miners have to provision more and more hardware to maintain the same rate of currency harvest.
Bitcoin is the most famous practical example of a production block chain.Bitcoin is a cryptocurrency which can be used in exchange for real currencies, or transferred between Bitcoin accounts (wallets) using transactions in the Bitcoin block chain.At the time of writing there are 7000 nodes in the Bitcoin peer-to-peer network.Block chains have some key properties that are appealing to application developers: The Ethereum project takes the block chain principle and adds the ability to create smart contracts on the block chain—apps that can hold value, store data, and encapsulate code to perform computing tasks.Like Bitcoin, Ethereum has a currency—in this case, called Ether.Ether is mined by nodes that verify transactions before being stored in a shared-consensus block chain.Ether can be transferred between accounts (public keys) and smart contracts themselves.Smart contracts allow anonymous parties to enter into binding agreements, with each participant having full transparency on the deal being made.
Value can be transferred between accounts or held in escrow inside the smart contract itself.As the contract is just code, the application is only limited by the developer’s imagination.In the rest of this article, we’ll build a smart contract that allows the following account-holders to interact: Then one of two things can happen: Ethereum allows smart contracts to be defined by writing code in a language called Solidity which is Java-like language where the contract is similar to a Java class—the member variables are stored using block chain transactions and the contract’s methods can be called to interrogate the contract or change its state.As copies of the block chain are distributed to all nodes in the network, anyone can interrogate the contract to glean publicly accessible information from it.Our contract will have the following methods: The idea is to make a contract that is binding; if Ether is transferred to the contract by a sponsor, they can’t get it back unless the whole contract is refunded.
In this case, all of the data is publicly accessible, meaning that anyone who has access to the Ethereum block chain can see who set up the contract, who is the benefactor, and who pledged each amount by accessing the contract code itself.It’s important to note that anything that changes the state of a contract (its creation, pledging, refunding, or drawing down) requires transactions to be created on the block chain which means that the data is not stored until those transactions are mined and stored in a block.Operations that only read the state of an existing contract (getPot or reading the public member variables) are free operations which do not require mining.This is an important but subtle point: write operations are slow (we have to wait until mining completes).They may never make it to the block chain (if your code throws an exception or another error occurs) and require the caller to provide an incentive to the miners for doing the work.This is called gas in Ethereum terminology.
All write operations require gas to pay for operations that change the state of the block chain.Luckily we don’t have to buy any real Ether and participate in an Ethereum network.We can use the same software but configure it to run a local test block chain and run a miner to generate our own pretend Ether.This allows us to test our code without wasting real Ether.Here’s the full source code of our smart contract written in the Solidity language: Notice how the code doesn’t mention transactions, blocks, gas, or any of the terminology of block chains or crypto-currencies.It’s just code that saves state inside its member variables.It just so happens that Ethereum creates the necessary transactions and submits them to the network (in this case our test network) for verification, before being written to the block chain.All of that complication is hidden from us, leaving our code small (50 lines) and easy to understand.This is important because smart contracts are about shared trust; all participants in a contract should be clear what they are committing to, where funds are going, and who has access to perform which operations.
The simpler the code, the easier it is to verify that the contract is trustworthy.In order to run the contract, you first need Ethereum up and running.My installation instructions for an Ubuntu server are here.I used an IBM Bluemix virtual machine and added the packages I needed using apt-get.Assuming you have followed my setup instructions to create four Ethereum accounts on your test network and have set up a mining process, we can clone the smartSponsor code and execute it using the Ethereum console: From with the geth console, we can execute JavaScript commands which interact with Ethereum’s API: The smartsponsor.js file creates variables which hold the addresses of the four Ethereum accounts we created (theminer, therunner, thebenefactor, thesponsor), which makes it easier to understand who’s doing what in the subsequent code snippets.It also contains a series of commands which compile the Solidty source, construct a smartSponsor contract and instantiate a new contract as therunner, such that the benefactor of the contract is thebenefactor.
The contract isn’t live until its transaction is mined.This may take a few seconds or a few minutes depending on the speed of the machine it is running on.Let’s look at the contract (which is assigned to a variable ss): We can see that the contract has an address, meaning it can send/receive Ether value and a transactionHash which locates it in the block chain.Also listed are the public functions that can be called against the contract.Let’s call some of those now: We can see that the owner and benefactor of the contract are different accounts (therunner and thebenefactor, respectively), and the contract’s state has been initialised with no money and no pledges.These “read” operations are free so we do not have to supply any gas because we are simply reading from our own copy of the block chain.Next we’ll give some money to thesponsor account, as accounts are generated with no Ether at first: Next we’ll authenticate as thesponsor user and pledge some money to our smart contract: The value parameter is the amount of Ether we wish to transfer to the contract.
10000000 may seem like a lot, but the units are in wei.There are 1000000000000000000 wei in 1 Ether!The returned value is a transaction id.We have to wait until the transaction makes it into the block chain before the contract’s state will be updated: The call to pledges(0), returns the first pledge as an array containing the value, the sponsor’s address and the message (as a string of bytes).We can keep adding pledges with repeated calls to the pledge function and watch the pot build up.After seven sponsors have pledged we have: Notice that the contract gets the full value of the Ether pledged by the sponsor, but the sponsor’s account is actually debited with slightly more than the pledge.It’s because the caller of the pledge function also has to supply the “gas” to power the operation.When the runner is ready to complete the contract, only a call to drawdown is needed: After that contract has mined, we should see that the benefactor’s account has received the contents of the contract: The smart contract holds multiple donations in escrow inside the contract until they are ready to be transferred either to the benefactor, or back to the sponsors.
The code has safeguards in place to ensure that only the creator of the contract can refund or draw it down and to prevent further funds being added after the contract’s completion.The state of the contract can be interrogated at all times by all parties and all in 50 lines of code!The commands that are executed on the geth command-line utility are actually JavaScript statements.The same calls can be made by your own client-side code which communicate back to the live (or test) network using a remote procedure call API.This makes it simple to create web-based front-ends for your smart contracts.There is also the Mist browser that lets you create accounts, and view and interact with contracts—like an App Store of smart contracts.There are grand plans for Mist, but at the moment it is a relatively simple wallet app and contract browser.A blockchain is a means of storing data in time-ordered ledger across a multi-node distributed database.But not distributed in the sense that Cloudant is a distributed database.
The data is not sharded into pieces to spread the workload into manageable chunks; all members of the network have to deal with every change in data.Furthermore, the process of mining nodes performing “proof-of-work” tasks to prove that they are worthy of suggesting changes makes the process of writing data extremely slow.At the time of writing, the Ethereum network can handle only 20-30 transactions per second (not 20-30 transactions per user, but total) across the global network.Ethereum also is more than a data store.It adds the ability to encapsulate executable code alongside the data in the blockchain.This allows participants to trust that a contract will do what it says it is going to.Compare and contrast that with signed paper contracts, lawyers, notaries, banks, insurers, clearing houses, etc. Ethereum is only one of a number of smart contract platforms that have been created to provide a means of building applications on block chain technology.The most suitable use-cases are applications that: Applications such as auctions, loans, wills, registries, crowdfunding, shareholding, and voting spring to mind.
Write operations are expensive, both monetarily and computationally, so smart contracts lend themselves to applications which write infrequently but whose data has a high value.Although read operations are free, there are only primitive querying operations.You can create indexes on stored data, but there is no query language or means to extract or aggregate data as you would in a conventional database.There are other drawbacks to block chains.Every participant in the network saves every block—the data is not sharded to divide the data into manageable chunks—so every node has to store the entire database and deal with every change.The “proof of work” model for distributing trust in the network is a clever work-around, but in practice, causes hundreds or thousands of nodes burning megawatts of power to prove that they are trustworthy.Finally, the value of Ether, like Bitcoin, is subject to speculative buying and selling, making the monetary value of Ether unstable.Ethereum has items in its roadmap to address performance, scalability, and a replacement for proof-of-work, but at the time of writing they are just wish-list items.