aiprotocol-sbi 1.2.6 → 1.2.7
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/LICENSE +11 -0
- package/dist/setup.command.js +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Your Name
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
...
|
package/dist/setup.command.js
CHANGED
|
@@ -131,7 +131,7 @@ let SetupCommand = class SetupCommand {
|
|
|
131
131
|
this.output.row("Payment Token", token);
|
|
132
132
|
this.output.row("Required Amount", requiredAmount);
|
|
133
133
|
this.output.blank();
|
|
134
|
-
this.output.info("
|
|
134
|
+
this.output.info("Approve these funds using 'Approve Script'");
|
|
135
135
|
if (appStatus?.status === "SUCCESS") {
|
|
136
136
|
this.output.success("✅ Payment confirmed! Your agent is funded.");
|
|
137
137
|
this.output.info("aiprotocol-sbi economy launch");
|
|
@@ -213,7 +213,7 @@ let SetupCommand = class SetupCommand {
|
|
|
213
213
|
this.output.row("Wallet", wallet.address);
|
|
214
214
|
this.output.row("Network", network);
|
|
215
215
|
this.output.row("Required Amount", requiredAmount);
|
|
216
|
-
this.output.info("After sending,
|
|
216
|
+
this.output.info("After sending, approve these funds using 'Approve Script'");
|
|
217
217
|
this.output.info("Verify payment using: aiprotocol-sbi payment verify");
|
|
218
218
|
process.exit(0);
|
|
219
219
|
}
|