File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import {
1616} from '../types' ;
1717import { BigNumberish } from '../utils/number' ;
1818import { ProviderInterface } from './interface' ;
19- import { RPCProvider , RpcProviderOptions } from './rpc' ;
19+ import { RpcProvider , RpcProviderOptions } from './rpc' ;
2020import { SequencerProvider , SequencerProviderOptions } from './sequencer' ;
2121import { BlockIdentifier } from './utils' ;
2222
@@ -32,7 +32,7 @@ export class Provider implements ProviderInterface {
3232 if ( providerOrOptions instanceof Provider ) {
3333 this . provider = providerOrOptions ;
3434 } else if ( providerOrOptions && providerOrOptions . rpc ) {
35- this . provider = new RPCProvider ( providerOrOptions . rpc ) ;
35+ this . provider = new RpcProvider ( providerOrOptions . rpc ) ;
3636 } else {
3737 this . provider = new SequencerProvider ( providerOrOptions ?. sequencer ) ;
3838 }
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ import { BlockIdentifier } from './utils';
3434
3535export type RpcProviderOptions = { nodeUrl : string } ;
3636
37- export class RPCProvider implements ProviderInterface {
37+ export class RpcProvider implements ProviderInterface {
3838 public nodeUrl : string ;
3939
4040 public chainId ! : StarknetChainId ;
You can’t perform that action at this time.
0 commit comments