From 05cbbf5e303b455d3ed986bb681f28716f9926a1 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Mon, 17 Oct 2016 20:09:27 -0400 Subject: [PATCH] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index d33e8e70..2ec9d5fd 100644 --- a/README.md +++ b/README.md @@ -224,6 +224,13 @@ Contracts addresses can be defined, If an address is defined the contract wouldn EmbarkJS ====== +EmbarkJS is a javascript library meant to abstract and facilitate the development of DApps. + +```Javascript + var myContract = new EmbarkJS.Contract({abi: abiObject, address: "0x123"}); + myContract.get().then(function(value) { console.log("value is " + value.toNumber) }); +``` + EmbarkJS - Storage ======