|
@@ -613,7 +613,13 @@ declare module '@polkadot/api/types/submittable' {
|
|
|
heartbeat: AugmentedSubmittable<(heartbeat: Heartbeat | { blockNumber?: any; networkState?: any; sessionIndex?: any; authorityIndex?: any; validatorsLen?: any } | string | Uint8Array, signature: Signature | string | Uint8Array) => SubmittableExtrinsic<ApiType>>;
|
|
|
};
|
|
|
members: {
|
|
|
- addScreenedMember: AugmentedSubmittable<(newMemberAccount: AccountId | string | Uint8Array, handle: Option<Bytes> | null | object | string | Uint8Array, avatarUri: Option<Bytes> | null | object | string | Uint8Array, about: Option<Bytes> | null | object | string | Uint8Array) => SubmittableExtrinsic<ApiType>>;
|
|
|
+ /**
|
|
|
+ * Screened members are awarded a initial locked balance that can only be slashed or used
|
|
|
+ * for fees, and is not transferable. The screening authority must ensure that the provided
|
|
|
+ * new_member_account was verified to avoid applying locks arbitrarily to accounts not controlled
|
|
|
+ * by the member.
|
|
|
+ **/
|
|
|
+ addScreenedMember: AugmentedSubmittable<(newMemberAccount: AccountId | string | Uint8Array, handle: Option<Bytes> | null | object | string | Uint8Array, avatarUri: Option<Bytes> | null | object | string | Uint8Array, about: Option<Bytes> | null | object | string | Uint8Array, initialBalance: Option<BalanceOf> | null | object | string | Uint8Array) => SubmittableExtrinsic<ApiType>>;
|
|
|
/**
|
|
|
* Non-members can buy membership
|
|
|
**/
|