|
|
|
@ -266,7 +266,7 @@ export const RemixUiSettings = (props: RemixUiSettingsProps) => { |
|
|
|
|
</span> |
|
|
|
|
<a href="https://medium.com/p/66ef69e14931/" target="_blank"> |
|
|
|
|
{' '} |
|
|
|
|
Analytics in Remix IDE |
|
|
|
|
<FormattedMessage id="settings.analyticsInRemix" /> |
|
|
|
|
</a>{' '} |
|
|
|
|
<span>&</span>{' '} |
|
|
|
|
<a target="_blank" href="https://matomo.org/free-software"> |
|
|
|
@ -305,13 +305,17 @@ export const RemixUiSettings = (props: RemixUiSettingsProps) => { |
|
|
|
|
<FormattedMessage id="settings.swarm" /> |
|
|
|
|
</h6> |
|
|
|
|
<div className="pt-2 pt-2 mb-0 pb-0"> |
|
|
|
|
<label className="m-0">PRIVATE BEE ADDRESS:</label> |
|
|
|
|
<label className="m-0"> |
|
|
|
|
<FormattedMessage id="settings.privateBeeAddress" />: |
|
|
|
|
</label> |
|
|
|
|
<div className="text-secondary mb-0 h6"> |
|
|
|
|
<input id="swarmprivatebeeaddress" data-id="settingsPrivateBeeAddress" className="form-control" onChange={handleSavePrivateBeeAddress} value={privateBeeAddress} /> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div className="pt-2 mb-0 pb-0"> |
|
|
|
|
<label className="m-0">POSTAGE STAMP ID:</label> |
|
|
|
|
<label className="m-0"> |
|
|
|
|
<FormattedMessage id="settings.postageStampID" />: |
|
|
|
|
</label> |
|
|
|
|
<div className="text-secondary mb-0 h6"> |
|
|
|
|
<input id="swarmpostagestamp" data-id="settingsPostageStampId" className="form-control" onChange={handleSavePostageStampId} value={postageStampId} /> |
|
|
|
|
<div className="d-flex justify-content-end pt-2"></div> |
|
|
|
@ -380,13 +384,17 @@ export const RemixUiSettings = (props: RemixUiSettingsProps) => { |
|
|
|
|
<FormattedMessage id="settings.ipfs" /> |
|
|
|
|
</h6> |
|
|
|
|
<div className="pt-2 mb-0"> |
|
|
|
|
<label className="m-0">IPFS HOST:</label> |
|
|
|
|
<label className="m-0"> |
|
|
|
|
IPFS <FormattedMessage id="settings.host" />: |
|
|
|
|
</label> |
|
|
|
|
<div className="text-secondary mb-0 h6"> |
|
|
|
|
<input placeholder="e.g. ipfs.infura.io" id="settingsIpfsUrl" data-id="settingsIpfsUrl" className="form-control" onChange={handleSaveIpfsUrl} value={ipfsUrl} /> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div className="pt-2 mb-0 pb-0"> |
|
|
|
|
<label className="m-0">IPFS PROTOCOL:</label> |
|
|
|
|
<label className="m-0"> |
|
|
|
|
IPFS <FormattedMessage id="settings.protocol" />: |
|
|
|
|
</label> |
|
|
|
|
<div className="text-secondary mb-0 h6"> |
|
|
|
|
<input |
|
|
|
|
placeholder="e.g. https" |
|
|
|
@ -399,19 +407,25 @@ export const RemixUiSettings = (props: RemixUiSettingsProps) => { |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div className="pt-2 mb-0 pb-0"> |
|
|
|
|
<label className="m-0">IPFS PORT:</label> |
|
|
|
|
<label className="m-0"> |
|
|
|
|
IPFS <FormattedMessage id="settings.port" />: |
|
|
|
|
</label> |
|
|
|
|
<div className="text-secondary mb-0 h6"> |
|
|
|
|
<input placeholder="e.g. 5001" id="settingsIpfsPort" data-id="settingsIpfsPort" className="form-control" onChange={handleSaveIpfsPort} value={ipfsPort} /> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div className="pt-2 mb-0 pb-0"> |
|
|
|
|
<label className="m-0">IPFS PROJECT ID [ INFURA ]:</label> |
|
|
|
|
<label className="m-0"> |
|
|
|
|
IPFS <FormattedMessage id="settings.projectID" /> [ INFURA ]: |
|
|
|
|
</label> |
|
|
|
|
<div className="text-secondary mb-0 h6"> |
|
|
|
|
<input id="settingsIpfsProjectId" data-id="settingsIpfsProjectId" className="form-control" onChange={handleSaveIpfsProjectId} value={ipfsProjectId} /> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div className="pt-2 mb-0 pb-0"> |
|
|
|
|
<label className="m-0">IPFS PROJECT SECRET [ INFURA ]:</label> |
|
|
|
|
<label className="m-0"> |
|
|
|
|
IPFS <FormattedMessage id="settings.projectSecret" /> [ INFURA ]: |
|
|
|
|
</label> |
|
|
|
|
<div className="text-secondary mb-0 h6"> |
|
|
|
|
<input |
|
|
|
|
id="settingsIpfsProjectSecret" |
|
|
|
|