UNPKG
@digitalnative/ethereum-utils
Version:
latest (1.0.1)
1.0.1
1.0.0
ethereum utils for stnd
standard.tech
digitalnativeinc/additionals
@digitalnative/ethereum-utils
/
src
/
Providers
/
InfuraWSProvider.js
12 lines
(8 loc)
•
243 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
ethers =
require
(
'ethers'
);
function
InfuraWSProvider
(
projectId, chainCode
) {
const
InfuraApi
= { projectId, };
return
new
ethers.
providers
.
InfuraWebSocketProvider
(chainCode, projectId); }
module
.
exports
=
InfuraWSProvider
;