UNPKG
@bombearn/sdk
Version:
latest (3.0.3)
3.0.3
3.0.2
3.0.1
Interaction framework for the yearn protocol
@bombearn/sdk
/
dist
/
types
/
custom
/
votingEscrow.d.ts
8 lines
(7 loc)
•
275 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Address
,
Milliseconds
}
from
"../common"
;
export
declare
type
VotingEscrowTransactionType
=
"LOCK"
|
"ADD"
|
"EXTEND"
;
export
interface
VotingEscrowUserMetadata
{
assetAddress
:
Address
;
unlockDate
?:
Milliseconds
;
earlyExitPenaltyRatio
?:
number
; }