Selaa lähdekoodia

getPaidMembershipTermsById

Joystream Stats 2 vuotta sitten
vanhempi
commit
dd6872ca55
1 muutettua tiedostoa jossa 7 lisäystä ja 0 poistoa
  1. 7 0
      api.ts

+ 7 - 0
api.ts

@@ -501,6 +501,13 @@ export const getValidators = async (
   return snapshot.isSome ? snapshot.unwrap() : [];
 };
 
+export const getPaidMembershipTermsById = (
+  api: ApiPromise,
+  hash: Hash,
+  id: PaidTermId | number
+): Promise<PaidMembershipTerms> => api.query.members.paidMembershipTermsById.at(hash, id);
+
+
 // media
 export const getNextEntity = async (
   api: ApiPromise,