Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Commit

Permalink
v0.4.3 (#278)
Browse files Browse the repository at this point in the history
* removed preview text for UI purposes (#262)
* update README (#268)
PR points to Minter SDK for contracts and updates some of the README
* Carbon savings message on creation of NFT (#264)
* Add video metadata types to file upload page. Fixes #238 (#251)
* feat: Update fa2_tzip16_compate_multi_nft_asset.ts with (tqtezos/minter-sdk#62) code
* feat: Update git hash in bootstrap-contracts-config.ts
  • Loading branch information
lambdahands authored Mar 23, 2021
1 parent 7ff83aa commit 53ddff2
Show file tree
Hide file tree
Showing 6 changed files with 137 additions and 249 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ capabilities to trade them.

### Notice

This software is in beta. At the moment, the smart contracts
This software is in beta. At the moment, the [smart contracts](https://github.com/tqtezos/minter-sdk)
that OpenMinter uses have **not** been formally audited. Please
use this software at your own risk.

Expand Down Expand Up @@ -40,9 +40,9 @@ OpenMinter supports the following networks and software components:
#### 🌐 Mainnet and Edonet
#### 📦 Sandboxed development via [Flextesa][flextesa]
#### 🎨 Multimedia NFTs powered by [TZIP-21](https://tzip.tezosagora.org/proposal/tzip-21/)
#### 👛 Various wallets via [Beacon](https://www.walletbeacon.io/)
#### ⚙️ Smart contracts based on [minter-sdk](https://github.com/tqtezos/minter-sdk)
#### 👛 Wallets compatible with [Beacon](https://www.walletbeacon.io/)
#### 📖 Indexing via [Better Call Dev][bcdhub]
#### ⚙️ The latest [FA2](https://gitlab.com/tzip/tzip/-/blob/master/proposals/tzip-12/tzip-12.md) specification
#### 🚀 [IPFS](https://ipfs.io/) via a local node or [Pinata](https://pinata.cloud/)

The following dependencies are required to run OpenMinter.
Expand Down
2 changes: 1 addition & 1 deletion scripts/bootstrap-contracts-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ async function fetchContractCode(
contractFilename: string
): Promise<ContractCodeResponse> {
const rawRepoUrl = 'https://raw.githubusercontent.com/tqtezos/minter-sdk';
const gitHash = '8f67bb8c2abc12b8e6f8e529e1412262972deab3';
const gitHash = 'aec441412d53653fa0048fee7c12c1eb1365909b';
const contractCodeUrl = `${rawRepoUrl}/${gitHash}/contracts/bin/${contractFilename}`;
const response = await axios.get(contractCodeUrl);
return { code: response.data, url: contractCodeUrl };
Expand Down
2 changes: 1 addition & 1 deletion src/components/CreateNonFungiblePage/FileUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default function FileUpload() {
textAlign="center"
pb={4}
>
JPG, PNG, GIF, WEBP, SVG. Max size 30mb
JPG, PNG, GIF, WEBP, SVG, MP4, WebM, Ogg. Max size 30mb
</Text>
<Flex
borderStyle="dashed"
Expand Down
4 changes: 2 additions & 2 deletions src/components/CreateNonFungiblePage/Preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function Preview() {
{selectedFile ? <FilePreview file={selectedFile} /> : null}
</Flex>
<Heading size="md" color={name ? 'black' : 'gray.200'} px={8} py={6}>
{name ? name : 'Asset name...'}
{name ? name : ''}
</Heading>
<Divider borderColor="brand.lightBlue" opacity="1" />
<Text
Expand All @@ -36,7 +36,7 @@ export default function Preview() {
color={description ? 'black' : 'gray.200'}
fontFamily="mono"
>
{description ? description : 'Asset description...'}
{description ? description : ''}
</Text>
<Divider borderColor="brand.lightBlue" opacity="1" />
{/* TODO: Render metadata in preview */}
Expand Down
4 changes: 4 additions & 0 deletions src/components/CreateNonFungiblePage/StatusModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ function Content({ status, onClose, onRetry, onCancel }: StatusModalProps) {
<Heading size="lg" textAlign="center" color="gray.500">
Creating token...
</Heading>
<br/>
<Text size="xs" textAlign="center" color="gray.500">
<span role="img" aria-label="lightbulb">🌱</span> Minting on Tezos produces 1,500,000 times less CO2 emissions than Ethereum.
</Text>
</Flex>
);
}
Expand Down
Loading

0 comments on commit 53ddff2

Please sign in to comment.