-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[OTE-776] Implement GetAllRevshares (#2228)
- Loading branch information
Showing
6 changed files
with
642 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
package types | ||
|
||
import "math/big" | ||
|
||
type FillForProcess struct { | ||
TakerAddr string | ||
TakerFeeQuoteQuantums *big.Int | ||
MakerAddr string | ||
MakerFeeQuoteQuantums *big.Int | ||
FillQuoteQuantums *big.Int | ||
ProductId uint32 | ||
// MonthlyRollingTakerVolumeQuantums is the total taker volume for | ||
// the given taker address in the last 30 days. This rolling volume | ||
// does not include stats of the current block being processed. | ||
// If there are multiple fills for the taker address in the | ||
// same block, this volume will not be included in the function | ||
// below | ||
MonthlyRollingTakerVolumeQuantums uint64 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.