pump-trader 1.0.6 → 1.0.8
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/dist/index.js +2 -2
- package/index.js +1 -1
- package/index.ts +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -795,8 +795,8 @@ class PumpTrader {
|
|
|
795
795
|
DISCRIMINATORS.BUY,
|
|
796
796
|
u64(baseAmountOut),
|
|
797
797
|
u64(maxQuoteAmountIn),
|
|
798
|
-
//
|
|
799
|
-
Buffer.from([1
|
|
798
|
+
// Match Pump UI buy payload tail (1 byte)
|
|
799
|
+
Buffer.from([1])
|
|
800
800
|
])
|
|
801
801
|
});
|
|
802
802
|
}
|
package/index.js
CHANGED
package/index.ts
CHANGED
|
@@ -1263,8 +1263,8 @@ export class PumpTrader {
|
|
|
1263
1263
|
DISCRIMINATORS.BUY,
|
|
1264
1264
|
u64(baseAmountOut),
|
|
1265
1265
|
u64(maxQuoteAmountIn),
|
|
1266
|
-
//
|
|
1267
|
-
Buffer.from([1
|
|
1266
|
+
// Match Pump UI buy payload tail (1 byte)
|
|
1267
|
+
Buffer.from([1])
|
|
1268
1268
|
])
|
|
1269
1269
|
});
|
|
1270
1270
|
}
|