mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-26 04:15:29 +00:00
chore: update site urls
This commit is contained in:
parent
f5db7fe88d
commit
d328b9953a
@ -2,5 +2,5 @@
|
||||
|
||||
> Basic DApp template for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -6,6 +6,6 @@
|
||||
</head>
|
||||
<body>
|
||||
<h3>Welcome to Embark!</h3>
|
||||
<p>See the <a href="https://embark.status.im/docs/quick_start.html" target="_blank">Embark's documentation</a> to see what you can do with Embark!</p>
|
||||
<p>See the <a href="https://framework.embarklabs.io/docs/quick_start.html" target="_blank">Embark's documentation</a> to see what you can do with Embark!</p>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,5 +1,5 @@
|
||||
// This file contains only the basic configuration you need to run Embark's node
|
||||
// For additional configurations, see: https://embark.status.im/docs/blockchain_configuration.html
|
||||
// For additional configurations, see: https://framework.embarklabs.io/docs/blockchain_configuration.html
|
||||
module.exports = {
|
||||
// default applies to all environments
|
||||
default: {
|
||||
@ -16,7 +16,7 @@ module.exports = {
|
||||
privatenet: {
|
||||
// Accounts to use as node accounts
|
||||
// The order here corresponds to the order of `web3.eth.getAccounts`, so the first one is the `defaultAccount`
|
||||
// For more account configurations, see: https://embark.status.im/docs/blockchain_accounts_configuration.html
|
||||
// For more account configurations, see: https://framework.embarklabs.io/docs/blockchain_accounts_configuration.html
|
||||
accounts: [
|
||||
{
|
||||
nodeAccounts: true, // Accounts use for the node
|
||||
|
@ -4,12 +4,12 @@ const SimpleStorage = require('Embark/contracts/SimpleStorage');
|
||||
|
||||
let accounts;
|
||||
|
||||
// For documentation please see https://embark.status.im/docs/contracts_testing.html
|
||||
// For documentation please see https://framework.embarklabs.io/docs/contracts_testing.html
|
||||
config({
|
||||
//deployment: {
|
||||
// accounts: [
|
||||
// // you can configure custom accounts with a custom balance
|
||||
// // see https://embark.status.im/docs/contracts_testing.html#Configuring-accounts
|
||||
// // see https://framework.embarklabs.io/docs/contracts_testing.html#Configuring-accounts
|
||||
// ]
|
||||
//},
|
||||
contracts: {
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Demo DApp for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -1,5 +1,5 @@
|
||||
// This file contains only the basic configuration you need to run Embark's node
|
||||
// For additional configurations, see: https://embark.status.im/docs/blockchain_configuration.html
|
||||
// For additional configurations, see: https://framework.embarklabs.io/docs/blockchain_configuration.html
|
||||
module.exports = {
|
||||
// default applies to all environments
|
||||
default: {
|
||||
@ -16,7 +16,7 @@ module.exports = {
|
||||
privatenet: {
|
||||
// Accounts to use as node accounts
|
||||
// The order here corresponds to the order of `web3.eth.getAccounts`, so the first one is the `defaultAccount`
|
||||
// For more account configurations, see: https://embark.status.im/docs/blockchain_accounts_configuration.html
|
||||
// For more account configurations, see: https://framework.embarklabs.io/docs/blockchain_accounts_configuration.html
|
||||
accounts: [
|
||||
{
|
||||
nodeAccounts: true, // Accounts use for the node
|
||||
|
@ -3,12 +3,12 @@ const SimpleStorage = require('Embark/contracts/SimpleStorage');
|
||||
|
||||
let accounts;
|
||||
|
||||
// For documentation please see https://embark.status.im/docs/contracts_testing.html
|
||||
// For documentation please see https://framework.embarklabs.io/docs/contracts_testing.html
|
||||
config({
|
||||
//blockchain: {
|
||||
// accounts: [
|
||||
// // you can configure custom accounts with a custom balance
|
||||
// // see https://embark.status.im/docs/contracts_testing.html#Configuring-accounts
|
||||
// // see https://framework.embarklabs.io/docs/contracts_testing.html#Configuring-accounts
|
||||
// ]
|
||||
//},
|
||||
contracts: {
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Contracts-only DApp template for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -4,12 +4,12 @@ const SimpleStorage = require('Embark/contracts/SimpleStorage');
|
||||
|
||||
let accounts;
|
||||
|
||||
// For documentation please see https://embark.status.im/docs/contracts_testing.html
|
||||
// For documentation please see https://framework.embarklabs.io/docs/contracts_testing.html
|
||||
config({
|
||||
//deployment: {
|
||||
// accounts: [
|
||||
// // you can configure custom accounts with a custom balance
|
||||
// // see https://embark.status.im/docs/contracts_testing.html#Configuring-accounts
|
||||
// // see https://framework.embarklabs.io/docs/contracts_testing.html#Configuring-accounts
|
||||
// ]
|
||||
//},
|
||||
contracts: {
|
||||
|
@ -12,5 +12,5 @@
|
||||
|
||||
`embark test` to see tests are working as expected.
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -1,5 +1,5 @@
|
||||
// This file contains only the basic configuration you need to run Embark's node
|
||||
// For additional configurations, see: https://embark.status.im/docs/blockchain_configuration.html
|
||||
// For additional configurations, see: https://framework.embarklabs.io/docs/blockchain_configuration.html
|
||||
module.exports = {
|
||||
// default applies to all environments
|
||||
default: {
|
||||
@ -22,7 +22,7 @@ module.exports = {
|
||||
privatenet: {
|
||||
// Accounts to use as node accounts
|
||||
// The order here corresponds to the order of `web3.eth.getAccounts`, so the first one is the `defaultAccount`
|
||||
// For more account configurations, see: https://embark.status.im/docs/blockchain_accounts_configuration.html
|
||||
// For more account configurations, see: https://framework.embarklabs.io/docs/blockchain_accounts_configuration.html
|
||||
accounts: [
|
||||
{
|
||||
nodeAccounts: true, // Accounts use for the node
|
||||
|
@ -10,7 +10,7 @@ config({
|
||||
blockchain: {
|
||||
accounts: [
|
||||
// you can configure custom accounts with a custom balance
|
||||
// see https://embark.status.im/docs/contracts_testing.html#Configuring-accounts
|
||||
// see https://framework.embarklabs.io/docs/contracts_testing.html#Configuring-accounts
|
||||
{
|
||||
privateKey: "random",
|
||||
balance: "10 ether"
|
||||
|
@ -12,5 +12,5 @@
|
||||
|
||||
`embark test` to see tests are working as expected.
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Test plugin for integration testing purposes
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Embark api module
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Web frontend for interactive DApp development with Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -204,7 +204,7 @@ class Layout extends React.Component {
|
||||
<React.Fragment>
|
||||
<NavItem>
|
||||
<NavLink id="open-documentation"
|
||||
href="https://embark.status.im"
|
||||
href="https://framework.embarklabs.io"
|
||||
title="Documentation"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank">
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Code execution VM for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Console component for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -197,7 +197,7 @@ export default class Console {
|
||||
if (pluginResult !== false && pluginResult !== "false" && pluginResult !== undefined) {
|
||||
this.logger.warn("[DEPRECATED] In future versions of embark, we expect the console command to return an object " +
|
||||
"having 2 functions: match and process." +
|
||||
" The documentation with example can be found here: https://embark.status.im/docs/plugin_reference.html#embark-registerConsoleCommand-callback-options");
|
||||
" The documentation with example can be found here: https://framework.embarklabs.io/docs/plugin_reference.html#embark-registerConsoleCommand-callback-options");
|
||||
return callback(null, pluginResult);
|
||||
}
|
||||
} else if (pluginResult.match()) {
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Core library for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -33,7 +33,7 @@ const constants = readJsonSync(path.join(__dirname, '../constants.json'));
|
||||
|
||||
const DEFAULT_CONFIG_PATH = 'config/';
|
||||
|
||||
const embark5ChangesUrl = 'https://embark.status.im/docs/migrating_from_3.x.html#Updating-to-v5';
|
||||
const embark5ChangesUrl = 'https://framework.embarklabs.io/docs/migrating_from_3.x.html#Updating-to-v5';
|
||||
|
||||
export class Config {
|
||||
|
||||
@ -445,7 +445,7 @@ export class Config {
|
||||
this.shownNoAccountConfigMsg = true;
|
||||
}
|
||||
|
||||
const accountDocsMessage = __('For more info, check the docs: %s', 'https://embark.status.im/docs/blockchain_accounts_configuration.html'.underline);
|
||||
const accountDocsMessage = __('For more info, check the docs: %s', 'https://framework.embarklabs.io/docs/blockchain_accounts_configuration.html'.underline);
|
||||
if (this.blockchainConfig.account) {
|
||||
this.logger.error(__('The `account` config for the blockchain was removed. Please use `accounts` instead.'));
|
||||
this.logger.error(accountDocsMessage);
|
||||
|
@ -238,7 +238,7 @@ export class Plugin {
|
||||
registerConsoleCommand(optionsOrCb) {
|
||||
if (typeof optionsOrCb === 'function') {
|
||||
this.logger.warn(__('Registering console commands with function syntax is deprecated and will likely be removed in future versions of Embark'));
|
||||
this.logger.info(__('You can find the new API documentation here: %s', 'https://embark.status.im/docs/plugin_reference.html#registerConsoleCommand-options'.underline));
|
||||
this.logger.info(__('You can find the new API documentation here: %s', 'https://framework.embarklabs.io/docs/plugin_reference.html#registerConsoleCommand-options'.underline));
|
||||
}
|
||||
this.console.push(optionsOrCb);
|
||||
this.addPluginType('console');
|
||||
|
@ -62,7 +62,7 @@ export class TemplateGenerator {
|
||||
|
||||
downloadFailed() {
|
||||
console.error('Does the template really exist?'.red);
|
||||
console.error(`Embark's supported templates: https://embark.status.im/templates/`.green);
|
||||
console.error(`Embark's supported templates: https://framework.embarklabs.io/templates/`.green);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
@ -159,7 +159,7 @@ export class TemplateGenerator {
|
||||
console.log(__('Next steps:').green);
|
||||
console.log(('-> ' + ('cd ' + fspath).bold.cyan).green);
|
||||
console.log('-> '.green + 'embark run'.bold.cyan);
|
||||
console.log(__('For more info go to http://embark.status.im').green);
|
||||
console.log(__('For more info go to http://framework.embarklabs.io').green);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Engine library for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> i18n support for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -140,7 +140,7 @@
|
||||
"Webserver is offline": "Webserver is offline",
|
||||
"DApp path length is too long: \"": "DApp path length is too long: \"",
|
||||
"This is known to cause issues with some applications, please consider reducing your DApp path's length to 66 characters or less.": "This is known to cause issues with some applications, please consider reducing your DApp path's length to 66 characters or less.",
|
||||
"For more info go to http://embark.status.im": "For more info go to http://embark.status.im",
|
||||
"For more info go to http://framework.embarklabs.io": "For more info go to http://framework.embarklabs.io",
|
||||
"Cannot upload: {{platform}} node is not running on {{protocol}}://{{host}}{{port}}.": "Cannot upload: {{platform}} node is not running on {{protocol}}://{{host}}{{port}}.",
|
||||
"DApp path length is too long: ": "DApp path length is too long: ",
|
||||
"WARNING! DApp path length is too long: ": "WARNING! DApp path length is too long: ",
|
||||
|
@ -93,7 +93,7 @@
|
||||
"App ready at ": "Aplicación lista en ",
|
||||
"Next steps:": "Próximos pasos:",
|
||||
"open another console in the same directory and run": "abrir otra consola en el mismo directorio y ejecutar",
|
||||
"For more info go to http://embark.status.im": "Para mayor información ir a http://embark.status.im",
|
||||
"For more info go to http://framework.embarklabs.io": "Para mayor información ir a http://framework.embarklabs.io",
|
||||
"%s : instanceOf is set to itself": "%s : instanceOf se establece a sí mismo",
|
||||
"{{className}} has code associated to it but it's configured as an instanceOf {{parentContractName}}": "{{className}} tiene código asociado pero está configurado como una instancia de {{parentContractName}}",
|
||||
"Error Compiling/Building contracts: ": "Error Compilando/Construyendo los contratos: ",
|
||||
|
@ -93,7 +93,7 @@
|
||||
"App ready at ": "Application prête à ",
|
||||
"Next steps:": "Prochaines étapes:",
|
||||
"open another console in the same directory and run": "ouvrir une autre console dans le même répertoire et exécutez",
|
||||
"For more info go to http://embark.status.im": "Pour plus d'informations, rendez-vous sur http://embark.status.im",
|
||||
"For more info go to http://framework.embarklabs.io": "Pour plus d'informations, rendez-vous sur http://framework.embarklabs.io",
|
||||
"%s : instanceOf is set to itself": "%s : instanceOf est défini sur lui-même",
|
||||
"{{className}} has code associated to it but it's configured as an instanceOf {{parentContractName}}": "{{className}} a du code associé, mais il est configuré comme une instanceOf {{parentContractName}}",
|
||||
"Error Compiling/Building contracts: ": "Erreur lors de la compilation/construction des contrats: ",
|
||||
|
@ -93,7 +93,7 @@
|
||||
"App ready at ": "Aplicativo disponivel em ",
|
||||
"Next steps:": "Próximos passos:",
|
||||
"open another console in the same directory and run": "abra outro console no mesmo directório e execute",
|
||||
"For more info go to http://embark.status.im": "Mais informações em http://embark.status.im",
|
||||
"For more info go to http://framework.embarklabs.io": "Mais informações em http://framework.embarklabs.io",
|
||||
"%s : instanceOf is set to itself": "%s : instanceOf está definido para si",
|
||||
"{{className}} has code associated to it but it's configured as an instanceOf {{parentContractName}}": "{{className}} tem código associado a si, porém está configurado como instanceOf {{parentContractName}}",
|
||||
"Error Compiling/Building contracts: ": "Erro ao Compilar/Construir contratos: ",
|
||||
|
@ -140,7 +140,7 @@
|
||||
"Webserver is offline": "Spletni strežnik ni dosegljiv",
|
||||
"DApp path length is too long: \"": "DApp pot je predolga: \"",
|
||||
"This is known to cause issues with some applications, please consider reducing your DApp path's length to 66 characters or less.": "To bo povzročilo težave z nekaterimi aplikacijami. Zmanjšajte DApp pot na največ 66 znakov.",
|
||||
"For more info go to http://embark.status.im": "Za več informacij obiščite http://embark.status.im",
|
||||
"For more info go to http://framework.embarklabs.io": "Za več informacij obiščite http://framework.embarklabs.io",
|
||||
"Cannot upload: {{platform}} node is not running on {{protocol}}://{{host}}{{port}}.": "Napaka pri nalaganju: {{platform}} node ni zagnan na {{protocol}}://{{host}}{{port}}.",
|
||||
"DApp path length is too long: ": "DApp pot je predolga: ",
|
||||
"WARNING! DApp path length is too long: ": "OPOZORILO! DApp pot je predolga: ",
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Logger utilities for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> DApp reset utlity for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Utils used by Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -165,7 +165,7 @@ export default class AccountParser {
|
||||
return null;
|
||||
}
|
||||
logger.error(__('Unsupported account configuration: %s' ,JSON.stringify(accountConfig)));
|
||||
logger.error(__('Check the docs at %s', 'https://embark.status.im/docs/contracts_deployment.html#Using-accounts-in-a-wallet'.underline));
|
||||
logger.error(__('Check the docs at %s', 'https://framework.embarklabs.io/docs/contracts_deployment.html#Using-accounts-in-a-wallet'.underline));
|
||||
return ERROR_ACCOUNT;
|
||||
}
|
||||
}
|
||||
|
@ -101,7 +101,7 @@ export function getExternalContractUrl(file: string, providerUrl: string) {
|
||||
const MALFORMED_SWARM_ERROR = 'Malformed Swarm gateway URL for ';
|
||||
const MALFORMED_ERROR = 'Malformed Github URL for ';
|
||||
const MALFORMED_IPFS_ERROR = 'Malformed IPFS URL for ';
|
||||
const IPFS_GETURL_NOTAVAILABLE = 'IPFS getUrl is not available. Please set it in your storage config. For more info: https://embark.status.im/docs/storage_configuration.html';
|
||||
const IPFS_GETURL_NOTAVAILABLE = 'IPFS getUrl is not available. Please set it in your storage config. For more info: https://framework.embarklabs.io/docs/storage_configuration.html';
|
||||
if (file.startsWith('https://github')) {
|
||||
const file_path = file.match(/https:\/\/github\.[a-z]+\/(.*)/);
|
||||
if (!file_path) {
|
||||
|
@ -45,4 +45,4 @@ With Embark you can:
|
||||
$ npm -g install embark
|
||||
```
|
||||
|
||||
See [Complete Documentation](https://embark.status.im/docs/).
|
||||
See [Complete Documentation](https://framework.embarklabs.io/docs/).
|
||||
|
@ -419,7 +419,7 @@ class Cmd {
|
||||
.command('help')
|
||||
.description(__('output usage information and help information'))
|
||||
.action(function () {
|
||||
console.log("Documentation can be found at: ".green + "https://embark.status.im/docs/".underline.green);
|
||||
console.log("Documentation can be found at: ".green + "https://framework.embarklabs.io/docs/".underline.green);
|
||||
console.log("");
|
||||
console.log("Have an issue? submit it here: ".green + "https://github.com/embarklabs/embark/issues/new".underline.green);
|
||||
console.log("or chat with us directly at: ".green + "https://gitter.im/embark-framework/Lobby".underline.green);
|
||||
|
@ -206,7 +206,7 @@ class EmbarkController {
|
||||
});
|
||||
|
||||
engine.events.on('outputDone', function () {
|
||||
engine.logger.info((__("Looking for documentation? You can find it at") + " ").cyan + "http://embark.status.im/docs/".green.underline + ".".cyan);
|
||||
engine.logger.info((__("Looking for documentation? You can find it at") + " ").cyan + "http://framework.embarklabs.io/docs/".green.underline + ".".cyan);
|
||||
engine.logger.info(__("Ready").underline);
|
||||
engine.events.emit("status", __("Ready").green);
|
||||
});
|
||||
@ -425,7 +425,7 @@ class EmbarkController {
|
||||
});
|
||||
|
||||
engine.events.on('outputDone', function () {
|
||||
engine.logger.info((__("Looking for documentation? You can find it at") + " ").cyan + "http://embark.status.im/docs/".green.underline + ".".cyan);
|
||||
engine.logger.info((__("Looking for documentation? You can find it at") + " ").cyan + "http://framework.embarklabs.io/docs/".green.underline + ".".cyan);
|
||||
engine.logger.info(__("Ready").underline);
|
||||
engine.events.emit("status", __("Ready").green);
|
||||
});
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> JavaScript library for easily interacting with web3 technologies
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -195,7 +195,7 @@ Blockchain.doConnect = function(connectionList, opts, doneCb) {
|
||||
(typeof window !== 'undefined' && window.ethereum && window.ethereum.isMetaMask)) {
|
||||
console.warn("%cNote: Embark has detected you are in the development environment and using Metamask, please make sure Metamask is connected to your local node", "font-size: 2em");
|
||||
if(opts.blockchainClient === 'parity') {
|
||||
console.warn("%cNote: Parity blocks the connection from browser extensions like Metamask. To resolve this problem, go to https://embark.status.im/docs/blockchain_configuration.html#Using-Parity-and-Metamask", "font-size: 2em");
|
||||
console.warn("%cNote: Parity blocks the connection from browser extensions like Metamask. To resolve this problem, go to https://framework.embarklabs.io/docs/blockchain_configuration.html#Using-Parity-and-Metamask", "font-size: 2em");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> embarkjs plugin to interact with ens
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Ipfs plugin for embarkjs
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Swarm plugin for embarkjs
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Web3 plugin for embarkjs
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Whisper plugin for embarkjs
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -3,5 +3,5 @@
|
||||
> Embark account manager. Takes the blockchain config and, along with the
|
||||
> proxy, makes sure to send back the correct accounts
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
> Basic pipeline for Embark that builds a DApp's frontend assets using webpack
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
||||
Contracts in `test/fixture/contracts` are from [OpenZeppelin](https://github.com/OpenZeppelin/openzeppelin-solidity) and [Gnosis Prediction Markets](https://github.com/gnosis/pm-contracts)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
> Code coverage capabilities for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
||||
Contracts in `test/fixture/contracts` are from [OpenZeppelin](https://github.com/OpenZeppelin/openzeppelin-solidity) and [Gnosis Prediction Markets](https://github.com/gnosis/pm-contracts)
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Debugger component for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Contract deployment tracker for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Ethereum-specific blockchain APIs and contract deployment functions for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Implementation of the Ganache simulator for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Implementation of the Go-Ethereum blockchain for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Smart contract documentation generator for Embark DApps
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Implements IPFS support in Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -25,14 +25,14 @@ class IPFS {
|
||||
|
||||
if (this.enabled && this.config === {}) {
|
||||
console.warn('\n===== IPFS module will not be loaded =====');
|
||||
console.warn(`IPFS is enabled in the config, however the config is not setup to provide a URL for IPFS and therefore the IPFS module will not be loaded. Please either change the ${'config/storage > upload'.bold} setting to IPFS or add the IPFS config to the ${'config/storage > dappConnection'.bold} array. Please see ${'https://embark.status.im/docs/storage_configuration.html'.underline} for more information.\n`);
|
||||
console.warn(`IPFS is enabled in the config, however the config is not setup to provide a URL for IPFS and therefore the IPFS module will not be loaded. Please either change the ${'config/storage > upload'.bold} setting to IPFS or add the IPFS config to the ${'config/storage > dappConnection'.bold} array. Please see ${'https://framework.embarklabs.io/docs/storage_configuration.html'.underline} for more information.\n`);
|
||||
return;
|
||||
}
|
||||
if (!this.enabled) {
|
||||
this.embark.registerConsoleCommand({
|
||||
matches: cmd => cmd === "ipfs" || cmd.indexOf('ipfs ') === 0,
|
||||
process: (_cmd, cb) => {
|
||||
console.warn(__(`IPFS is disabled or not configured. Please see %s for more information.`, 'https://embark.status.im/docs/storage_configuration.html'.underline));
|
||||
console.warn(__(`IPFS is disabled or not configured. Please see %s for more information.`, 'https://framework.embarklabs.io/docs/storage_configuration.html'.underline));
|
||||
cb();
|
||||
}
|
||||
});
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Mocha Test Runner
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -16,5 +16,5 @@ Note: The dev mode of Netherminds is called `ndm` and the config file is `ndm_co
|
||||
Even though Nethermind supports Websocket connections, it does not support `eth_subscribe`, so you will not be able to use contract events.
|
||||
Also, please note that you will need to change the `endpoint` in the blockchain configuration to `ws://localhost:8545/ws/json-rpc` when working in local. Do change the port or the host to whatever you need.
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Implementation of the Parity blockchain for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Plugin installation utility for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -60,7 +60,7 @@ class PluginCommand {
|
||||
], (err) => {
|
||||
if (err) {
|
||||
self.embark.logger.error(__('Error installing npm package %s. Please visit ' +
|
||||
'https://embark.status.im/plugins/ for all supported plugins', npmPackage));
|
||||
'https://framework.embarklabs.io/plugins/ for all supported plugins', npmPackage));
|
||||
return callback(__('Error occurred'));
|
||||
}
|
||||
callback(null, __('NPM package %s successfully installed as a plugin', npmPackage));
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Smart contract profiler for Embark DApps
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -5,5 +5,5 @@ embark-rpc-manager
|
||||
|
||||
Modifies RPC calls to/from Embark (to/from `embark-proxy`).
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Provides scaffolding utilities.
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -50,5 +50,5 @@ verify the proof as well as deploy it.
|
||||
|
||||
- Embark 5.0.0-alpha.0 or later
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -29,5 +29,5 @@ Then add embark-solc to the plugins section in `embark.json`:
|
||||
- [Embark](https://www.npmjs.com/package/embark) 4.0.0 or higher
|
||||
- [Solc](https://github.com/ethereum/solidity/releases) installed and available globally on your machine (h)
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Plugin to run Embark solidity tests
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Solidity Compiler APIs for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Adds various configs to embark's contract.js config file
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Implements Swarm support in Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -25,7 +25,7 @@ class Swarm {
|
||||
|
||||
if (this.enabled && this.config === {}) {
|
||||
console.warn('\n===== Swarm module will not be loaded =====');
|
||||
console.warn(`Swarm is enabled in the config, however the config is not setup to provide a URL for swarm and therefore the Swarm module will not be loaded. Please either change the ${'config/storage > upload'.bold} setting to Swarm or add the Swarm config to the ${'config/storage > dappConnection'.bold} array. Please see ${'https://embark.status.im/docs/storage_configuration.html'.underline} for more information.\n`);
|
||||
console.warn(`Swarm is enabled in the config, however the config is not setup to provide a URL for swarm and therefore the Swarm module will not be loaded. Please either change the ${'config/storage > upload'.bold} setting to Swarm or add the Swarm config to the ${'config/storage > dappConnection'.bold} array. Please see ${'https://framework.embarklabs.io/docs/storage_configuration.html'.underline} for more information.\n`);
|
||||
this.events.emit("swarm:process:started", null, false);
|
||||
return;
|
||||
}
|
||||
@ -33,7 +33,7 @@ class Swarm {
|
||||
this.embark.registerConsoleCommand({
|
||||
matches: cmd => cmd === "swarm" || cmd.indexOf('swarm ') === 0,
|
||||
process: (_cmd, cb) => {
|
||||
console.warn(__(`Swarm is disabled or not configured. Please see %s for more information.`, 'https://embark.status.im/docs/storage_configuration.html'.underline));
|
||||
console.warn(__(`Swarm is disabled or not configured. Please see %s for more information.`, 'https://framework.embarklabs.io/docs/storage_configuration.html'.underline));
|
||||
cb();
|
||||
}
|
||||
});
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Transaction listener and logger for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Transaction tracker for Embark's cockpit
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Embark wrapper for the Vyper compiler
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Module to add Web3 support to Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -120,7 +120,7 @@ let doConnect = function(connectionList, opts, doneCb) {
|
||||
(typeof window !== 'undefined' && window.ethereum && window.ethereum.isMetaMask)) {
|
||||
console.warn("%cNote: Embark has detected you are in the development environment and using Metamask, please make sure Metamask is connected to your local node", "font-size: 2em");
|
||||
// if(opts.blockchainClient === 'parity') {
|
||||
// console.warn("%cNote: Parity blocks the connection from browser extensions like Metamask. To resolve this problem, go to https://embark.status.im/docs/blockchain_configuration.html#Using-Parity-and-Metamask", "font-size: 2em");
|
||||
// console.warn("%cNote: Parity blocks the connection from browser extensions like Metamask. To resolve this problem, go to https://framework.embarklabs.io/docs/blockchain_configuration.html#Using-Parity-and-Metamask", "font-size: 2em");
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Module to add Whisper support to Embark for the Geth blockchain
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Module to add Whisper support to Embark for the Parity blockchain
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Embark api module
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Authenticator module for Embark's Cockpit
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Provides ability to register a blockchain technology in Embark, ie Ethereum.
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Blockchain APIs for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Communication APIs for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -47,7 +47,7 @@ embark.events.request("compiler:contracts:compile", contractFiles, {}, (err, com
|
||||
|
||||
## Plugins
|
||||
|
||||
This module enables the `registerCompiler` plugin API. see [documentation](https://embark.status.im/docs/plugin_reference.html#embark-registerCompiler-extension-callback-contractFiles-doneCallback)
|
||||
This module enables the `registerCompiler` plugin API. see [documentation](https://framework.embarklabs.io/docs/plugin_reference.html#embark-registerCompiler-extension-callback-contractFiles-doneCallback)
|
||||
|
||||
***embark.registerCompiler***
|
||||
|
||||
@ -58,5 +58,5 @@ arguments:
|
||||
* `contractFiles`: filenames matching the extension
|
||||
* `callback(error, compiledObject)`
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Smart contracts manager for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -373,7 +373,7 @@ export default class ContractsManager {
|
||||
}
|
||||
if (showInterfaceMessageTrace || showInterfaceMessageWarn) {
|
||||
let logFunction = showInterfaceMessageWarn ? self.logger.warn : self.logger.trace;
|
||||
logFunction.call(self.logger, __('To get more details on interface Smart contracts, go here: %s', 'https://embark.status.im/docs/troubleshooting.html#Assuming-Contract-to-be-an-interface'.underline));
|
||||
logFunction.call(self.logger, __('To get more details on interface Smart contracts, go here: %s', 'https://framework.embarklabs.io/docs/troubleshooting.html#Assuming-Contract-to-be-an-interface'.underline));
|
||||
|
||||
}
|
||||
callback();
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Deployment APIs for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> EmbarkJS APIs for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Module for downloading and managing libraries
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Namesystem provider abstraction module for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Build pipeline module for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Manages and registers APIs for Embark process logs
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Proxy to listen to blockchain requests and responses
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Storage provider abstraction module for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Embark Testrunner
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Watches changes in the file system
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> Webserver for Embark
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
> You will be assimilated
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
@ -3,5 +3,5 @@
|
||||
> If a package from the monorepo can resolve this package then the first
|
||||
> package is inside the monorepo
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
|
||||
[Embark](https://github.com/embarklabs/embark).
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user