Skip to content

Commit

Permalink
update domain name
Browse files Browse the repository at this point in the history
  • Loading branch information
lebrunel committed Oct 2, 2024
1 parent 938da11 commit 64de157
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 14 deletions.
7 changes: 7 additions & 0 deletions .changeset/poor-bugs-develop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"create-aldea": patch
"@aldea/cli": patch
"@aldea/sdk": patch
---

Updated hard coded host name to node.aldeacomputer.com
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

> Build the future with programmable digital objects
The [Aldea Computer](https://aldea.computer) is a new Layer-1 blockchain built for the metaverse.
The [Aldea Computer](https://aldeacomputer.com) is a new Layer-1 blockchain built for the metaverse.

- 🤗 Human-friendly developer experience
- 💻 Programmable digital objects
Expand All @@ -14,7 +14,7 @@ The [Aldea Computer](https://aldea.computer) is a new Layer-1 blockchain built f

This monorepo contains JavaScript tools and packages used by developers to build on and interact with the Aldea Computer.

[Read the Docs to learn more](https://docs.aldea.computer/).
[Read the Docs to learn more](https://docs.aldeacomputer.com/).

**🚨 Warning**: Aldea is in early development. We are interating heavily on the design and function of the blockchain and expect frequent breaking changes. This software is not ready for general use.

Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/store/files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const aldeaConfigStr = `
/** @type {import('@aldea/cli').Config} */
module.exports = {
codeDir: 'aldea',
nodeUrl: 'https://node.aldea.computer'
nodeUrl: 'https://node.aldeacomputer.com'
}
`.trim()

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorial/basics/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ files:
this.$lock.freeze()
}
}
open: 'aldea/potion.ts'
---

Expand Down Expand Up @@ -91,7 +91,7 @@ aldea deploy potion.ts

Remember, every change to the Aldea Computer blockchain happens through a transaction. In this case, the CLI created a transaction that deployed a new package containing your `Potion` class, funded the transaction using a coin from your wallet, and committed the transaction to the blockchain.

The deploy command responds with both a Transaction ID and Package ID. You can copy either of these values and search for them on [the Aldea Explorer](https://explorer.aldea.computer).
The deploy command responds with both a Transaction ID and Package ID. You can copy either of these values and search for them on [the Aldea Explorer](https://explorer.aldeacomputer.com).

Congratulations on deploying your first package! 🎉

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorial/basics/txbuilder.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,12 @@ Insert all the `TxBuilder` code into the placeholder in `scripts/tx.js` (or clic
node scripts/tx
```

The script will provide the transaction ID and the output ID of the mixed `Potion` instance. You can copy these values and search for them on [the Aldea Explorer](https://explorer.aldea.computer).
The script will provide the transaction ID and the output ID of the mixed `Potion` instance. You can copy these values and search for them on [the Aldea Explorer](https://explorer.aldeacomputer.com).

## What's next?

Congratulations! You have begun building on the Aldea Computer. You have created and deployed code on the blockchain and created a transaction that interacts with your code.

These lessons are just the beginning, introducing the basic programming model of Aldea. Even if you have no prior experience with blockchain, hopefully Aldea's programming model feels natural, or even familiar.

We are developing additional lessons that will expand your knowledge with intermediate and advanced concepts. In the meantime, you can learn more by exploring our [learning resources](/learn/about-aldea) and [API documentation](/api/sdk/modules).
We are developing additional lessons that will expand your knowledge with intermediate and advanced concepts. In the meantime, you can learn more by exploring our [learning resources](/learn/about-aldea) and [API documentation](/api/sdk/modules).
2 changes: 1 addition & 1 deletion dokku/docs/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GIT_REMOTES=`git remote | grep dokku-docs`

if [[ -z "$GIT_REMOTES" ]]
then
git remote add dokku-docs dokku@demos.aldea.computer:docs
git remote add dokku-docs dokku@demos.aldeacomputer.com:docs
fi

REPO_CHANGES=`git status -s`
Expand Down
2 changes: 1 addition & 1 deletion dokku/mocknet/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GIT_REMOTES=`git remote | grep dokku-node`

if [[ -z "$GIT_REMOTES" ]]
then
git remote add dokku-node dokku@node.aldea.computer:node
git remote add dokku-node dokku@node.aldeacomputer.com:node
fi

REPO_CHANGES=`git status -s`
Expand Down
2 changes: 1 addition & 1 deletion dokku/sdk-docs/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GIT_REMOTES=`git remote | grep dokku-sdk-docs`

if [[ -z "$GIT_REMOTES" ]]
then
git remote add dokku-sdk-docs dokku@demos.aldea.computer:sdk-docs
git remote add dokku-sdk-docs dokku@demos.aldeacomputer.com:sdk-docs
fi

REPO_CHANGES=`git status -s`
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export interface Config {
export const defaultConfig: Config = {
codeDir: '.',
walletDir: '.aldea',
//nodeUrl: 'https://node.aldea.computer',
//nodeUrl: 'https://node.aldeacomputer.com',
nodeUrl: 'http://localhost:4000',
}
2 changes: 1 addition & 1 deletion packages/create-aldea/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ yarn create aldea my-project

## Tutorial

Once setup, follow through the [walkthrough in the Aldea documentation](https://docs.aldea.computer/getting-started/starter-kit) to begin deploying your own code and experimenting with the Aldea Computer.
Once setup, follow through the [walkthrough in the Aldea documentation](https://docs.aldeacomputer.com/getting-started/starter-kit) to begin deploying your own code and experimenting with the Aldea Computer.

## License

Expand Down
2 changes: 1 addition & 1 deletion packages/create-aldea/templates/default/aldea.config.cjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** @type {import('@aldea/cli').Config} */
module.exports = {
codeDir: 'aldea',
nodeUrl: 'https://node.aldea.computer'
nodeUrl: 'https://node.aldeacomputer.com'
}
2 changes: 1 addition & 1 deletion packages/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Connect to your own or a public node to interface with the Aldea Computer.
```ts
import { Aldea } from '@aldea/sdk'

const aldea = new Aldea('https://node.aldea.computer')
const aldea = new Aldea('https://node.aldeacomputer.com')

// Examples
const tx = await aldea.getTx(txid)
Expand Down

0 comments on commit 64de157

Please sign in to comment.