update references

This commit is contained in:
Iuri Matias 2020-01-17 15:45:31 -05:00 committed by Jakub Sokołowski
parent 76594575d9
commit 4655964bb5
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
12 changed files with 16 additions and 16 deletions

View File

@ -4,7 +4,7 @@ description: "Embark is a simple & powerful framework for decentralized applicat
author: Embark author: Embark
language: en language: en
url: https://embark.status.im url: https://embark.embarklabs.io
root: / root: /
permalink: news/:year/:month/:day/:title/ permalink: news/:year/:month/:day/:title/
code_dir: downloads/code code_dir: downloads/code

File diff suppressed because one or more lines are too long

View File

@ -11,7 +11,7 @@
description: A React Application showcasing Embark's functionality description: A React Application showcasing Embark's functionality
install: embark demo install: embark demo
thumbnail: react.png thumbnail: react.png
link: https://embark.status.im/docs/create_project.html#Creating-a-Demo-Project link: https://embark.embarklabs.io/docs/create_project.html#Creating-a-Demo-Project
tags: tags:
- react - react
- contracts - contracts

View File

@ -1,6 +1,6 @@
"latest": "latest":
label: "stable (v4)" label: "stable (v4)"
url: https://embark.status.im/docs url: https://embark.embarklabs.io/docs
"3.2": "3.2":
label: "v3.2" label: "v3.2"
url: https://5ca4e0fdb29712000adde37f--embark-site-versions.netlify.com/docs/ url: https://5ca4e0fdb29712000adde37f--embark-site-versions.netlify.com/docs/

View File

