mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-02-21 22:58:08 +00:00
* trim trailing spaces * update to embark 4.0.2 * bump to solc 0.5.4 * use .selector * use solidity function selector * update to embark 6.0.0 * use mocks instead of "instanceOf" tool+tests fix * update to solidity 0.5.11 * update to solidity 0.5.11 * add spdx license identifiers * update ENS contracts * natspec fix return values
39 lines
576 B
JavaScript
39 lines
576 B
JavaScript
module.exports = {
|
|
default: {
|
|
enabled: true,
|
|
ipfs_bin: "ipfs",
|
|
available_providers: ["ipfs"],
|
|
upload: {
|
|
provider: "ipfs",
|
|
host: "localhost",
|
|
port: 5001
|
|
},
|
|
dappConnection: [
|
|
{
|
|
provider:"ipfs",
|
|
host: "localhost",
|
|
port: 5001,
|
|
getUrl: "http://localhost:8080/ipfs/"
|
|
}
|
|
]
|
|
},
|
|
|
|
development: {
|
|
upload: {
|
|
provider: "ipfs",
|
|
host: "localhost",
|
|
port: 5001,
|
|
getUrl: "http://localhost:8080/ipfs/"
|
|
}
|
|
},
|
|
|
|
testnet: {
|
|
},
|
|
|
|
livenet: {
|
|
},
|
|
|
|
rinkeby: {
|
|
},
|
|
};
|