hermes-v2-sdk
Version:
⚒️ An SDK for building applications on top of Hermes V2
17 lines (16 loc) • 478 B
TypeScript
/**
* Contains the parameters for the delegate action in bHermesVotes
* @param newDelegatee the address to delegate to
*/
export declare type TDelegateVotesParams = {
newDelegatee: string;
};
/**
* Contains the parameters for the undelegate action in bHermesVotes
* @param delegatee the address to undelegate from
* @param amount the amount to undelegate
*/
export declare type TUndelegateVotesParams = {
delegatee: string;
amount: string;
};