v0.2.2 balance peek endpoint

This commit is contained in:
local
2026-05-11 21:34:31 -05:00
parent c9f051cd07
commit 07fe14010c
4 changed files with 70 additions and 2 deletions
+3 -2
View File
@@ -2,8 +2,9 @@ import { VersionGraph } from '@start9labs/start-sdk'
import { v_0_1_0 } from './v0.1.0'
import { v_0_2_0 } from './v0.2.0'
import { v_0_2_1 } from './v0.2.1'
import { v_0_2_2 } from './v0.2.2'
export const versionGraph = VersionGraph.of({
current: v_0_2_1,
other: [v_0_2_0, v_0_1_0],
current: v_0_2_2,
other: [v_0_2_1, v_0_2_0, v_0_1_0],
})