Skip to content

Commit

Permalink
Merge pull request #3935 from TrueBlocks/develop
Browse files Browse the repository at this point in the history
Version 4.0.2
  • Loading branch information
tjayrush authored Dec 17, 2024
2 parents d3055fa + 1b285da commit 38c3e76
Show file tree
Hide file tree
Showing 40 changed files with 51 additions and 50 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ This file details changes made to TrueBlocks over time. All version prior to ver
- Added `Scrape` and `ScrapeOnce` endpoints to the SDK.
- Now reflects new `chifra state --call/--send/--calldata syntax.
- Now reflects new `chifra config --dump` option.
- You should change all references in your code to use "github.com/TrueBlocks/trueblocks-sdk/v4"

## Changes to the Unchained Index Specification

Expand Down
2 changes: 1 addition & 1 deletion docs/content/sdks/go.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ toc: true

The GoLang SDK is in alpha.

The best documentation is available [here](https://pkg.go.dev/github.com/TrueBlocks/trueblocks-sdk/v3).
The best documentation is available [here](https://pkg.go.dev/github.com/TrueBlocks/trueblocks-sdk).
2 changes: 1 addition & 1 deletion node
2 changes: 1 addition & 1 deletion scripts/go-work-sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ find . -type f -name 'go.mod' | while read -r modfile; do
fi

if ! $isSdk && ! $isChifra && ! $isGoMaker && ! $isFourbyte && ! $isIndexMan && ! $isKeystore; then
go get github.com/TrueBlocks/trueblocks-sdk/v3@latest
go get github.com/TrueBlocks/trueblocks-sdk/v4@latest
fi

if ! $isChifra; then
Expand Down
2 changes: 1 addition & 1 deletion sdk
Submodule sdk updated 3 files
+2 −2 README.md
+1 −1 go.mod
+2 −2 go.sum
4 changes: 2 additions & 2 deletions src/apps/chifra/pkg/config/env_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ func Test_setByPath(t *testing.T) {
t.Fatal("wrong value", v)
}

if err := setByPath(&result, []string{"CONFIG", "VERSION", "CURRENT"}, "v3.0.0-release"); err != nil {
if err := setByPath(&result, []string{"CONFIG", "VERSION", "CURRENT"}, "v4.0.0"); err != nil {
t.Fatal(err)
}
if v := result.Version.Current; v != "v3.0.0-release" {
if v := result.Version.Current; v != "v4.0.0" {
t.Fatal("wrong value", v)
}

Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/goMaker/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module github.com/TrueBlocks/trueblocks-core/goMaker
go 1.23

require (
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165
github.com/gocarina/gocsv v0.0.0-20230123225133-763e25b40669
golang.org/x/text v0.21.0
)
Expand Down
4 changes: 2 additions & 2 deletions src/dev_tools/goMaker/go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f h1:OB/4JVCnSegsr6SRLPX0L6/i0q8zN6dZvihZ8ZEdxxY=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f/go.mod h1:ETpBauf/NX6mlhJYeMu+Md9HTBHZ/mny1qu4rh4km1s=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165 h1:spNMT7A/TyzRf47LkFJ1a87A6anSqo3eNaELi6spqNk=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165/go.mod h1:ETpBauf/NX6mlhJYeMu+Md9HTBHZ/mny1qu4rh4km1s=
github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A=
github.com/benbjohnson/clock v1.3.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
github.com/bykof/gostradamus v1.0.4 h1:77iq/tANg5rZSxjoZ98zepZbv3VrotijEmlnH/WycD4=
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/indexManager/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.23

replace github.com/TrueBlocks/trueblocks-core/sdk => ../../../sdk

require github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f
require github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165

require (
github.com/ethereum/go-ethereum v1.14.12 // indirect
Expand Down
4 changes: 2 additions & 2 deletions src/dev_tools/indexManager/go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f h1:OB/4JVCnSegsr6SRLPX0L6/i0q8zN6dZvihZ8ZEdxxY=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f/go.mod h1:ETpBauf/NX6mlhJYeMu+Md9HTBHZ/mny1qu4rh4km1s=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165 h1:spNMT7A/TyzRf47LkFJ1a87A6anSqo3eNaELi6spqNk=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165/go.mod h1:ETpBauf/NX6mlhJYeMu+Md9HTBHZ/mny1qu4rh4km1s=
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/ethereum/go-ethereum v1.14.12 h1:8hl57x77HSUo+cXExrURjU/w1VhL+ShCTJrTwcCQSe4=
github.com/ethereum/go-ethereum v1.14.12/go.mod h1:RAC2gVMWJ6FkxSPESfbshrcKpIokgQKsVKmAuqdekDY=
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/abis.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/blocks.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/chunks.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"

"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/explore.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/globals.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/colors"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

var fuzzAddresses = []string{"0x054993ab0f2b1acc0fdc65405ee203b4271bebe6"}
Expand Down
4 changes: 2 additions & 2 deletions src/dev_tools/sdkFuzzer/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ module github.com/TrueBlocks/trueblocks-core/sdkFuzzer
go 1.23

require (
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f
github.com/TrueBlocks/trueblocks-sdk/v3 v3.9.0
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165
github.com/TrueBlocks/trueblocks-sdk/v4 v4.0.0-20241217065958-a0b464ae73cb
)

require (
Expand Down
8 changes: 4 additions & 4 deletions src/dev_tools/sdkFuzzer/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERo
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f h1:OB/4JVCnSegsr6SRLPX0L6/i0q8zN6dZvihZ8ZEdxxY=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f/go.mod h1:ETpBauf/NX6mlhJYeMu+Md9HTBHZ/mny1qu4rh4km1s=
github.com/TrueBlocks/trueblocks-sdk/v3 v3.9.0 h1:5ekcTuR1cPWcr4GSHO15p3QtycaZyo095vKbiw3wYB4=
github.com/TrueBlocks/trueblocks-sdk/v3 v3.9.0/go.mod h1:KgHs6YTCCbQwOrT15Z1Zhi6H0on/PIlFr6aP/ktzL1w=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165 h1:spNMT7A/TyzRf47LkFJ1a87A6anSqo3eNaELi6spqNk=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165/go.mod h1:ETpBauf/NX6mlhJYeMu+Md9HTBHZ/mny1qu4rh4km1s=
github.com/TrueBlocks/trueblocks-sdk/v4 v4.0.0-20241217065958-a0b464ae73cb h1:sQQW+gFH0tHmYM+C4yuadzLsVnFtJUbqaFbGgoihMi8=
github.com/TrueBlocks/trueblocks-sdk/v4 v4.0.0-20241217065958-a0b464ae73cb/go.mod h1:Balp3Optm+9+vSQr14hFcw7c4akuAXx93WLhvRt5Srk=
github.com/VictoriaMetrics/fastcache v1.6.0/go.mod h1:0qHz5QP0GMX4pfmMA/zt5RgfNuXJrTP0zS7DqpHGGTw=
github.com/VictoriaMetrics/fastcache v1.12.2 h1:N0y9ASrJ0F6h0QaC3o6uJb3NIZ9VKLjCM7NQbSmF7WI=
github.com/VictoriaMetrics/fastcache v1.12.2/go.mod h1:AmC+Nzz1+3G2eCPapF6UcsnkThDcMsQicp4xDukwJYI=
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/monitors.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/names.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/receipts.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/save.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"os"

sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// SaveToFile writes the content of the slice to a file specified by fn.
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/slurp.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/tokens.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/traces.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/transactions.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/sdkFuzzer/when.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/file"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/types"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// EXISTING_CODE
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/testRunner/api_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/colors"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

var apiPort = ""
Expand Down
4 changes: 2 additions & 2 deletions src/dev_tools/testRunner/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ go 1.23
replace github.com/TrueBlocks/trueblocks-core/sdk => ../../../sdk

require (
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f
github.com/TrueBlocks/trueblocks-sdk/v3 v3.9.0
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165
github.com/TrueBlocks/trueblocks-sdk/v4 v4.0.0-20241217065958-a0b464ae73cb
)

require (
Expand Down
8 changes: 4 additions & 4 deletions src/dev_tools/testRunner/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERo
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f h1:OB/4JVCnSegsr6SRLPX0L6/i0q8zN6dZvihZ8ZEdxxY=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217061115-4a93860d585f/go.mod h1:ETpBauf/NX6mlhJYeMu+Md9HTBHZ/mny1qu4rh4km1s=
github.com/TrueBlocks/trueblocks-sdk/v3 v3.9.0 h1:5ekcTuR1cPWcr4GSHO15p3QtycaZyo095vKbiw3wYB4=
github.com/TrueBlocks/trueblocks-sdk/v3 v3.9.0/go.mod h1:KgHs6YTCCbQwOrT15Z1Zhi6H0on/PIlFr6aP/ktzL1w=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165 h1:spNMT7A/TyzRf47LkFJ1a87A6anSqo3eNaELi6spqNk=
github.com/TrueBlocks/trueblocks-core/src/apps/chifra v0.0.0-20241217071120-d3055faab165/go.mod h1:ETpBauf/NX6mlhJYeMu+Md9HTBHZ/mny1qu4rh4km1s=
github.com/TrueBlocks/trueblocks-sdk/v4 v4.0.0-20241217065958-a0b464ae73cb h1:sQQW+gFH0tHmYM+C4yuadzLsVnFtJUbqaFbGgoihMi8=
github.com/TrueBlocks/trueblocks-sdk/v4 v4.0.0-20241217065958-a0b464ae73cb/go.mod h1:Balp3Optm+9+vSQr14hFcw7c4akuAXx93WLhvRt5Srk=
github.com/VictoriaMetrics/fastcache v1.6.0/go.mod h1:0qHz5QP0GMX4pfmMA/zt5RgfNuXJrTP0zS7DqpHGGTw=
github.com/VictoriaMetrics/fastcache v1.12.2 h1:N0y9ASrJ0F6h0QaC3o6uJb3NIZ9VKLjCM7NQbSmF7WI=
github.com/VictoriaMetrics/fastcache v1.12.2/go.mod h1:AmC+Nzz1+3G2eCPapF6UcsnkThDcMsQicp4xDukwJYI=
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/testRunner/prepare.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/colors"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

func downloadAbis() error {
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/testRunner/run_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/colors"
"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger"
sdk "github.com/TrueBlocks/trueblocks-sdk/v3"
sdk "github.com/TrueBlocks/trueblocks-sdk/v4"
)

// SdkTest runs a test case through the SDK and returns the results in the provided bytes.Buffer
Expand Down

0 comments on commit 38c3e76

Please sign in to comment.