Files
atomic-swap/ethereum/consts.go
2023-04-30 17:36:31 -05:00

16 lines
513 B
Go

package contracts
// Gas prices for our operations. Most of these are set by the highest value we
// ever see in a test, so you would need to adjust upwards a little to use as a
// gas limit. We use these values to estimate minimum required balances.
const (
MaxNewSwapETHGas = 50589
MaxNewSwapTokenGas = 86218
MaxSetReadyGas = 31872
MaxClaimETHGas = 43349
MaxClaimTokenGas = 47522
MaxRefundETHGas = 43120
MaxRefundTokenGas = 47282
MaxTokenApproveGas = 47000 // 46223 with our contract
)