RevokeInput
type RevokeInput<TAccountSource, TAccountOwner> = {
multiSigners?: TransactionSigner[];
owner: Address<TAccountOwner> | TransactionSigner<TAccountOwner>;
source: Address<TAccountSource>;
};Type Parameters
| Type Parameter | Default type |
|---|---|
TAccountSource extends string | string |
TAccountOwner extends string | string |
Properties
multiSigners?
optional multiSigners: TransactionSigner[];owner
owner: Address<TAccountOwner> | TransactionSigner<TAccountOwner>;The source account owner or its multisignature.
source
source: Address<TAccountSource>;The source account.