@@ -32,7 +32,7 @@ describe('dev-connection', () => {
3232 expect ( el . signer . getValue ( ) ) . to . be . equal ( undefined )
3333
3434 const mock = ethers . Wallet . createRandom ( ) . connect (
35- new ethers . providers . JsonRpcProvider ( rpcEndpoints [ 0 ] )
35+ new ethers . providers . JsonRpcProvider ( rpcEndpoints [ 0 ] ) ,
3636 )
3737 el . signer . next ( mock )
3838
@@ -44,7 +44,7 @@ describe('dev-connection', () => {
4444 expect ( el . account . getValue ( ) ) . to . be . equal ( undefined )
4545
4646 const mock = ethers . Wallet . createRandom ( ) . connect (
47- new ethers . providers . JsonRpcProvider ( rpcEndpoints [ 0 ] )
47+ new ethers . providers . JsonRpcProvider ( rpcEndpoints [ 0 ] ) ,
4848 )
4949 el . signer . next ( mock )
5050
@@ -55,7 +55,7 @@ describe('dev-connection', () => {
5555 const el = connection ( )
5656
5757 const mock = ethers . Wallet . createRandom ( ) . connect (
58- new ethers . providers . JsonRpcProvider ( rpcEndpoints [ 0 ] )
58+ new ethers . providers . JsonRpcProvider ( rpcEndpoints [ 0 ] ) ,
5959 )
6060 el . signer . next ( mock )
6161 await waitForUpdated ( el . account )
@@ -69,7 +69,7 @@ describe('dev-connection', () => {
6969 const el = connection ( )
7070
7171 const mock = ethers . Wallet . createRandom ( ) . connect (
72- new ethers . providers . JsonRpcProvider ( rpcEndpoints [ 0 ] )
72+ new ethers . providers . JsonRpcProvider ( rpcEndpoints [ 0 ] ) ,
7373 )
7474 el . signer . next ( mock )
7575 expect ( el . provider . getValue ( ) ) . to . be . equal ( mock . provider )
@@ -83,7 +83,7 @@ describe('dev-connection', () => {
8383 expect ( el . provider . getValue ( ) ) . to . be . equal ( undefined )
8484
8585 const mock = ethers . Wallet . createRandom ( ) . connect (
86- new ethers . providers . JsonRpcProvider ( rpcEndpoints [ 0 ] )
86+ new ethers . providers . JsonRpcProvider ( rpcEndpoints [ 0 ] ) ,
8787 )
8888 el . signer . next ( mock )
8989
@@ -96,7 +96,7 @@ describe('dev-connection', () => {
9696 expect ( el . provider . getValue ( ) ) . to . be . equal ( d )
9797
9898 const mock = ethers . Wallet . createRandom ( ) . connect (
99- ethers . getDefaultProvider ( )
99+ ethers . getDefaultProvider ( ) ,
100100 )
101101 el . signer . next ( mock )
102102
0 commit comments