UNPKG
chainode
Version:
latest (1.0.0)
1.0.0
0.0.1
A private blockchain network based on node.js
github.com/davidemiceli/chainode
davidemiceli/chainode
chainode
/
lib
/
docs
/
src
/
configs.js
14 lines
(10 loc)
•
267 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
;
// App configuration settings
const
Configs
= {
alerts
: {
successAdded
:
'Data added with success!'
,
deleted
:
'Deleted data with success!'
,
error
:
'Sorry, there was an error: contact the administrator...'
, } };
export
default
Configs
;