@moonwell-fi/moonwell-sdk
Version:
TypeScript Interface for Moonwell
21 lines • 653 B
TypeScript
import type { Amount } from "../common/index.js";
export type UserVotingPowers = {
chainId: number;
totalDelegated: Amount;
totalDelegatedSelf: Amount;
totalDelegatedOthers: Amount;
tokenBalance: Amount;
tokenDelegated: Amount;
tokenDelegatedSelf: Amount;
tokenDelegatedOthers: Amount;
tokenUndelegated: Amount;
claimsBalance: Amount;
claimsDelegated: Amount;
claimsDelegatedSelf: Amount;
claimsDelegatedOthers: Amount;
claimsUndelegated: Amount;
stakingDelegated: Amount;
tokenDelegates: `0x${string}`;
claimsDelegates: `0x${string}`;
};
//# sourceMappingURL=userVotingPowers.d.ts.map