dehardcodes default bid amounts

This commit is contained in:
Jessop Breth 2018-10-31 23:59:01 -04:00
parent bc58ddcca7
commit 9d12788a78
5 changed files with 9 additions and 6 deletions

View file

@ -39,6 +39,7 @@ const {
port,
title,
host,
channelClaimBidAmount: channelBid,
},
publishing: {
uploadDirectory,
@ -157,7 +158,7 @@ inquirer
method: 'channel_new',
params: {
channel_name: thumbnailChannelDefault,
amount : '0.1',
amount : channelBid,
},
})
.then(response => {

View file

@ -31,7 +31,9 @@
"serveOnlyApproved": false,
"publishOnlyApproved": false,
"approvedChannels": [],
"publishingChannelWhitelist": []
"publishingChannelWhitelist": [],
"channelClaimBidAmount": "0.1",
"fileClaimBidAmount": "0.01"
},
"startup": {
"performChecks": true,

View file

@ -1,6 +1,5 @@
const logger = require('winston');
const { details, publishing } = require('@config/siteConfig');
const createPublishParams = (filePath, name, title, description, license, nsfw, thumbnail, channelName, channelClaimId) => {
// provide defaults for title
if (title === null || title.trim() === '') {
@ -18,7 +17,7 @@ const createPublishParams = (filePath, name, title, description, license, nsfw,
const publishParams = {
name,
file_path: filePath,
bid : '0.01',
bid : publishing.fileClaimBidAmount,
metadata : {
description,
title,

View file

@ -10,7 +10,7 @@ const createThumbnailPublishParams = (thumbnailFilePath, claimName, license, nsf
return {
name : `${claimName}-thumb`,
file_path: thumbnailFilePath,
bid : '0.01',
bid : publishing.fileClaimBidAmount,
metadata : {
title : `${claimName} thumbnail`,
description: `a thumbnail for ${claimName}`,

View file

@ -4,6 +4,7 @@ const { apiHost, apiPort, getTimeout } = require('@config/lbryConfig');
const lbrynetUri = 'http://' + apiHost + ':' + apiPort;
const { chooseGaLbrynetPublishLabel, sendGATimingEvent } = require('../utils/googleAnalytics.js');
const handleLbrynetResponse = require('./utils/handleLbrynetResponse.js');
const { publishing } = require('@config/siteConfig');
module.exports = {
publishClaim (publishParams) {
@ -116,7 +117,7 @@ module.exports = {
method: 'channel_new',
params: {
channel_name: name,
amount : '0.1',
amount : publishing.channelClaimBidAmount,
},
})
.then(response => {