Skip to content

Commit 016d8b0

Browse files
committedFeb 22, 2018
added license
1 parent 0078996 commit 016d8b0

File tree

6 files changed

+62
-0
lines changed

6 files changed

+62
-0
lines changed
 

‎LICENSE

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
This source code is being disclosed to you solely for the purpose of your participation in
2+
testing Zilliqa. You may view, compile and run the code for that purpose and pursuant to
3+
the protocols and algorithms that are programmed into, and intended by, the code. You may
4+
not do anything else with the code without express permission from Zilliqa Research Pte. Ltd.,
5+
including modifying or publishing the code (or any part of it), and developing or forming
6+
another public or private blockchain network. This source code is provided ‘as is’ and no
7+
warranties are given as to title or non-infringement, merchantability or fitness for purpose
8+
and, to the extent permitted by law, all liability for your use of the code is disclaimed.
9+
Some programs in this code are governed by the GNU General Public License v3.0 (available at
10+
https://www.gnu.org/licenses/gpl-3.0.en.html) (‘GPLv3’). The programs that are governed by
11+
GPLv3.0 are those programs that are located in the folders src/depends and tests/depends
12+
and which include a reference to GPLv3 in their program files.

‎gulpfile.js

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
// Copyright (c) 2018 Zilliqa
2+
// This source code is being disclosed to you solely for the purpose of your participation in
3+
// testing Zilliqa. You may view, compile and run the code for that purpose and pursuant to
4+
// the protocols and algorithms that are programmed into, and intended by, the code. You may
5+
// not do anything else with the code without express permission from Zilliqa Research Pte. Ltd.,
6+
// including modifying or publishing the code (or any part of it), and developing or forming
7+
// another public or private blockchain network. This source code is provided ‘as is’ and no
8+
// warranties are given as to title or non-infringement, merchantability or fitness for purpose
9+
// and, to the extent permitted by law, all liability for your use of the code is disclaimed.
10+
111
var browserify = require('browserify');
212
var gulp = require('gulp');
313
var source = require('vinyl-source-stream');

‎index.js

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
// Copyright (c) 2018 Zilliqa
2+
// This source code is being disclosed to you solely for the purpose of your participation in
3+
// testing Zilliqa. You may view, compile and run the code for that purpose and pursuant to
4+
// the protocols and algorithms that are programmed into, and intended by, the code. You may
5+
// not do anything else with the code without express permission from Zilliqa Research Pte. Ltd.,
6+
// including modifying or publishing the code (or any part of it), and developing or forming
7+
// another public or private blockchain network. This source code is provided ‘as is’ and no
8+
// warranties are given as to title or non-infringement, merchantability or fitness for purpose
9+
// and, to the extent permitted by law, all liability for your use of the code is disclaimed.
10+
111
var zLib = require('./lib/zLib')
212

313
if (typeof window !== 'undefined' && typeof window.zLib === 'undefined') {

‎lib/node.js

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
// Copyright (c) 2018 Zilliqa
2+
// This source code is being disclosed to you solely for the purpose of your participation in
3+
// testing Zilliqa. You may view, compile and run the code for that purpose and pursuant to
4+
// the protocols and algorithms that are programmed into, and intended by, the code. You may
5+
// not do anything else with the code without express permission from Zilliqa Research Pte. Ltd.,
6+
// including modifying or publishing the code (or any part of it), and developing or forming
7+
// another public or private blockchain network. This source code is provided ‘as is’ and no
8+
// warranties are given as to title or non-infringement, merchantability or fitness for purpose
9+
// and, to the extent permitted by law, all liability for your use of the code is disclaimed.
10+
111
var util = require('./util')
212
var validateArgs = util.validateArgs
313
var $ = require('jquery')

‎lib/util.js

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
// Copyright (c) 2018 Zilliqa
2+
// This source code is being disclosed to you solely for the purpose of your participation in
3+
// testing Zilliqa. You may view, compile and run the code for that purpose and pursuant to
4+
// the protocols and algorithms that are programmed into, and intended by, the code. You may
5+
// not do anything else with the code without express permission from Zilliqa Research Pte. Ltd.,
6+
// including modifying or publishing the code (or any part of it), and developing or forming
7+
// another public or private blockchain network. This source code is provided ‘as is’ and no
8+
// warranties are given as to title or non-infringement, merchantability or fitness for purpose
9+
// and, to the extent permitted by law, all liability for your use of the code is disclaimed.
10+
111
module.exports = {
212

313
// make sure each of the keys in requiredArgs is present in args

‎lib/zLib.js

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
// Copyright (c) 2018 Zilliqa
2+
// This source code is being disclosed to you solely for the purpose of your participation in
3+
// testing Zilliqa. You may view, compile and run the code for that purpose and pursuant to
4+
// the protocols and algorithms that are programmed into, and intended by, the code. You may
5+
// not do anything else with the code without express permission from Zilliqa Research Pte. Ltd.,
6+
// including modifying or publishing the code (or any part of it), and developing or forming
7+
// another public or private blockchain network. This source code is provided ‘as is’ and no
8+
// warranties are given as to title or non-infringement, merchantability or fitness for purpose
9+
// and, to the extent permitted by law, all liability for your use of the code is disclaimed.
10+
111
var Node = require('./node')
212
var util = require('./util')
313
var config = require('./config.json')

0 commit comments

Comments
 (0)
Please sign in to comment.