Skip to content

Commit

Permalink
Removing old key
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmorgan committed Mar 30, 2021
1 parent 41ad347 commit df8354f
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion migrations/129_deploy_artist_bidding_contract_v2.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const KnownOriginDigitalAssetV2 = artifacts.require('KnownOriginDigitalAssetV2')
const ArtistAcceptingBidsV2 = artifacts.require('ArtistAcceptingBidsV2');

const HDWalletProvider = require('truffle-hdwallet-provider');
const infuraApikey = '4396873c00c84479991e58a34a54ebd9';
const infuraApikey = '';

module.exports = async function (deployer, network, accounts) {

Expand Down
2 changes: 1 addition & 1 deletion migrations/130_deploy_self_service_minter.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const ArtistAcceptingBidsV2 = artifacts.require('ArtistAcceptingBidsV2');
const SelfServiceEditionCuration = artifacts.require('SelfServiceEditionCuration');

const HDWalletProvider = require('truffle-hdwallet-provider');
const infuraApikey = '4396873c00c84479991e58a34a54ebd9';
const infuraApikey = '';

module.exports = async function (deployer, network, accounts) {

Expand Down
2 changes: 1 addition & 1 deletion migrations/131_deploy_self_service_minter_v2.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const SelfServiceEditionCurationV2 = artifacts.require('SelfServiceEditionCurati
const SelfServiceAccessControls = artifacts.require('SelfServiceAccessControls');

const HDWalletProvider = require('truffle-hdwallet-provider');
const infuraApikey = '4396873c00c84479991e58a34a54ebd9';
const infuraApikey = '';

module.exports = async function (deployer, network, accounts) {

Expand Down
2 changes: 1 addition & 1 deletion migrations/132_deploy_self_service_minter_v3.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const SelfServiceEditionCurationV3 = artifacts.require('SelfServiceEditionCurati
const SelfServiceAccessControls = artifacts.require('SelfServiceAccessControls');

const HDWalletProvider = require('truffle-hdwallet-provider');
const infuraApikey = '4396873c00c84479991e58a34a54ebd9';
const infuraApikey = '';

module.exports = async function (deployer, network, accounts) {

Expand Down
2 changes: 1 addition & 1 deletion migrations/133_deploy_self_service_minter_v4.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const SelfServiceAccessControls = artifacts.require('SelfServiceAccessControls')
const SelfServiceFrequencyControls = artifacts.require('SelfServiceFrequencyControls');

const HDWalletProvider = require('truffle-hdwallet-provider');
const infuraApikey = '4396873c00c84479991e58a34a54ebd9';
const infuraApikey = '';

module.exports = async function (deployer, network, accounts) {

Expand Down
2 changes: 1 addition & 1 deletion migrations/134_deploy_token_marketplace.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const KnownOriginDigitalAssetV2 = artifacts.require('KnownOriginDigitalAssetV2')
const TokenMarketplace = artifacts.require('TokenMarketplace');

const HDWalletProvider = require('truffle-hdwallet-provider');
const infuraApikey = '4396873c00c84479991e58a34a54ebd9';
const infuraApikey = '';

module.exports = async function (deployer, network, accounts) {

Expand Down
2 changes: 1 addition & 1 deletion migrations/135_deploy_edition_burner.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const KnownOriginDigitalAssetV2 = artifacts.require('KnownOriginDigitalAssetV2')
const ArtistEditionBurner = artifacts.require('ArtistEditionBurner');

const HDWalletProvider = require('truffle-hdwallet-provider');
const infuraApikey = '4396873c00c84479991e58a34a54ebd9';
const infuraApikey = '';

module.exports = async function (deployer, network, accounts) {

Expand Down
2 changes: 1 addition & 1 deletion migrations/136_deploy_token_marketplace_v2.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const KnownOriginDigitalAssetV2 = artifacts.require('KnownOriginDigitalAssetV2')
const TokenMarketplaceV2 = artifacts.require('TokenMarketplaceV2');

const HDWalletProvider = require('truffle-hdwallet-provider');
const infuraApikey = '4396873c00c84479991e58a34a54ebd9';
const infuraApikey = '';

module.exports = async function (deployer, network, accounts) {

Expand Down
2 changes: 1 addition & 1 deletion migrations/137_update_minbids_royalties_pausing.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const SelfServiceEditionCurationV3 = artifacts.require('SelfServiceEditionCurati
const SelfServiceEditionCurationV4 = artifacts.require('SelfServiceEditionCurationV4');

const HDWalletProvider = require('truffle-hdwallet-provider');
const infuraApikey = '4396873c00c84479991e58a34a54ebd9';
const infuraApikey = '';

module.exports = async function (deployer, network, accounts) {

Expand Down
2 changes: 1 addition & 1 deletion truffle.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const HDWalletProvider = require('truffle-hdwallet-provider');
const infuraApikey = '4396873c00c84479991e58a34a54ebd9';
const infuraApikey = '';
const mnemonic = process.env.KNOWN_ORIGIN_MNEMONIC;
if (!mnemonic) {
throw new Error(`
Expand Down

0 comments on commit df8354f

Please sign in to comment.