fix EPrice type to be Amount

This commit is contained in:
Omar Khan
2022-08-30 16:29:49 -04:00
parent b8e4f2405a
commit ed7760c555
2 changed files with 2 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ export interface AMMDeposit extends BaseTransaction {
/**
* Specifies the maximum effective-price that LPToken can be traded out.
*/
EPrice?: number
EPrice?: Amount
}
/**

View File

@@ -51,7 +51,7 @@ export interface AMMWithdraw extends BaseTransaction {
* Specifies the effective-price of the token out after successful execution of
* the transaction.
*/
EPrice?: number
EPrice?: Amount
}
/**