feat: fix minting

This commit is contained in:
bartosz-lipinski 2021-04-09 23:02:20 -05:00
parent 026600d21f
commit e1ae17a384
2 changed files with 4 additions and 4 deletions

View File

@ -133,7 +133,7 @@ export const mintNFT = async (
instructions,
signers,
true,
'single',
'max',
false,
block);

View File

@ -1,5 +1,5 @@
import React from 'react';
import { BrowserRouter, Route, Switch } from 'react-router-dom';
import { HashRouter, Route, Switch } from 'react-router-dom';
import { contexts } from '@oyster/common';
import {
MarketProvider,
@ -16,7 +16,7 @@ const { AccountsProvider } = contexts.Accounts;
export function Routes() {
return (
<>
<BrowserRouter basename={'/'}>
<HashRouter basename={'/'}>
<ConnectionProvider>
<WalletProvider>
<UseWalletProvider chainId={5}>
@ -73,7 +73,7 @@ export function Routes() {
</UseWalletProvider>
</WalletProvider>
</ConnectionProvider>
</BrowserRouter>
</HashRouter>
</>
);
}