File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ export const IS_LOCALHOST_DEVNET =
3636 PROVIDER_URL . includes ( 'localhost' ) || PROVIDER_URL . includes ( '127.0.0.1' ) ;
3737
3838export const IS_DEVNET_RPC = IS_LOCALHOST_DEVNET && PROVIDER_URL . includes ( 'rpc' ) ;
39+ export const IS_DEVNET_SEQUENCER = IS_LOCALHOST_DEVNET && ! PROVIDER_URL . includes ( 'rpc' ) ;
3940
4041/* Definitions */
4142export const IS_RPC = ! ! RPC_URL ;
@@ -83,6 +84,6 @@ export const describeIfRpc = describeIf(IS_RPC);
8384export const describeIfNotDevnet = describeIf ( ! IS_LOCALHOST_DEVNET ) ;
8485export const describeIfDevnet = describeIf ( IS_LOCALHOST_DEVNET ) ;
8586export const describeIfDevnetRpc = describeIf ( IS_DEVNET_RPC ) ;
86- export const describeIfDevnetSequencer = describeIf ( ! IS_DEVNET_RPC ) ;
87+ export const describeIfDevnetSequencer = describeIf ( IS_DEVNET_SEQUENCER ) ;
8788
8889export const erc20ClassHash = '0x54328a1075b8820eb43caf0caa233923148c983742402dcfc38541dd843d01a' ;
You can’t perform that action at this time.
0 commit comments