tqtezos / minter

OpenMinter is dApp framework for enabling the creation and collection of non-fungible tokens (NFTs) on Tezos.
MIT License
192 stars 91 forks source link

How to create contract on an account #434

Open byteblock-labs opened 3 years ago

byteblock-labs commented 3 years ago

I am running minter on custom mode and I wanted to run a contract on my account. what is the way to run contract on an account. getting error: TypeScript error in /home/ByteBlock-minter-1d9cedff6e56/src/reducer/slices/collections.ts(33,28): Property 'contracts' does not exist on type '{ network: string; rpc: string; bcd: { api: string; gui: string; }; tzkt: { api: string; }; admin: { address: string; }; ipfsApi: string; ipfsGateway: string; contractOpts: { marketplace: { fee: { percent: number; address: string; }; }; }; }'. TS2339

31 | export const initialState: CollectionsState = {
32 |   selectedCollection: null,

33 | globalCollection: config.contracts.nftFaucet, | ^ 34 | collections: {} 35 | }; 36 |