mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-19 10:15:59 +00:00
1d6da99e8f
display last line on tx fix debugger call listen to source event only after jumping to the end keep track of last tx; add minimal debug feature; fix ast issue initial debugger apis & ui integration prevent crash when step is out of bounds; send all all available data in websocket add debugger commands fix line number tracking in editor; toggle breakpoints replace timeouts with callbacks add debugger manager & refactor refactor debugger api refactor cmd line debugger reduce debugger decoupling reduce debugger decoupling fix debug buttons trigger source update so api triggers ws event to update source location move locals and contracts vars to a json view improve debugger icons simplify debugger data update debug package add command handler to get a contract given a tx; update debugger so it can get a contract by its tx instead of tracking latest txs only update debugger package
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
module.exports = {
|
|
// default applies to all environments
|
|
default: {
|
|
enabled: true,
|
|
provider: "whisper", // Communication provider. Currently, Embark only supports whisper
|
|
available_providers: ["whisper"], // Array of available providers
|
|
},
|
|
|
|
// default environment, merges with the settings in default
|
|
// assumed to be the intended environment by `embark run`
|
|
development: {
|
|
connection: {
|
|
host: "localhost", // Host of the blockchain node
|
|
port: 8546, // Port of the blockchain node
|
|
type: "ws" // Type of connection (ws or rpc)
|
|
}
|
|
},
|
|
|
|
// merges with the settings in default
|
|
// used with "embark run privatenet"
|
|
privatenet: {
|
|
},
|
|
|
|
|
|
// merges with the settings in default
|
|
// used with "embark run testnet"
|
|
testnet: {
|
|
},
|
|
|
|
// merges with the settings in default
|
|
// used with "embark run livenet"
|
|
livenet: {
|
|
},
|
|
|
|
// you can name an environment with specific settings and then specify with
|
|
// "embark run custom_name"
|
|
//custom_name: {
|
|
//}
|
|
// Use this section when you need a specific symmetric or private keys in whisper
|
|
/*
|
|
,keys: {
|
|
symmetricKey: "your_symmetric_key",// Symmetric key for message decryption
|
|
privateKey: "your_private_key" // Private Key to be used as a signing key and for message decryption
|
|
}
|
|
*/
|
|
};
|