-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(web3): separate eth and atl namespace
- Loading branch information
Showing
17 changed files
with
3,499 additions
and
777 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# web3-eth | ||
|
||
[![NPM Package][npm-image]][npm-url] | ||
|
||
This is a sub-package of [web3.js][repo]. | ||
|
||
This Eth package is used within some [web3.js][repo] packages. | ||
|
||
Please read the [documentation][docs] for more. | ||
|
||
## Installation | ||
|
||
You can install the package either using [NPM](https://www.npmjs.com/package/web3-eth) or using [Yarn](https://yarnpkg.com/package/web3-eth) | ||
|
||
### Using NPM | ||
|
||
```bash | ||
npm install web3-eth | ||
``` | ||
|
||
### Using Yarn | ||
|
||
```bash | ||
yarn add web3-eth | ||
``` | ||
|
||
## Usage | ||
|
||
```js | ||
const Web3Eth = require('web3-eth'); | ||
|
||
const eth = new Web3Eth('ws://localhost:8546'); | ||
``` | ||
|
||
## Types | ||
|
||
All the TypeScript typings are placed in the `types` folder. | ||
|
||
[docs]: http://web3js.readthedocs.io/en/1.0/ | ||
[repo]: https://github.com/ethereum/web3-eth.js | ||
[npm-image]: https://img.shields.io/npm/v/web3-eth.svg | ||
[npm-url]: https://npmjs.org/package/web3-eth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"name": "@artela/web3-eth", | ||
"version": "1.9.16", | ||
"description": "Web3 module to interact with the Artela aspects.", | ||
"repository": "https://github.com/artela-network/web3.js/tree/1.x/packages/web3-eth", | ||
"license": "LGPL-3.0", | ||
"engines": { | ||
"node": ">=8.0.0" | ||
}, | ||
"types": "types/index.d.ts", | ||
"scripts": { | ||
"compile": "tsc -b tsconfig.json", | ||
"dtslint": "dtslint --localTs ../../node_modules/typescript/lib types" | ||
}, | ||
"main": "lib/index.js", | ||
"dependencies": { | ||
"@artela/web3-core": "1.9.15", | ||
"@artela/web3-core-method": "1.9.15", | ||
"@artela/web3-eth-contract": "1.9.15", | ||
"@artela/web3-utils": "1.9.8", | ||
"web3-core-helpers": "1.9.0", | ||
"web3-core-subscriptions": "1.9.0", | ||
"web3-eth-abi": "1.9.0", | ||
"web3-eth-accounts": "1.9.0", | ||
"web3-eth-ens": "1.9.0", | ||
"web3-eth-iban": "1.9.0", | ||
"web3-eth-personal": "1.9.0", | ||
"web3-net": "1.9.0" | ||
}, | ||
"devDependencies": { | ||
"web3-eth": "1.9.0", | ||
"dtslint": "^3.4.1", | ||
"typescript": "4.1" | ||
}, | ||
"gitHead": "3ad3460e41163b01e0f48465365d557d0a49fdaf" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
This file is part of web3.js. | ||
web3.js is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Lesser General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
web3.js is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License | ||
along with web3.js. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
/** | ||
* @file getNetworkType.js | ||
* @author Fabian Vogelsteller <[email protected]> | ||
* @date 2017 | ||
*/ | ||
|
||
"use strict"; | ||
|
||
var getNetworkType = function (callback) { | ||
var _this = this, | ||
id; | ||
|
||
|
||
return this.net.getId() | ||
.then(function (givenId) { | ||
|
||
id = givenId; | ||
|
||
return _this.getBlock(0); | ||
}) | ||
.then(function (genesis) { | ||
var returnValue = 'private'; | ||
|
||
if (genesis.hash === '0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3' && | ||
id === 1) { | ||
returnValue = 'main'; | ||
} | ||
if (genesis.hash === '0x41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d' && | ||
id === 3) { | ||
returnValue = 'ropsten'; | ||
} | ||
if (genesis.hash === '0x6341fd3daf94b748c72ced5a5b26028f2474f5f00d824504e4fa37a75767e177' && | ||
id === 4) { | ||
returnValue = 'rinkeby'; | ||
} | ||
if (genesis.hash === '0xbf7e331f7f7c1dd2e05159666b3bf8bc7a8a3a9eb1d518969eab529dd9b88c1a' && | ||
id === 5) { | ||
returnValue = 'goerli'; | ||
} | ||
if (genesis.hash === '0xa3c565fc15c7478862d50ccd6561e3c06b24cc509bf388941c25ea985ce32cb9' && | ||
id === 42) { | ||
returnValue = 'kovan'; | ||
} | ||
|
||
if (typeof callback === 'function') { | ||
callback(null, returnValue); | ||
} | ||
|
||
return returnValue; | ||
}) | ||
.catch(function (err) { | ||
if (typeof callback === 'function') { | ||
callback(err); | ||
} else { | ||
throw err; | ||
} | ||
}); | ||
}; | ||
|
||
module.exports = getNetworkType; |
Oops, something went wrong.