oops, forgot to add a file

This commit is contained in:
Manuel Araoz 2014-03-11 18:45:04 -03:00
parent 0394c14ee7
commit 8312f90458
1 changed files with 12 additions and 0 deletions

12
examples/simple.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<body>
<script src="../browser/bundle.js"></script>
<script>
var bitcore = require('bitcore');
var Address = bitcore.Address;
var a = new Address('1KerhGhLn3SYBEQwby7VyVMWf16fXQUj5d');
console.log('1KerhGhLn3SYBEQwby7VyVMWf16fXQUj5d is valid? '+a.isValid());
</script>
</body>
</html>