diff --git a/package.json b/package.json index 8f7bd9e8..4b9cd34c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@across-protocol/sdk", "author": "UMA Team", - "version": "3.4.1", + "version": "3.4.2", "license": "AGPL-3.0", "homepage": "https://docs.across.to/reference/sdk", "files": [ diff --git a/src/gasPriceOracle/adapters/linea-viem.ts b/src/gasPriceOracle/adapters/linea-viem.ts index 68df19af..3e258aca 100644 --- a/src/gasPriceOracle/adapters/linea-viem.ts +++ b/src/gasPriceOracle/adapters/linea-viem.ts @@ -30,7 +30,7 @@ export async function eip1559( const { baseFeePerGas, priorityFeePerGas: _priorityFeePerGas } = await estimateGas(provider, { account: (unsignedTx?.from as Address) ?? account, to: (unsignedTx?.to as Address) ?? account, - value: BigInt(unsignedTx?.value?.toString() ?? "1"), + value: BigInt(unsignedTx?.value?.toString() ?? "0"), data: (unsignedTx?.data as Hex) ?? "0x", }); const priorityFeePerGas =