~ BTC
~ XCR
~
Step 1
Step 2
Step 3
Build Incredible Applications
Lisk decentralized applications can be built from the ground up in pure Javascript and take advantage of the powerful Lisk APIs. In addition, all dapps are running in their own sidechain to ensure that Lisk itself is safe. In the future all dapps will run in the Lisk VM to ensure they are safe to run on any node. Learn how to code dapps in our documentation section.
How to Code// Decentralized Application ============
var sandbox = process.binding('sandbox');
sandbox.sendMessage({
call: "dapps#receive",
args: {body: "Hello Lisk!"}
});
sandbox.onMessage(function (msg, cb) {
console.log("receive message from lisk", msg.body);
cb();
});
// lisk ======================
var sandbox = new Sandbox("index.js", dappId, function (msg, cb) {
console.log("receive message from dapp " + dappId, msg.body);
cb();
}, true);
sandbox.sendMessage({body: "Hello dapp!"});
sandbox.run();
Easy, Rapid Deployment
The Lisk network allows for a multitude of storage options for your decentralized applications. Easily deploy your code in a .zip archive to services such as GitHub, or your own web server.
Once deployed you can then continue to register your dapp in the Lisk Dapp Store. Simply fill in the necessary fields like name, description, tags, the download link, and you are done.

Unlock the Power of Lisk
The Lisk network is a decentralized powerhouse. By utilizing our extensive user base, you can quickly find 3rd party nodes to execute your decentralized application through servers all over the world in a truly decentralized manner.
Combined with the Lisk Dapp Store and our global community network your dapp will quickly find its first users and can build out to conquer the world!
-

Store your code on GitHub or your own web server. -

Utilize Lisk master nodes to secure your sidechain and execute the code. -

Serve up a seamless experience to users and monetize your dapp.







