@@ -20,16 +20,19 @@ export const API_VERSION = ZERO;
2020export enum BaseUrl {
2121 SN_MAIN = 'https://alpha-mainnet.starknet.io' ,
2222 SN_GOERLI = 'https://alpha4.starknet.io' ,
23+ SN_SEPOLIA = 'https://alpha-sepolia.starknet.io' ,
2324}
2425
2526export enum NetworkName {
2627 SN_MAIN = 'SN_MAIN' ,
2728 SN_GOERLI = 'SN_GOERLI' ,
29+ SN_SEPOLIA = 'SN_SEPOLIA' ,
2830}
2931
3032export enum StarknetChainId {
3133 SN_MAIN = '0x534e5f4d41494e' , // encodeShortString('SN_MAIN'),
3234 SN_GOERLI = '0x534e5f474f45524c49' , // encodeShortString('SN_GOERLI')
35+ SN_SEPOLIA = '0x534e5f5345504f4c4941' , // encodeShortString('SN_SEPOLIA')
3336}
3437
3538export enum TransactionHashPrefix {
@@ -45,12 +48,14 @@ export const UDC = {
4548 ENTRYPOINT : 'deployContract' ,
4649} ;
4750
48- export const RPC_GOERLI_NODES = [
49- 'https://starknet-testnet.public.blastapi.io/rpc/v0.5' ,
50- 'https://limited-rpc.nethermind.io/goerli-juno/v0_5' ,
51- ] ;
52-
53- export const RPC_MAINNET_NODES = [
54- 'https://starknet-mainnet.public.blastapi.io/rpc/v0.5' ,
55- 'https://limited-rpc.nethermind.io/mainnet-juno/v0_5' ,
56- ] ;
51+ export const RPC_NODES = {
52+ SN_GOERLI : [
53+ 'https://starknet-testnet.public.blastapi.io/rpc/v0.5' ,
54+ 'https://limited-rpc.nethermind.io/goerli-juno/v0_5' ,
55+ ] ,
56+ SN_MAIN : [
57+ 'https://starknet-mainnet.public.blastapi.io/rpc/v0.5' ,
58+ 'https://limited-rpc.nethermind.io/mainnet-juno/v0_5' ,
59+ ] ,
60+ SN_SEPOLIA : [ ] ,
61+ } ;
0 commit comments