tact-lang / jetton

TEP-compatible, gas-efficient Jetton implementation in Tact

Repository from Github https://github.comtact-lang/jettonRepository from Github https://github.comtact-lang/jetton

Optimize receiver order in Jetton Minter for gas efficiency

Gusarich opened this issue · comments

Currently, the Jetton Minter in Base and Feature Rich implementations places the Mint receiver before ProvideWalletAddress and JettonBurnNotification. However, swapping the positions of Mint and ProvideWalletAddress would be more gas-efficient, as ProvideWalletAddress is likely to be called more frequently in practical use cases.

Part of #152