gasConstants property

RouterGasConstants gasConstants
getter/setter pair

Implementation

static RouterGasConstants gasConstants = RouterGasConstants(
  swapJettonToJetton: GasPair(
    gasAmount: Nano.fromString("0.22"),
    forwardGasAmount: Nano.fromString("0.175"),
  ),
  swapJettonToTon: GasPair(
    gasAmount: Nano.fromString("0.17"),
    forwardGasAmount: Nano.fromString("0.125"),
  ),
  swapTonToJetton: GasPair(
    forwardGasAmount: Nano.fromString("0.185"),
  ),
  provideLpJetton: GasPair(
    gasAmount: Nano.fromString("0.3"),
    forwardGasAmount: Nano.fromString("0.24"),
  ),
  provideLpTon: GasPair(
    forwardGasAmount: Nano.fromString("0.26"),
  ),
);