mppx 0.6.17 → 0.6.19
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/CHANGELOG.md +14 -0
- package/dist/cli/cli.d.ts +4 -0
- package/dist/cli/cli.d.ts.map +1 -1
- package/dist/cli/cli.js +230 -10
- package/dist/cli/cli.js.map +1 -1
- package/dist/cli/plugins/plugin.d.ts +5 -0
- package/dist/cli/plugins/plugin.d.ts.map +1 -1
- package/dist/cli/plugins/plugin.js.map +1 -1
- package/dist/cli/plugins/stripe.d.ts.map +1 -1
- package/dist/cli/plugins/stripe.js +7 -2
- package/dist/cli/plugins/stripe.js.map +1 -1
- package/dist/cli/plugins/tempo.d.ts.map +1 -1
- package/dist/cli/plugins/tempo.js +69 -9
- package/dist/cli/plugins/tempo.js.map +1 -1
- package/dist/cli/utils.d.ts +10 -2
- package/dist/cli/utils.d.ts.map +1 -1
- package/dist/cli/utils.js +11 -4
- package/dist/cli/utils.js.map +1 -1
- package/dist/tempo/server/Charge.js +2 -2
- package/dist/tempo/server/Charge.js.map +1 -1
- package/dist/tempo/session/Chain.d.ts.map +1 -1
- package/dist/tempo/session/Chain.js +3 -4
- package/dist/tempo/session/Chain.js.map +1 -1
- package/package.json +1 -1
- package/src/cli/cli.test.ts +120 -0
- package/src/cli/cli.ts +254 -10
- package/src/cli/mcp.test.ts +3 -0
- package/src/cli/plugins/plugin.ts +9 -1
- package/src/cli/plugins/stripe.ts +7 -0
- package/src/cli/plugins/tempo.ts +83 -12
- package/src/cli/utils.test.ts +12 -1
- package/src/cli/utils.ts +23 -5
- package/src/tempo/server/Charge.ts +2 -2
- package/src/tempo/session/Chain.ts +3 -5
|
@@ -606,8 +606,8 @@ export async function broadcastOpenTransaction(parameters: {
|
|
|
606
606
|
await call(client, {
|
|
607
607
|
...transaction,
|
|
608
608
|
account: transaction.from,
|
|
609
|
-
feeToken: resolvedFeeToken,
|
|
610
609
|
calls,
|
|
610
|
+
feePayerSignature: undefined,
|
|
611
611
|
} as never)
|
|
612
612
|
const txHash = await sendRawTransaction(client, {
|
|
613
613
|
serializedTransaction: serializedTransaction_final as Transaction.TransactionSerializedTempo,
|
|
@@ -625,8 +625,8 @@ export async function broadcastOpenTransaction(parameters: {
|
|
|
625
625
|
await call(client, {
|
|
626
626
|
...transaction,
|
|
627
627
|
account: transaction.from,
|
|
628
|
-
feeToken: resolvedFeeToken,
|
|
629
628
|
calls,
|
|
629
|
+
feePayerSignature: undefined,
|
|
630
630
|
} as never)
|
|
631
631
|
|
|
632
632
|
const receipt = await sendRawTransactionSync(client, {
|
|
@@ -762,10 +762,8 @@ export async function broadcastTopUpTransaction(parameters: {
|
|
|
762
762
|
await call(client, {
|
|
763
763
|
...transaction,
|
|
764
764
|
account: transaction.from,
|
|
765
|
-
feeToken:
|
|
766
|
-
transaction.feeToken ??
|
|
767
|
-
defaults.currency[client.chain?.id as keyof typeof defaults.currency],
|
|
768
765
|
calls,
|
|
766
|
+
feePayerSignature: undefined,
|
|
769
767
|
} as never)
|
|
770
768
|
|
|
771
769
|
const receipt = await sendRawTransactionSync(client, {
|