diff --git a/.changeset/poor-bugs-develop.md b/.changeset/poor-bugs-develop.md new file mode 100644 index 00000000..1980dce7 --- /dev/null +++ b/.changeset/poor-bugs-develop.md @@ -0,0 +1,7 @@ +--- +"create-aldea": patch +"@aldea/cli": patch +"@aldea/sdk": patch +--- + +Updated hard coded host name to node.aldeacomputer.com diff --git a/README.md b/README.md index 301b356c..52a58a32 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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. diff --git a/docs/.vitepress/store/files.ts b/docs/.vitepress/store/files.ts index 9ab3c9e9..ab4c4926 100644 --- a/docs/.vitepress/store/files.ts +++ b/docs/.vitepress/store/files.ts @@ -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() diff --git a/docs/tutorial/basics/cli.md b/docs/tutorial/basics/cli.md index 78fe411e..083998ca 100644 --- a/docs/tutorial/basics/cli.md +++ b/docs/tutorial/basics/cli.md @@ -27,7 +27,7 @@ files: this.$lock.freeze() } } - + open: 'aldea/potion.ts' --- @@ -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! 🎉 diff --git a/docs/tutorial/basics/txbuilder.md b/docs/tutorial/basics/txbuilder.md index bb49b3cc..31cd90fe 100644 --- a/docs/tutorial/basics/txbuilder.md +++ b/docs/tutorial/basics/txbuilder.md @@ -146,7 +146,7 @@ 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? @@ -154,4 +154,4 @@ Congratulations! You have begun building on the Aldea Computer. You have created 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). \ No newline at end of file +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). diff --git a/dokku/docs/deploy.sh b/dokku/docs/deploy.sh index fc4e612b..541a0677 100755 --- a/dokku/docs/deploy.sh +++ b/dokku/docs/deploy.sh @@ -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` diff --git a/dokku/mocknet/deploy.sh b/dokku/mocknet/deploy.sh index f659b484..e57cc7ba 100755 --- a/dokku/mocknet/deploy.sh +++ b/dokku/mocknet/deploy.sh @@ -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` diff --git a/dokku/sdk-docs/deploy.sh b/dokku/sdk-docs/deploy.sh index c7c406bb..6afae0d4 100755 --- a/dokku/sdk-docs/deploy.sh +++ b/dokku/sdk-docs/deploy.sh @@ -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` diff --git a/packages/cli/src/config.ts b/packages/cli/src/config.ts index 89ab6c82..71d9a49c 100644 --- a/packages/cli/src/config.ts +++ b/packages/cli/src/config.ts @@ -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', } diff --git a/packages/create-aldea/README.md b/packages/create-aldea/README.md index 2ca6ffb6..68825a7b 100644 --- a/packages/create-aldea/README.md +++ b/packages/create-aldea/README.md @@ -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 diff --git a/packages/create-aldea/templates/default/aldea.config.cjs b/packages/create-aldea/templates/default/aldea.config.cjs index 9111fcc0..1a979334 100644 --- a/packages/create-aldea/templates/default/aldea.config.cjs +++ b/packages/create-aldea/templates/default/aldea.config.cjs @@ -1,5 +1,5 @@ /** @type {import('@aldea/cli').Config} */ module.exports = { codeDir: 'aldea', - nodeUrl: 'https://node.aldea.computer' + nodeUrl: 'https://node.aldeacomputer.com' } diff --git a/packages/sdk/README.md b/packages/sdk/README.md index 8a21a570..05c8040a 100644 --- a/packages/sdk/README.md +++ b/packages/sdk/README.md @@ -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)