Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion java/src/main/java/org/tron/common/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public class Utils {

public static final int MIN_LENGTH = 2;
public static final int MAX_LENGTH = 14;
public static final String VERSION = " v4.10.0";
public static final String VERSION = " v4.10.1";
public static final String TRANSFER_METHOD_ID = "a9059cbb";

private static SecureRandom random = new SecureRandom();
Expand Down
18 changes: 9 additions & 9 deletions ts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tron-walletcli/wallet-cli",
"version": "0.2.0",
"version": "4.10.1",
"description": "Agent-first TypeScript CLI wallet for TRON — deterministic commands, JSON output, and discoverable schemas",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion ts/src/bootstrap/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { buildCli } from "../adapters/inbound/cli/shell/index.js"
import { hasCommand, parseGlobals } from "./argv.js"
import { composeCliRuntime } from "./composition.js"

export const VERSION = "0.2.0"
export const VERSION = "4.10.1"

/** Execute one CLI invocation. Dependency construction is delegated to the composition root. */
export async function main(argv: string[]): Promise<ExitCode> {
Expand Down
2 changes: 1 addition & 1 deletion ts/test/golden.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ describe("golden CLI — meta & introspection", () => {
it("--version prints the version, exit 0", () => {
const r = run(["--version"])
expect(r.status).toBe(0)
expect(r.stdout.trim()).toBe("0.2.0")
expect(r.stdout.trim()).toBe("4.10.1")
})

it("root --help shows the TRON first-release command surface", () => {
Expand Down
Loading