forked from klaytn/caver-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
134 lines (109 loc) · 4.7 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
Modifications copyright 2018 The caver-js Authors
This file is part of the web3.js library.
The web3.js library 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.
The web3.js library 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 the web3.js. If not, see <http://www.gnu.org/licenses/>.
This file is derived from web3.js/packages/web3/src/index.js (2019/06/12).
Modified and improved for the caver-js development.
*/
/**
* @file index.js
* @authors:
* Fabian Vogelsteller <[email protected]>
* Gav Wood <[email protected]>
* Jeffrey Wilcke <[email protected]>
* Marek Kotewicz <[email protected]>
* Marian Oancea <[email protected]>
* @date 2017
*/
global.rootRequire = name => require(`${__dirname}/packages/${name}/src/index.js`)
const { packageInit, providers } = require('./packages/caver-core')
const Klay = require('./packages/caver-klay')
const Account = require('./packages/caver-account')
const KeyringContainer = require('./packages/caver-wallet')
const Keyring = require('./packages/caver-wallet/src/keyring/keyringFactory')
const Transaction = require('./packages/caver-transaction')
const RPC = require('./packages/caver-rpc')
const abi = require('./packages/caver-abi')
const BaseContract = require('./packages/caver-contract')
const KCT = require('./packages/caver-kct')
const core = require('./packages/caver-core')
const Method = require('./packages/caver-core-method')
const middleware = require('./packages/caver-middleware')
const utils = require('./packages/caver-utils')
const formatters = require('./packages/caver-core-helpers').formatters
const helpers = require('./packages/caver-core-helpers')
const IPFS = require('./packages/caver-ipfs')
const { version } = require('./package.json')
function Caver(provider, net) {
const _this = this
this.use = middleware.registerMiddleware.bind(middleware)
// sets _requestmanager etc
packageInit(this, [provider, net])
this.version = version
this.utils = utils
this.abi = abi
this.formatters = formatters
this.helpers = helpers
this.Method = Method
this.account = Account
this.wallet = new KeyringContainer()
this.wallet.keyring = Keyring
this.transaction = Transaction
// ex) call `caver.klay.property` || `caver.klay.method(...)`
this.kct = new KCT(this)
this.klay = new Klay(this)
this.rpc = new RPC(this)
this.middleware = middleware
this.ipfs = new IPFS()
// overwrite package setProvider
const setProvider = this.setProvider
this.setProvider = (p, n) => {
setProvider.apply(this, [p, n])
_this.klay.setRequestManager(_this._requestManager)
_this.rpc.setRequestManager(_this._requestManager)
_this.kct.setRequestManager(_this._requestManager)
_this.contract._requestManager = _this._requestManager
_this.contract.currentProvider = _this._provider
return true
}
const self = this
const Contract = function Contract() {
BaseContract.apply(this, arguments)
// when caver.setProvider is called, call 'packageInit' all contract instances instantiated via this Caver instances.
// This will update the currentProvider for the contract instances
const _this = this // eslint-disable-line no-shadow
const setProvider = self.setProvider // eslint-disable-line no-shadow
self.setProvider = function() {
setProvider.apply(self, arguments)
core.packageInit(_this, [self])
}
this.setWallet(self.wallet)
}
Contract.create = function() {
// With `caver.contract`, `caver.wallet` must be set in the `contarct._wallet`,
// so the Contract constructor defined above must be called here.
return new Contract(...arguments)
}
Contract.setProvider = function() {
BaseContract.setProvider.apply(this, arguments)
}
Contract.prototype = Object.create(BaseContract.prototype)
Contract.prototype.constructor = Contract
this.contract = Contract
this.contract._requestManager = this._requestManager
this.contract.currentProvider = this._requestManager.provider
}
Caver.utils = utils
Caver.abi = abi
Caver.providers = providers
module.exports = Caver
module.exports.formatters = formatters