From 65706a8a935a3d2ca176308df3f05500bf37a52c Mon Sep 17 00:00:00 2001 From: Robert Zaremba Date: Fri, 2 Sep 2022 18:39:46 +0200 Subject: [PATCH] adding fee stats table --- ante/fee-notes.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 ante/fee-notes.md diff --git a/ante/fee-notes.md b/ante/fee-notes.md new file mode 100644 index 0000000000..41b42ab678 --- /dev/null +++ b/ante/fee-notes.md @@ -0,0 +1,46 @@ +# Notes about Gas prices and gas used + +NOTES: + +- the gas used depends on the current state of the chain +- the gas records below are based on the empty state + +| operation | gas used | +| :--------------------------------------------- | -------: | +| x/bank send | 31029 | +| x/group create | 68908 | +| x/oracle MsgAggregateExchangeRateVote (3 curr) | 66251 | +| default gas limit | 200000 | + +### Target price (in USD cent) for x/bank send + +| umee price (usd cent) | gas price in uumee | fee (usd cent) | +| --------------------: | -----------------: | -------------: | +| 2 | 0.2 | 0.0124 | +| 2 | 0.1 | 0.0062 | +| 2 | 0.02 | 0.00124 | +| 5 | 0.2 | 0.031 | +| 5 | 0.1 | 0.0155 | +| 5 | 0.02 | 0.0031 | + +### Target price (in USD cent) for MsgAggregateExchangeRateVote + +| umee price (usd cent) | gas price in uumee | fee (usd cent) | +| --------------------: | -----------------: | -------------: | +| 2 | 0.2 | 0.0124 | +| 2 | 0.1 | 0.0062 | +| 2 | 0.02 | 0.00124 | +| 5 | 0.2 | 0.031 | +| 5 | 0.1 | 0.0155 | +| 5 | 0.02 | 0.0031 | + +### Target price (in USD) for default gas limit + +| umee price (usd cent) | gas price in uumee | fee (usd cent) | +| --------------------: | -----------------: | -------------: | +| 2 | 0.2 | 0.08 | +| 2 | 0.1 | 0.04 | +| 2 | 0.02 | 0.008 | +| 5 | 0.2 | 0.2 | +| 5 | 0.1 | 0.1 | +| 5 | 0.02 | 0.02 |