Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Merge pull request #569 from klaytn/release/v1.6.6
Browse files Browse the repository at this point in the history
[Master] release/v1.6.6 QA Sign-off
  • Loading branch information
jimni1222 authored Jan 11, 2022
2 parents 6a7b857 + 1cf455c commit d0d53d3
Show file tree
Hide file tree
Showing 60 changed files with 48,169 additions and 12,073 deletions.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:
command: |
cd ./test/test-web
./prepareWebTest.sh
./runWebEnvTest.sh
npm run cypress:run
./terminateTest.sh
tag_verify:
<<: *defaults
Expand Down
7 changes: 6 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ module.exports = {
node: true,
mocha: true,
},
parser: 'babel-eslint',
parser: '@babel/eslint-parser',
parserOptions: {
ecmaVersion: 8,
requireConfigFile: false,
},
plugins: ['prettier'],
rules: {
'prettier/prettier': ['error'],
Expand Down Expand Up @@ -42,6 +46,7 @@ module.exports = {
'import/no-dynamic-require': 0,
'import/no-extraneous-dependencies': 0,
'no-loop-func': 0,
'react/destructuring-assignment': 0,
'no-proto': 1,
'prefer-const': 1,
'no-multi-assign': 1,
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
path = caver-conformance-tests
url = https://github.com/ground-x/caver-conformance-tests.git
branch = dev
[submodule "test/klaytn-integration-tests"]
path = test/klaytn-integration-tests
url = https://github.com/klaytn/klaytn-integration-tests
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ If you are already using a different version of the node(for example, node v15),

## Installation

### Node

To try it out, install caver-js with npm like following command:

```
Expand All @@ -57,6 +59,24 @@ To install a specific version of caver-js, try the following command:
$ npm install [email protected]
```

### In the Browser

Build using the caver-js repository:

```
$ npm run build
```

Then include `dist/caver.min.js` in your html file. This will expose Caver on the window object.

Or via CDN:

```
<script src="https://cdnjs.cloudflare.com/ajax/libs/caver-js/x.x.x/caver.min.js"></script>
```

The caver-js provided by cdnjs can be found at [this link](https://cdnjs.com/libraries/caver-js).

## Getting Started

If you want to run your own EN (Endpoint Node), see [EN Operation Guide](https://docs.klaytn.com/node/endpoint-node) to set up. You can connect EN like below:
Expand Down
152 changes: 0 additions & 152 deletions gulpfile.js

This file was deleted.

Loading

0 comments on commit d0d53d3

Please sign in to comment.