contracts/config/storage.js

38 lines
592 B
JavaScript
Raw Normal View History

module.exports = {
default: {
enabled: true,
ipfs_bin: "ipfs",
available_providers: ["ipfs"],
upload: {
2019-01-12 11:42:31 -02:00
provider: "ipfs",
host: "localhost",
port: 5001
},
dappConnection: [
{
2019-01-12 11:42:31 -02:00
provider:"ipfs",
host: "localhost",
port: 5001,
getUrl: "http://localhost:8080/ipfs/"
}
]
},
development: {
enabled: true,
upload: {
2019-01-12 11:42:31 -02:00
provider: "ipfs",
host: "localhost",
port: 5001,
getUrl: "http://localhost:8080/ipfs/"
}
2019-01-12 11:42:31 -02:00
},
testnet: {
},
livenet: {
},
2019-03-28 20:10:02 -03:00
rinkeby: {
}
};