فهرست منبع

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

Joystream Stats 2 سال پیش
والد
کامیت
0ef70ad5a4
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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 });
 };