Rename ark-sdk > ark/pkg/client-sdk (#236)

This commit is contained in:
Marco Argentieri
2024-08-09 17:46:42 +02:00
committed by GitHub
parent ff28f00730
commit 059e837794
51 changed files with 118 additions and 118 deletions

View File

@@ -5,13 +5,13 @@ import (
"strings"
"testing"
"github.com/ark-network/ark-sdk/client"
"github.com/ark-network/ark-sdk/store"
inmemorystore "github.com/ark-network/ark-sdk/store/inmemory"
"github.com/ark-network/ark-sdk/wallet"
singlekeywallet "github.com/ark-network/ark-sdk/wallet/singlekey"
inmemorywalletstore "github.com/ark-network/ark-sdk/wallet/singlekey/store/inmemory"
"github.com/ark-network/ark/common"
"github.com/ark-network/ark/pkg/client-sdk/client"
"github.com/ark-network/ark/pkg/client-sdk/store"
inmemorystore "github.com/ark-network/ark/pkg/client-sdk/store/inmemory"
"github.com/ark-network/ark/pkg/client-sdk/wallet"
singlekeywallet "github.com/ark-network/ark/pkg/client-sdk/wallet/singlekey"
inmemorywalletstore "github.com/ark-network/ark/pkg/client-sdk/wallet/singlekey/store/inmemory"
"github.com/btcsuite/btcd/btcec/v2"
"github.com/stretchr/testify/require"
)