Skip to content

Commit eff38e7

Browse files
theekrystalleegitbook-bot
authored andcommitted
No subject
1 parent 9d433db commit eff38e7

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

core-concepts/accounts/auto-account-creation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,18 +104,18 @@ To update the hollow account into a complete account, the hollow account needs t
104104

105105
<summary><strong>Auto-create an account using a public key alias</strong></summary>
106106

107-
:black\_circle: [Java](https://github.com/hashgraph/hedera-sdk-java/blob/main/examples/src/main/java/com/hedera/hashgraph/sdk/examples/AccountAliasExample.java)\
108-
:black\_circle: [JavaScript](https://github.com/hashgraph/hedera-sdk-js/blob/develop/examples/account-alias.js)\
109-
:black\_circle: [Go](https://github.com/hashgraph/hedera-sdk-go/blob/develop/examples/alias_id_example/main.go)
107+
:black\_circle: [Java](https://github.com/hiero-ledger/hiero-sdk-java/blob/main/examples/src/main/java/com/hedera/hashgraph/sdk/examples/AccountAliasExample.java)\
108+
:black\_circle: [JavaScript](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/examples/account-alias.js)\
109+
:black\_circle: [Go](https://github.com/hiero-ledger/hiero-sdk-go/blob/main/examples/alias_id_example/main.go)
110110

111111
</details>
112112

113113
<details>
114114

115115
<summary><strong>Auto-create an account using an EVM address (public address) alias</strong></summary>
116116

117-
:black\_circle: [Java](https://github.com/hashgraph/hedera-sdk-java/blob/main/examples/src/main/java/com/hedera/hashgraph/sdk/examples/AutoCreateAccountTransferTransactionExample.java)\
118-
:black\_circle: [JavaScript](https://github.com/hashgraph/hedera-sdk-js/blob/develop/examples/transfer-using-evm-address.js)\
119-
:black\_circle: [Go](https://github.com/hashgraph/hedera-sdk-go/blob/develop/examples/account_create_token_transfer/main.go)
117+
:black\_circle: [Java](https://github.com/hiero-ledger/hiero-sdk-java/blob/main/examples/src/main/java/com/hedera/hashgraph/sdk/examples/AutoCreateAccountTransferTransactionExample.java)\
118+
:black\_circle: [JavaScript](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/examples/transfer-using-evm-address.js)\
119+
:black\_circle: [Go](https://github.com/hiero-ledger/hiero-sdk-go/blob/main/examples/account_create_token_transfer/main.go)
120120

121121
</details>

core-concepts/smart-contracts/understanding-hederas-evm-differences-and-compatibility/for-evm-developers-migrating-to-hedera/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This guide helps EVM developers understand key concepts and differences that imp
1414

1515
### Additional Resources
1616

17-
* [**Getting Started for EVM Developers**](https://docs.hedera.com/hedera/getting-started)
17+
* [**Getting Started for EVM Developers**](https://docs.hedera.com/hedera/getting-started-evm-developers)
1818
* [**JSON-RPC Documentation**](https://docs.hedera.com/hedera/core-concepts/smart-contracts/json-rpc-relay)
1919
* [**Mirror Node API Documentation**](https://docs.hedera.com/hedera/sdks-and-apis/rest-api)
20-
* [**Java SDK**](https://github.com/hashgraph/hedera-sdk-java)**,** [**Go SDK**](https://github.com/hashgraph/hedera-sdk-go)**,** [**JavaScript SDK**](https://github.com/hashgraph/hedera-sdk-js)
20+
* [**Java SDK**](https://github.com/hiero-ledger/hiero-sdk-java)**,** [**Go SDK**](https://github.com/hiero-ledger/hiero-sdk-go)**,** [**JavaScript SDK**](https://github.com/hiero-ledger/hiero-sdk-js)

getting-started-hedera-native-developers/create-a-token.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -446,11 +446,11 @@ client.close();
446446

447447
{% tab title="Go" %}
448448
```go
449-
// Wait for Mirror Node to populate data
449+
// wait for Mirror Node to populate data
450450
fmt.Println("Waiting for Mirror Node to update...")
451451
time.Sleep(3 * time.Second)
452452

453-
// Query balance using Mirror Node
453+
// query balance using Mirror Node
454454
mirrorNodeUrl := "https://testnet.mirrornode.hedera.com/api/v1/accounts/" +
455455
operatorId.String() + "/tokens?token.id=" + tokenId.String()
456456

@@ -805,7 +805,7 @@ Treasury holds: 100000 DEMO
805805

806806
* [Create a Topic](create-a-topic.md)
807807
* Try out our [3-part NFT tutorial](../tutorials/token/hedera-token-service-part-1-how-to-mint-nfts.md)
808-
* Explore more examples in the [JavaScript SDK repository](https://github.com/hiero-ledger/hiero-sdk-js)
808+
* Explore more examples in the SDK repos ([JavaScript](https://github.com/hiero-ledger/hiero-sdk-js), [Java](https://github.com/hiero-ledger/hiero-sdk-java), [Go](https://github.com/hiero-ledger/hiero-sdk-go))
809809

810810
***
811811

getting-started-hedera-native-developers/create-a-topic.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ client.close();
463463

464464
{% tab title="Go" %}
465465
```go
466-
// Wait for Mirror Node to populate data
466+
// wait for Mirror Node to populate data
467467
fmt.Println("Waiting for Mirror Node to update...\n")
468468
time.Sleep(3 * time.Second)
469469

@@ -849,9 +849,9 @@ Latest message: Hello, Hedera!
849849

850850
## Next steps
851851

852-
* **Subscribe** to the topic from your backend or front-end to process messages as they come in
853-
* **Encrypt** messages if you need privacy before publishing
854-
* **Explore more examples** in the SDK repos ([JavaScript](https://github.com/hiero-ledger/hiero-sdk-js), [Java](https://github.com/hiero-ledger/hiero-sdk-java), [Go](https://github.com/hiero-ledger/hiero-sdk-go))
852+
* Subscribe to the topic from your backend or front-end to process messages as they come in
853+
* Encrypt messages if you need privacy before publishing
854+
* Explore more examples in the SDK repos ([JavaScript](https://github.com/hiero-ledger/hiero-sdk-js), [Java](https://github.com/hiero-ledger/hiero-sdk-java), [Go](https://github.com/hiero-ledger/hiero-sdk-go))
855855

856856
***
857857

getting-started-hedera-native-developers/create-an-account.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ Build an `AccountCreateTransaction` with the _new public key_ and initial balanc
264264
```js
265265
// Build & execute the account creation transaction
266266
const transaction = new AccountCreateTransaction()
267-
.setECDSAKeyWithAlias(newPublicKey) // set the account key
268-
.setInitialBalance(new Hbar(20)); // fund with 20 HBAR
267+
.setECDSAKeyWithAlias(newPublicKey) // set the account key
268+
.setInitialBalance(new Hbar(20)); // fund with 20 HBAR
269269

270270
const txResponse = await transaction.execute(client);
271271
const receipt = await txResponse.getReceipt(client);
@@ -294,18 +294,18 @@ System.out.println("EVM Address: 0x" + newPublicKey.toEvmAddress());
294294

295295
{% tab title="Go" %}
296296
```go
297-
// Build & execute the account creation transaction
297+
// build & execute the account creation transaction
298298
transaction := hedera.NewAccountCreateTransaction().
299-
SetECDSAKeyWithAlias(newPublicKey). // set the account key
300-
SetInitialBalance(hedera.NewHbar(20)) // fund with 20 HBAR
299+
SetECDSAKeyWithAlias(newPublicKey). // set the account key
300+
SetInitialBalance(hedera.NewHbar(20)) // fund with 20 HBAR
301301

302-
// Execute the transaction and get response
302+
// execute the transaction and get response
303303
txResponse, err := transaction.Execute(client)
304304
if err != nil {
305305
panic(err)
306306
}
307307

308-
// Get the receipt to extract the new account ID
308+
// get the receipt to extract the new account ID
309309
receipt, err := txResponse.GetReceipt(client)
310310
if err != nil {
311311
panic(err)

0 commit comments

Comments
 (0)