pyre-world-kit 1.0.13 → 1.0.14
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/actions.js +1 -1
- package/package.json +1 -1
- package/src/actions.ts +1 -1
package/dist/actions.js
CHANGED
|
@@ -337,7 +337,7 @@ async function defect(connection, params) {
|
|
|
337
337
|
}
|
|
338
338
|
/** "Said in" — micro buy (0.001 SOL) + message. Routes through bonding curve or DEX automatically. */
|
|
339
339
|
async function messageFaction(connection, params) {
|
|
340
|
-
const MICRO_BUY_LAMPORTS =
|
|
340
|
+
const MICRO_BUY_LAMPORTS = 1_000_000; // 0.001 SOL
|
|
341
341
|
if (params.ascended) {
|
|
342
342
|
return (0, torchsdk_1.buildVaultSwapTransaction)(connection, {
|
|
343
343
|
mint: params.mint,
|
package/package.json
CHANGED
package/src/actions.ts
CHANGED
|
@@ -499,7 +499,7 @@ export async function messageFaction(
|
|
|
499
499
|
connection: Connection,
|
|
500
500
|
params: MessageFactionParams,
|
|
501
501
|
): Promise<TransactionResult> {
|
|
502
|
-
const MICRO_BUY_LAMPORTS =
|
|
502
|
+
const MICRO_BUY_LAMPORTS = 1_000_000; // 0.001 SOL
|
|
503
503
|
if (params.ascended) {
|
|
504
504
|
return buildVaultSwapTransaction(connection, {
|
|
505
505
|
mint: params.mint,
|