@@ -29,6 +29,19 @@ export const makeParity = (numerator, denominatorBrand) => {
29
29
return makeRatio ( value , numerator . brand , value , denominatorBrand ) ;
30
30
} ;
31
31
32
+ /**
33
+ * @typedef {{
34
+ * deposit: {
35
+ * give: { USDC: Amount<'nat'> },
36
+ * want?: { PoolShare: Amount<'nat'> }
37
+ * },
38
+ * withdraw: {
39
+ * give: { PoolShare: Amount<'nat'> }
40
+ * want: { USDC: Amount<'nat'> },
41
+ * }
42
+ * }} USDCProposalShapes
43
+ */
44
+
32
45
/**
33
46
* Compute Shares payout from a deposit proposal, as well as updated shareWorth.
34
47
*
@@ -51,77 +64,53 @@ export const makeParity = (numerator, denominatorBrand) => {
51
64
* Shares = ToPool / shareWorth
52
65
*
53
66
* @param {ShareWorth } shareWorth previous to the deposit
54
- * @param {Amount<'nat'> } ToPool as in give.ToPool
55
- * @param {Amount<'nat'> } [wantShares] as in want.Shares
56
- * @returns {{ Shares: Amount<'nat'>; shareWorth: ShareWorth } }
67
+ * @param {USDCProposalShapes['deposit'] } proposal
68
+ * @returns {{ payouts: { PoolShare: Amount<'nat'> }; shareWorth: ShareWorth } }
57
69
*/
58
- export const deposit = ( shareWorth , ToPool , wantShares ) => {
59
- assert ( ! isEmpty ( ToPool ) ) ; // nice diagnostic provided by proposalShape
70
+ export const deposit = ( shareWorth , { give , want } ) => {
71
+ assert ( ! isEmpty ( give . USDC ) ) ; // nice diagnostic provided by proposalShape
60
72
61
73
const { denominator : sharesOutstanding , numerator : poolBalance } = shareWorth ;
62
74
63
- const Shares = divideBy ( ToPool , shareWorth ) ; // TODO: floorDivideBy???
64
- if ( wantShares ) {
65
- isGTE ( Shares , wantShares ) ||
66
- Fail `deposit cannot pay out ${ q ( wantShares ) } ; ${ q ( ToPool ) } only gets ${ q ( Shares ) } ` ;
75
+ const PoolShare = divideBy ( give . USDC , shareWorth ) ; // TODO: floorDivideBy???
76
+ if ( want ?. PoolShare ) {
77
+ isGTE ( PoolShare , want . PoolShare ) ||
78
+ Fail `deposit cannot pay out ${ q ( want . PoolShare ) } ; ${ q ( give . USDC ) } only gets ${ q ( PoolShare ) } ` ;
67
79
}
68
- const outstandingPost = add ( sharesOutstanding , Shares ) ;
69
- const balancePost = add ( poolBalance , ToPool ) ;
80
+ const outstandingPost = add ( sharesOutstanding , PoolShare ) ;
81
+ const balancePost = add ( poolBalance , give . USDC ) ;
70
82
const worthPost = makeRatioFromAmounts ( balancePost , outstandingPost ) ;
71
- return harden ( { Shares , shareWorth : worthPost } ) ;
83
+ return harden ( { payouts : { PoolShare } , shareWorth : worthPost } ) ;
72
84
} ;
73
85
74
- /**
75
- * @param {Record<'pool' | 'lp' | 'mint', ZCFSeat> } seats
76
- * @param {Record<'Shares' | 'ToPool', Amount<'nat'>> } amounts
77
- * @returns {TransferPart[] }
78
- */
79
- export const depositTransfers = ( seats , { ToPool, Shares } ) =>
80
- harden ( [
81
- [ seats . lp , seats . pool , { ToPool } , { Pool : ToPool } ] ,
82
- [ seats . mint , seats . lp , { Shares } ] ,
83
- ] ) ;
86
+ const isGT = ( x , y ) => isGTE ( x , y ) && ! isEqual ( x , y ) ;
84
87
85
88
/**
86
89
* Compute payout from a withdraw proposal, along with updated shareWorth
87
90
*
88
91
* @param {ShareWorth } shareWorth
89
- * @param {Amount<'nat'> } Shares from give
90
- * @param {Amount<'nat'> } FromPool from want
91
- * @returns {{ shareWorth: ShareWorth, FromPool: Amount<'nat'> } }
92
+ * @param {USDCProposalShapes['withdraw'] } proposal
93
+ * @returns {{ shareWorth: ShareWorth, payouts: { USDC: Amount<'nat'> }} }
92
94
*/
93
- export const withdraw = ( shareWorth , Shares , FromPool ) => {
94
- assert ( ! isEmpty ( Shares ) ) ;
95
- assert ( ! isEmpty ( FromPool ) ) ;
95
+ export const withdraw = ( shareWorth , { give , want } ) => {
96
+ assert ( ! isEmpty ( give . PoolShare ) ) ;
97
+ assert ( ! isEmpty ( want . USDC ) ) ;
96
98
97
- const payout = multiplyBy ( Shares , shareWorth ) ;
98
- isGTE ( payout , FromPool ) ||
99
- Fail `cannot withdraw ${ q ( FromPool ) } ; ${ q ( Shares ) } only worth ${ q ( payout ) } ` ;
99
+ const payout = multiplyBy ( give . PoolShare , shareWorth ) ;
100
+ isGTE ( payout , want . USDC ) ||
101
+ Fail `cannot withdraw ${ q ( want . USDC ) } ; ${ q ( give . PoolShare ) } only worth ${ q ( payout ) } ` ;
100
102
const { denominator : sharesOutstanding , numerator : poolBalance } = shareWorth ;
101
- isGTE ( poolBalance , FromPool ) ||
102
- Fail `cannot withdraw ${ q ( FromPool ) } ; only ${ q ( poolBalance ) } in pool` ;
103
- ! isEqual ( FromPool , poolBalance ) ||
104
- Fail `cannot withdraw ${ q ( FromPool ) } ; pool cannot be empty` ;
103
+ isGT ( poolBalance , want . USDC ) ||
104
+ Fail `cannot withdraw ${ q ( want . USDC ) } ; only ${ q ( poolBalance ) } in pool` ;
105
105
const balancePost = subtract ( poolBalance , payout ) ;
106
106
// giving more shares than are outstanding is impossible,
107
107
// so it's not worth a custom diagnostic. subtract will fail
108
- const outstandingPost = subtract ( sharesOutstanding , Shares ) ;
108
+ const outstandingPost = subtract ( sharesOutstanding , give . PoolShare ) ;
109
109
110
110
const worthPost = makeRatioFromAmounts ( balancePost , outstandingPost ) ;
111
- return harden ( { shareWorth : worthPost , FromPool : payout } ) ;
111
+ return harden ( { shareWorth : worthPost , payouts : { USDC : payout } } ) ;
112
112
} ;
113
113
114
- /**
115
- * @param {Record<'pool' | 'lp' | 'burn', ZCFSeat> } seats
116
- * @param {Record<'Shares' | 'FromPool', Amount<'nat'>> } amounts
117
- * @returns {TransferPart[] }
118
- */
119
- export const withdrawTransfers = ( seats , { Shares, FromPool } ) =>
120
- harden ( [
121
- [ seats . pool , seats . lp , { Pool : FromPool } , { FromPool } ] ,
122
- [ seats . lp , seats . burn , { Shares } ] ,
123
- ] ) ;
124
-
125
114
/**
126
115
* @param {ShareWorth } shareWorth
127
116
* @param {Amount<'nat'> } fees
@@ -130,11 +119,3 @@ export const withFees = (shareWorth, fees) => {
130
119
const balancePost = add ( shareWorth . numerator , fees ) ;
131
120
return makeRatioFromAmounts ( balancePost , shareWorth . denominator ) ;
132
121
} ;
133
-
134
- /**
135
- * @param {Record<'fees' | 'pool', ZCFSeat> } seats
136
- * @param {Record<'Fees', Amount<'nat'>> } amounts
137
- * @returns {TransferPart[] }
138
- */
139
- export const feeTransfers = ( seats , { Fees } ) =>
140
- harden ( [ [ seats . fees , seats . pool , { Fees } ] ] ) ;
0 commit comments