Parcourir la source

api: connectApi defaults to `ws://localhost:9944`

Joystream Stats il y a 2 ans
Parent
commit
0ef70ad5a4
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      api.ts

+ 1 - 1
api.ts

@@ -49,7 +49,7 @@ import { WorkerId, Worker } from "@joystream/types/working-group";
 import { ProposalOf, ProposalDetailsOf } from "@joystream/types/augment/types";
 import { WorkerOf } from "@joystream/types/augment-codec/all";
 
-export const connectApi = async (url: string): Promise<ApiPromise> => {
+export const connectApi = async (url: string = "ws://localhost:9944"): Promise<ApiPromise> => {
   const provider = new WsProvider(url);
   return await ApiPromise.create({ provider, types });
 };