@clonegod/ttd-sol-common 1.0.106 → 1.0.108

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.
@@ -21,7 +21,7 @@ var jito_tip_floor;
21
21
  const jito_tip_stats_url = process.env.JITO_TIP_FEE_STATS_URL || 'https://bundles.jito.wtf/api/v1/bundles/tip_floor';
22
22
  const JITO_TIP_DEFAULT = 0.00018;
23
23
  const JITO_TIP_MIN = 0.00008;
24
- const JITO_TIP_MAX = 0.0008;
24
+ const JITO_TIP_MAX = 0.001;
25
25
  function get_jito_tip_floor() {
26
26
  return __awaiter(this, void 0, void 0, function* () {
27
27
  try {
@@ -57,7 +57,7 @@ function get_latest_jito_tip(speed, fee_max_cap) {
57
57
  if (tip_sol > JITO_TIP_MAX) {
58
58
  tip_sol = JITO_TIP_MAX;
59
59
  }
60
- let tip_lamports = Math.ceil((tip_sol * 1.2) * web3_js_1.LAMPORTS_PER_SOL);
60
+ let tip_lamports = Math.ceil((tip_sol * 1.01) * web3_js_1.LAMPORTS_PER_SOL);
61
61
  if (tip_lamports > fee_max_cap) {
62
62
  tip_lamports = fee_max_cap;
63
63
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clonegod/ttd-sol-common",
3
- "version": "1.0.106",
3
+ "version": "1.0.108",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "types/index.d.ts",