Skip to content

Commit 9d433db

Browse files
theekrystalleegitbook-bot
authored andcommitted
Replace dependencies for Hedera Go SDK #164
1 parent 127166e commit 9d433db

10 files changed

+15
-15
lines changed

sdks-and-apis/sdks/set-up-your-local-network.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ package main
257257
import (
258258
"fmt"
259259

260-
"github.com/hashgraph/hedera-sdk-go/v2"
260+
hedera "github.com/hiero-ledger/hiero-sdk-go/v2/sdk"
261261
)
262262

263263
func main() {

tutorials/consensus/submit-message-to-private-topic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ import (
377377
"os"
378378
"time"
379379

380-
"github.com/hashgraph/hedera-sdk-go/v2"
380+
hedera "github.com/hiero-ledger/hiero-sdk-go/v2/sdk"
381381
"github.com/joho/godotenv"
382382
)
383383

tutorials/consensus/submit-your-first-message.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In short, HCS offers the validity of the order of events and transparency into t
1313
We recommend you complete the following introduction to get a basic understanding of Hedera transactions. This example does not build upon the previous examples.
1414

1515
1. Get a [Hedera testnet account](../more-tutorials/create-and-fund-your-hedera-testnet-account.md).
16-
2. Set up your environment [here](broken-reference).
16+
2. Set up your environment [here](../../getting-started-hedera-native-developers/quickstart.md).
1717

1818
_You can find a full_ [_code check_](submit-your-first-message.md#code-check) _for this tutorial at the bottom of this page._
1919

@@ -353,7 +353,7 @@ import (
353353
"os"
354354
"time"
355355

356-
"github.com/hashgraph/hedera-sdk-go/v2"
356+
hedera "github.com/hiero-ledger/hiero-sdk-go/v2/sdk"
357357
"github.com/joho/godotenv"
358358
)
359359

tutorials/token/create-and-transfer-an-nft-using-a-solidity-contract.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Besides creating NFTs using Hedera SDK, you can use a Solidity Contract to creat
1818
We recommend you complete the following introduction to get a basic understanding of Hedera transactions. This example does not build upon the previous examples.
1919

2020
1. Get a [Hedera testnet account](https://portal.hedera.com/register).
21-
2. Set up your environment [here](broken-reference).
21+
2. Set up your environment [here](../../getting-started-hedera-native-developers/quickstart.md).
2222

2323
If you are interested in creating, minting, and transferring NFTs using Hedera SDKs you can find the example [here](https://docs.hedera.com/guides/getting-started/try-examples/create-and-transfer-your-first-nft).
2424

@@ -768,7 +768,7 @@ import (
768768
"io/ioutil"
769769
"os"
770770

771-
"github.com/hashgraph/hedera-sdk-go/v2"
771+
hedera "github.com/hiero-ledger/hiero-sdk-go/v2/sdk"
772772
"github.com/joho/godotenv"
773773
)
774774

tutorials/token/create-and-transfer-your-first-fungible-token.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Fungible tokens share a single set of properties and have interchangeable value
1111
We recommend you complete the following introduction to get a basic understanding of Hedera transactions. This example does not build upon the previous examples.
1212

1313
1. Get a [Hedera testnet account](../more-tutorials/create-and-fund-your-hedera-testnet-account.md).
14-
2. Set up your environment [here](broken-reference).
14+
2. Set up your environment [here](../../getting-started-hedera-native-developers/quickstart.md).
1515

1616
***
1717

@@ -532,7 +532,7 @@ import (
532532
"fmt"
533533
"os"
534534

535-
"github.com/hashgraph/hedera-sdk-go/v2"
535+
hedera "github.com/hiero-ledger/hiero-sdk-go/v2/sdk"
536536
"github.com/joho/godotenv"
537537
)
538538

tutorials/token/create-and-transfer-your-first-nft.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Using the Hedera Token Service, you can create non-fungible tokens (NFTs). NFTs
1111
We recommend you complete the following introduction to get a basic understanding of Hedera transactions. This example does not build upon the previous examples.
1212

1313
1. Get a [Hedera testnet account](../more-tutorials/create-and-fund-your-hedera-testnet-account.md).
14-
2. Set up your environment [here](broken-reference).
14+
2. Set up your environment [here](../../getting-started-hedera-native-developers/quickstart.md).
1515

1616
***
1717

@@ -925,7 +925,7 @@ import (
925925
"fmt"
926926
"os"
927927

928-
"github.com/hashgraph/hedera-sdk-go/v2"
928+
hedera "github.com/hiero-ledger/hiero-sdk-go/v2/sdk"
929929
"github.com/joho/godotenv"
930930
)
931931

tutorials/token/create-your-first-frictionless-airdrop-campaign.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ import (
136136
"os"
137137
"time"
138138

139-
"github.com/hashgraph/hedera-sdk-go/v2"
139+
hedera "github.com/hiero-ledger/hiero-sdk-go/v2/sdk"2"
140140
"github.com/joho/godotenv"
141141
)
142142
@@ -1064,7 +1064,7 @@ import (
10641064
"os"
10651065
"time"
10661066
1067-
"github.com/hashgraph/hedera-sdk-go/v2"
1067+
hedera "github.com/hiero-ledger/hiero-sdk-go/v2/sdk"
10681068
"github.com/joho/godotenv"
10691069
)
10701070

tutorials/token/hedera-token-service-part-1-how-to-mint-nfts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ We will configure an NFT art collection for autumn images. With HTS, you can als
2020
We recommend you complete the following introduction to get a basic understanding of Hedera transactions. This example does not build upon the previous examples.
2121

2222
* Get a [Hedera testnet account](../more-tutorials/create-and-fund-your-hedera-testnet-account.md).
23-
* Set up your environment [here](broken-reference).
23+
* Set up your environment [here](../../getting-started-hedera-native-developers/quickstart.md).
2424

2525
_If you want the entire code used for this tutorial, skip to the_ [_Code Check_](hedera-token-service-part-1-how-to-mint-nfts.md#code-check) _section below._
2626

tutorials/token/hedera-token-service-part-2-kyc-update-and-scheduled-transactions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In [Part 1](hedera-token-service-part-1-how-to-mint-nfts.md) of the series, you
1313
We recommend you complete the following introduction to get a basic understanding of Hedera transactions. This example does not build upon the previous examples.
1414

1515
* Get a [Hedera testnet account](../more-tutorials/create-and-fund-your-hedera-testnet-account.md).
16-
* Set up your environment [here](broken-reference).
16+
* Set up your environment [here](../../getting-started-hedera-native-developers/quickstart.md).
1717

1818
_If you want the entire code used for this tutorial, skip to the_ [_Code Check_](hedera-token-service-part-2-kyc-update-and-scheduled-transactions.md#code-check) _section below._
1919

tutorials/token/hedera-token-service-part-3-how-to-pause-freeze-wipe-and-delete-nfts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In [Part 1](hedera-token-service-part-1-how-to-mint-nfts.md) of the series, you
1414
We recommend you complete the following introduction to get a basic understanding of Hedera transactions. This example does not build upon the previous examples.
1515

1616
* Get a [Hedera testnet account](../more-tutorials/create-and-fund-your-hedera-testnet-account.md).
17-
* Set up your environment [here](broken-reference).
17+
* Set up your environment [here](../../getting-started-hedera-native-developers/quickstart.md).
1818

1919
_If you want the entire code used for this tutorial, skip to the_ [_Code Check_](hedera-token-service-part-3-how-to-pause-freeze-wipe-and-delete-nfts.md#code-check) _section below._
2020

0 commit comments

Comments
 (0)