@ -11,7 +11,7 @@ Embark is now part of [Status](https://status.im/) and we are happy to announce
## New website and Documentation ## New website and Documentation
Embark has a new website and up to date documentation which can be found at https://embark.status.im/docs/ Embark has a new website and up to date documentation which can be found at https://embark.embarklabs.io/docs/
## More Smart Contract Languages ## More Smart Contract Languages

View File

@ -125,7 +125,7 @@ Starting with Embark 4 beta.1, Embark no longer supplies the Dapp with `Web3.js`
To continue using `Web3.js` inside the Embark 4 Dapp, execute the following command in the Embark console: `plugin install embarkjs-connector-web3`. To continue using `Web3.js` inside the Embark 4 Dapp, execute the following command in the Embark console: `plugin install embarkjs-connector-web3`.
This simply [installs `embarkjs-connector-web3` as a plugin](https://embark.status.im/docs/installing_plugins.html). Alternatively, this plugin can be installed manually by executing: This simply [installs `embarkjs-connector-web3` as a plugin](https://embark.embarklabs.io/docs/installing_plugins.html). Alternatively, this plugin can be installed manually by executing:
1. `yarn add embarkjs-connector-web3` or `npm install --save embarkjs-connector-web3` 1. `yarn add embarkjs-connector-web3` or `npm install --save embarkjs-connector-web3`
2. Adding `"embarkjs-connector-web3": {}` to the `plugins` section of `embark.json` 2. Adding `"embarkjs-connector-web3": {}` to the `plugins` section of `embark.json`
@ -133,11 +133,11 @@ It's as simple as that. This plugin will add the necessary commands and code for
## New Blockchain account configs ## New Blockchain account configs
Embark 4 adds some new blockchain account configurations. To try to keep things as simple as possible, these additions are really similar to the ones in the contract configuration. For more information, please read the [Accounts Blockchain configuration guide](https://embark.status.im/docs/blockchain_accounts_configuration.html) in our docs. Embark 4 adds some new blockchain account configurations. To try to keep things as simple as possible, these additions are really similar to the ones in the contract configuration. For more information, please read the [Accounts Blockchain configuration guide](https://embark.embarklabs.io/docs/blockchain_accounts_configuration.html) in our docs.
However, we did introduce some small breaking changes. We removed: However, we did introduce some small breaking changes. We removed:
- `account`: This is completely replaced by the new `accounts` property (notice the `s` at the end of `accounts`). It gives the developer more flexibility. To have exactly the same behavior as before, just use the `nodeAccounts` account type as [described in the docs](https://embark.status.im/docs/blockchain_accounts_configuration.md#parameter-descriptions) - `account`: This is completely replaced by the new `accounts` property (notice the `s` at the end of `accounts`). It gives the developer more flexibility. To have exactly the same behavior as before, just use the `nodeAccounts` account type as [described in the docs](https://embark.embarklabs.io/docs/blockchain_accounts_configuration.md#parameter-descriptions)
- `simulatorMnemonic`: Removed in favor of Ganache's default mnemonic. If this functionality is still needed, please specify the desired mnemonic in the [blockchain config's `mnemonic` account type](https://embark.status.im/docs/blockchain_accounts_configuration.md#parameter-descriptions). - `simulatorMnemonic`: Removed in favor of Ganache's default mnemonic. If this functionality is still needed, please specify the desired mnemonic in the [blockchain config's `mnemonic` account type](https://embark.embarklabs.io/docs/blockchain_accounts_configuration.md#parameter-descriptions).
## Conclusion ## Conclusion

View File

@ -11,7 +11,7 @@ After four months of development we're happy to tell you that we've released Emb
## New `beforeDeploy` hook ## New `beforeDeploy` hook
In Embark 4, we've introduced a handful of new [deployment hooks](https://embark.status.im/docs/contracts_configuration.html#Deployment-hooks) and with 4.1, we're expanding the APIs from there. The new `beforeDeploy` hook lets you run an action either before all of your Smart Contracts are getting deployed, or, selectively for a subset of them. In Embark 4, we've introduced a handful of new [deployment hooks](https://embark.embarklabs.io/docs/contracts_configuration.html#Deployment-hooks) and with 4.1, we're expanding the APIs from there. The new `beforeDeploy` hook lets you run an action either before all of your Smart Contracts are getting deployed, or, selectively for a subset of them.
Very similar to the existing deployment hooks, `beforeDeploy` is an asynchronous function that returns a promise and has access to a context object that provides dependencies that your function may or may not be interested in. Adding a `beforeDeploy` hook that runs before your Smart Contracts are being deployed is as simple as adding it to the `contracts` configuration like this: Very similar to the existing deployment hooks, `beforeDeploy` is an asynchronous function that returns a promise and has access to a context object that provides dependencies that your function may or may not be interested in. Adding a `beforeDeploy` hook that runs before your Smart Contracts are being deployed is as simple as adding it to the `contracts` configuration like this:
@ -64,7 +64,7 @@ The new `service` command lets you start and stop `api`, `webserver`, `blockchai
$ service <service> on/off $ service <service> on/off
``` ```
This works within Embark's command line Dashboard, as well as [Cockpit's dashboard](https://embark.status.im/docs/cockpit_dashboard.html). To learn more about Embark's interactive console and its command, head over to the [documentation](/docs/using_the_console.html#Enabling-and-disabling-processes). This works within Embark's command line Dashboard, as well as [Cockpit's dashboard](https://embark.embarklabs.io/docs/cockpit_dashboard.html). To learn more about Embark's interactive console and its command, head over to the [documentation](/docs/using_the_console.html#Enabling-and-disabling-processes).
## Accounts access inside tests ## Accounts access inside tests

View File

@ -166,7 +166,7 @@ myContract.deploy({
The above examples aren't supposed to be perfect continuous code, and should definitely *not* be copy/pasted into a production project, but they are there to show off roughly how `Web.js` works, and give an overview of interacting with the 2 main pieces of functionality, as I see them Wallets and Contracts. The above examples aren't supposed to be perfect continuous code, and should definitely *not* be copy/pasted into a production project, but they are there to show off roughly how `Web.js` works, and give an overview of interacting with the 2 main pieces of functionality, as I see them Wallets and Contracts.
In my next tutorial series, we will be utilising [Embark](https://embark.status.im/docs/quick_start.html), and therefore we'll be diving deeper into `web3.js`, and showing off much more of its potential. In my next tutorial series, we will be utilising [Embark](https://embark.embarklabs.io/docs/quick_start.html), and therefore we'll be diving deeper into `web3.js`, and showing off much more of its potential.
# Web.js in Other Languages # Web.js in Other Languages

View File

@ -8,7 +8,7 @@ layout: blog-post
If you've been following the development of Embark you're probably aware that we regularly put out alpha and beta releases for upcoming major or feature versions of Embark. In the past ~6 months since the release of Embark 4, we've published 10 alpha releases and one beta release for Embark 5 and today we're happy to announce the Embark 5 stable release! If you've been following the development of Embark you're probably aware that we regularly put out alpha and beta releases for upcoming major or feature versions of Embark. In the past ~6 months since the release of Embark 4, we've published 10 alpha releases and one beta release for Embark 5 and today we're happy to announce the Embark 5 stable release!
In this post we'll be looking at some of the main changes and features to get up and running with v5. Notice that we've add a [migration guide](https://embark.status.im/docs/migrating_from_3.x.html#Updating-to-v5) to our official docs as well. In this post we'll be looking at some of the main changes and features to get up and running with v5. Notice that we've add a [migration guide](https://embark.embarklabs.io/docs/migrating_from_3.x.html#Updating-to-v5) to our official docs as well.
## New Features ## New Features

View File

@ -34,7 +34,7 @@ module.exports = {
} }
``` ```
Similar to [configuring Smart Contracts](/docs/contracts_configuration.html), this config contains environments that help configuring certain parameters differently depending of the environment. You can read more about [environments here](https://embark.status.im/docs/environments.html). Similar to [configuring Smart Contracts](/docs/contracts_configuration.html), this config contains environments that help configuring certain parameters differently depending of the environment. You can read more about [environments here](https://embark.embarklabs.io/docs/environments.html).
### Parameter descriptions ### Parameter descriptions

View File

@ -14,7 +14,7 @@
<li class="o-list-bare__item"><a class="u-link-ghost" href="https://status.im/" target="_blank">Status</a></li> <li class="o-list-bare__item"><a class="u-link-ghost" href="https://status.im/" target="_blank">Status</a></li>
<li class="o-list-bare__item"><a class="u-link-ghost" href="https://keycard.tech/" target="_blank">Keycard</a></li> <li class="o-list-bare__item"><a class="u-link-ghost" href="https://keycard.tech/" target="_blank">Keycard</a></li>
<li class="o-list-bare__item"><a class="u-link-ghost" href="https://dap.ps/" target="_blank">dap.ps</a></li> <li class="o-list-bare__item"><a class="u-link-ghost" href="https://dap.ps/" target="_blank">dap.ps</a></li>
<li class="o-list-bare__item"><a class="u-link-ghost" href="https://embark.status.im/" target="_blank">Embark</a></li> <li class="o-list-bare__item"><a class="u-link-ghost" href="https://embark.embarklabs.io/" target="_blank">Embark</a></li>
<li class="o-list-bare__item"><a class="u-link-ghost" href="https://subspace.status.im/" target="_blank">Subspace</a></li> <li class="o-list-bare__item"><a class="u-link-ghost" href="https://subspace.status.im/" target="_blank">Subspace</a></li>
<li class="o-list-bare__item"><a class="u-link-ghost" href="https://vac.dev/" target="_blank">Vac</a></li> <li class="o-list-bare__item"><a class="u-link-ghost" href="https://vac.dev/" target="_blank">Vac</a></li>
</ul> </ul>

View File

@ -1,6 +1,6 @@
{ {
"name": "Embark", "name": "Embark",
"description": "embark.status.im", "description": "embark.embarklabs.io",
"version": "0.0.0", "version": "0.0.0",
"dependencies": { "dependencies": {
"browser-sync": "^2.26.3", "browser-sync": "^2.26.3",