Lower gas amounts (need to test relayer)
This commit is contained in:
parent
7b08b99ea6
commit
444be0d3a8
|
@ -4,7 +4,6 @@
|
|||
"esModuleInterop": true
|
||||
},
|
||||
"files": [
|
||||
"scripts/swap-with-vaa.ts",
|
||||
"scripts/check-ust-quotes.ts"
|
||||
"scripts/swap-with-vaa.ts"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -9,14 +9,16 @@ import {
|
|||
} from "../utils/consts";
|
||||
|
||||
export const CROSSCHAINSWAP_GAS_PARAMETERS_EIP1559 = {
|
||||
gasLimit: "550000",
|
||||
maxFeePerGas: "250000000000",
|
||||
gasLimit: "694200",
|
||||
//maxFeePerGas: "250000000000",
|
||||
maxFeePerGas: "20420690000",
|
||||
maxPriorityFeePerGas: "1690000000",
|
||||
};
|
||||
|
||||
export const CROSSCHAINSWAP_GAS_PARAMETERS_EVM = {
|
||||
gasLimit: "550000",
|
||||
gasPrice: "250000000000",
|
||||
gasLimit: "694200",
|
||||
//gasPrice: "250000000000",
|
||||
gasPrice: "20420690000",
|
||||
};
|
||||
|
||||
export const EVM_EIP1559_CHAIN_IDS = [
|
||||
|
|
Loading…
Reference in New Issue