four-flap-meme-sdk 1.4.46 → 1.4.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -386,8 +386,8 @@ export async function buildProfitHopTransactions(config) {
|
|
|
386
386
|
if (profitAmount <= 0n) {
|
|
387
387
|
return { signedTransactions: [], hopWallets: [], totalNonceUsed: 0 };
|
|
388
388
|
}
|
|
389
|
-
// 固定 gas limit
|
|
390
|
-
const nativeTransferGasLimit =
|
|
389
|
+
// 固定 gas limit(原生代币转账,预留少量缓冲)
|
|
390
|
+
const nativeTransferGasLimit = 21055n;
|
|
391
391
|
const gasFeePerHop = nativeTransferGasLimit * gasPrice;
|
|
392
392
|
// 生成中转钱包
|
|
393
393
|
const hopWallets = [];
|