@clonegod/ttd-core 2.0.61 → 2.0.62
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.
- package/package.json +1 -1
- package/types/index.d.ts +5 -0
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -175,6 +175,11 @@ export interface TradeStrategyType {
|
|
|
175
175
|
// evm EIP-1559 交易类型
|
|
176
176
|
evm_max_gas_price_gwei: number // 0.01 Gwei 允许的gas price上限
|
|
177
177
|
evm_max_priority_fee_per_gas_gwei: number // 0.002 Gwei 允许的priority fee上限,需小于 max_gas_price_gwei
|
|
178
|
+
|
|
179
|
+
// sui
|
|
180
|
+
gas_price: number // default
|
|
181
|
+
gas_price_multiplier: number // default 1.2
|
|
182
|
+
gas_limit: number // max gas limit
|
|
178
183
|
}
|
|
179
184
|
|
|
180
185
|
|