Skip to content

Commit 61f4f5c

Browse files
committed
Update from e9b1264
1 parent 7b2d4b9 commit 61f4f5c

File tree

12 files changed

+33
-33
lines changed

12 files changed

+33
-33
lines changed

README.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ Check out our [full video tutorial on how to get started.](https://www.youtube.c
3535

3636
Here’s it works:
3737
1. Install the plugin.
38-
2. Sign up for a paid [Tatum plan](https://dashboard.tatum.io/). The Tatum is an external service which provides access for the blockchain infrastructure. The credits from your plan are used to pay for the gas fees to mint NFTs. **You can try NFT Maker with Test API keys for free, but NFT minted with Test API keys will not have any value, because they are minted on Testnet network.**
38+
2. Sign up for a [Tatum API key](https://dashboard.tatum.io/). The Tatum is an external service which provides access for the blockchain infrastructure. The credits from your plan are used to pay for the gas fees to mint NFTs. **You can try NFT Maker with Test API keys for free, but NFT minted with Test API keys will not have any value, because they are minted on Testnet network.**
3939
3. Create your NFT by uploading an image. This won’t consume any credits until someone buys it.
4040
4. When someone buys your NFT, the metadata is uploaded to IPFS, and the NFT is minted to the blockchain address provided by the customer at checkout.
4141
5. Credits to pay the gas fees for minting are deducted from your Tatum plan.
4242

4343
**IMPORTANT NOTICE**
44-
NFT Maker requires a PAID Tatum plan to work with blockchain Mainnet networks, and you must pay for the gas fees to mint your NFTs from your Tatum plan.
45-
You can try NFT Maker with Test API keys for free, but NFTs minted with Test API keys will not have any value, because they are minted on Testnet network.
44+
NFT Maker works with the both free and paid Tatum plans. You can try NFT Maker with Test API keys for free, but NFTs minted with Test API keys will not have any value, because they are minted on Testnet network.
45+
The paid Tatum API key plan works with blockchain Mainnet networks, and it pays for the gas fees to mint your NFTs from your Tatum API key plan.
4646
Please note, you can cancel your plan at any time, but **Tatum DOES NOT offer refunds for received payments**.
4747

4848
**Due to high ETH fees, minting NFTs with ETH is available only with enterprise API keys.**
@@ -200,7 +200,7 @@ For a complete guide on how to build the backend to an NFT marketplace from scra
200200
Changed author of the plugin
201201

202202
= 2.0.27 =
203-
Added support for Testnet & detailed info about minted NFTs
203+
Added support for Testnet & detailed info about minted NFTs & more validation messages
204204

205205
== Upgrade Notice ==
206206

inc/base/others/cachebuster-lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
/* This file was automatically generated by the `grunt libs:cachebuster` command (Mon Apr 11 2022 17:23:16 GMT+0000 (Coordinated Universal Time)). */
2+
/* This file was automatically generated by the `grunt libs:cachebuster` command (Thu Apr 14 2022 08:14:54 GMT+0000 (Coordinated Universal Time)). */
33
return array(
44
'mobx' => '4.15.4',
55
'react' => '17.0.2',

inc/base/others/cachebuster.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
/* This file was automatically generated by the `grunt libs:cachebuster` command (Mon Apr 11 2022 17:23:16 GMT+0000 (Coordinated Universal Time)). */
2+
/* This file was automatically generated by the `grunt libs:cachebuster` command (Thu Apr 14 2022 08:14:54 GMT+0000 (Coordinated Universal Time)). */
33
return array(
44
'src/public/dist/admin.js' => '19a243ee5414970482df596da246de5f',
55
'src/public/dist/vendor-admin.js' => '1d8711836e662add70c241a66b5ca4eb',

vendor/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
require_once __DIR__ . '/composer/autoload_real.php';
66

7-
return ComposerAutoloaderInitfd0c7de7605be1ba9ac621a44426efe8::getLoader();
7+
return ComposerAutoloaderInit7659330c1dc2966e52345bfb2d0a411f::getLoader();

vendor/composer/autoload_real.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// autoload_real.php @generated by Composer
44

5-
class ComposerAutoloaderInitfd0c7de7605be1ba9ac621a44426efe8
5+
class ComposerAutoloaderInit7659330c1dc2966e52345bfb2d0a411f
66
{
77
private static $loader;
88

@@ -22,15 +22,15 @@ public static function getLoader()
2222
return self::$loader;
2323
}
2424

25-
spl_autoload_register(array('ComposerAutoloaderInitfd0c7de7605be1ba9ac621a44426efe8', 'loadClassLoader'), true, true);
25+
spl_autoload_register(array('ComposerAutoloaderInit7659330c1dc2966e52345bfb2d0a411f', 'loadClassLoader'), true, true);
2626
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27-
spl_autoload_unregister(array('ComposerAutoloaderInitfd0c7de7605be1ba9ac621a44426efe8', 'loadClassLoader'));
27+
spl_autoload_unregister(array('ComposerAutoloaderInit7659330c1dc2966e52345bfb2d0a411f', 'loadClassLoader'));
2828

2929
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
3030
if ($useStaticLoader) {
3131
require_once __DIR__ . '/autoload_static.php';
3232

33-
call_user_func(\Composer\Autoload\ComposerStaticInitfd0c7de7605be1ba9ac621a44426efe8::getInitializer($loader));
33+
call_user_func(\Composer\Autoload\ComposerStaticInit7659330c1dc2966e52345bfb2d0a411f::getInitializer($loader));
3434
} else {
3535
$classMap = require __DIR__ . '/autoload_classmap.php';
3636
if ($classMap) {

vendor/composer/autoload_static.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Composer\Autoload;
66

7-
class ComposerStaticInitfd0c7de7605be1ba9ac621a44426efe8
7+
class ComposerStaticInit7659330c1dc2966e52345bfb2d0a411f
88
{
99
public static $prefixLengthsPsr4 = array (
1010
'k' =>
@@ -89,9 +89,9 @@ class ComposerStaticInitfd0c7de7605be1ba9ac621a44426efe8
8989
public static function getInitializer(ClassLoader $loader)
9090
{
9191
return \Closure::bind(function () use ($loader) {
92-
$loader->prefixLengthsPsr4 = ComposerStaticInitfd0c7de7605be1ba9ac621a44426efe8::$prefixLengthsPsr4;
93-
$loader->prefixDirsPsr4 = ComposerStaticInitfd0c7de7605be1ba9ac621a44426efe8::$prefixDirsPsr4;
94-
$loader->classMap = ComposerStaticInitfd0c7de7605be1ba9ac621a44426efe8::$classMap;
92+
$loader->prefixLengthsPsr4 = ComposerStaticInit7659330c1dc2966e52345bfb2d0a411f::$prefixLengthsPsr4;
93+
$loader->prefixDirsPsr4 = ComposerStaticInit7659330c1dc2966e52345bfb2d0a411f::$prefixDirsPsr4;
94+
$loader->classMap = ComposerStaticInit7659330c1dc2966e52345bfb2d0a411f::$classMap;
9595

9696
}, null, ClassLoader::class);
9797
}

vendor/tatum/nft-maker/vendor/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
require_once __DIR__ . '/composer/autoload_real.php';
66

7-
return ComposerAutoloaderInit554641eb723ad3b1a8043a966e63ac54::getLoader();
7+
return ComposerAutoloaderInit3401a63027074f5c6eda8a8ec33becf5::getLoader();

vendor/tatum/nft-maker/vendor/composer/autoload_real.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// autoload_real.php @generated by Composer
44

5-
class ComposerAutoloaderInit554641eb723ad3b1a8043a966e63ac54
5+
class ComposerAutoloaderInit3401a63027074f5c6eda8a8ec33becf5
66
{
77
private static $loader;
88

@@ -22,15 +22,15 @@ public static function getLoader()
2222
return self::$loader;
2323
}
2424

25-
spl_autoload_register(array('ComposerAutoloaderInit554641eb723ad3b1a8043a966e63ac54', 'loadClassLoader'), true, true);
25+
spl_autoload_register(array('ComposerAutoloaderInit3401a63027074f5c6eda8a8ec33becf5', 'loadClassLoader'), true, true);
2626
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27-
spl_autoload_unregister(array('ComposerAutoloaderInit554641eb723ad3b1a8043a966e63ac54', 'loadClassLoader'));
27+
spl_autoload_unregister(array('ComposerAutoloaderInit3401a63027074f5c6eda8a8ec33becf5', 'loadClassLoader'));
2828

2929
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
3030
if ($useStaticLoader) {
3131
require_once __DIR__ . '/autoload_static.php';
3232

33-
call_user_func(\Composer\Autoload\ComposerStaticInit554641eb723ad3b1a8043a966e63ac54::getInitializer($loader));
33+
call_user_func(\Composer\Autoload\ComposerStaticInit3401a63027074f5c6eda8a8ec33becf5::getInitializer($loader));
3434
} else {
3535
$classMap = require __DIR__ . '/autoload_classmap.php';
3636
if ($classMap) {

vendor/tatum/nft-maker/vendor/composer/autoload_static.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Composer\Autoload;
66

7-
class ComposerStaticInit554641eb723ad3b1a8043a966e63ac54
7+
class ComposerStaticInit3401a63027074f5c6eda8a8ec33becf5
88
{
99
public static $prefixLengthsPsr4 = array (
1010
'k' =>
@@ -61,9 +61,9 @@ class ComposerStaticInit554641eb723ad3b1a8043a966e63ac54
6161
public static function getInitializer(ClassLoader $loader)
6262
{
6363
return \Closure::bind(function () use ($loader) {
64-
$loader->prefixLengthsPsr4 = ComposerStaticInit554641eb723ad3b1a8043a966e63ac54::$prefixLengthsPsr4;
65-
$loader->prefixDirsPsr4 = ComposerStaticInit554641eb723ad3b1a8043a966e63ac54::$prefixDirsPsr4;
66-
$loader->classMap = ComposerStaticInit554641eb723ad3b1a8043a966e63ac54::$classMap;
64+
$loader->prefixLengthsPsr4 = ComposerStaticInit3401a63027074f5c6eda8a8ec33becf5::$prefixLengthsPsr4;
65+
$loader->prefixDirsPsr4 = ComposerStaticInit3401a63027074f5c6eda8a8ec33becf5::$prefixDirsPsr4;
66+
$loader->classMap = ComposerStaticInit3401a63027074f5c6eda8a8ec33becf5::$classMap;
6767

6868
}, null, ClassLoader::class);
6969
}

vendor/tatum/utils/vendor/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
require_once __DIR__ . '/composer/autoload_real.php';
66

7-
return ComposerAutoloaderInite18c597b0bae232c401d6349dfcb17f1::getLoader();
7+
return ComposerAutoloaderInit8fe95eb2727f63e949b4d65751481533::getLoader();

vendor/tatum/utils/vendor/composer/autoload_real.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// autoload_real.php @generated by Composer
44

5-
class ComposerAutoloaderInite18c597b0bae232c401d6349dfcb17f1
5+
class ComposerAutoloaderInit8fe95eb2727f63e949b4d65751481533
66
{
77
private static $loader;
88

@@ -22,15 +22,15 @@ public static function getLoader()
2222
return self::$loader;
2323
}
2424

25-
spl_autoload_register(array('ComposerAutoloaderInite18c597b0bae232c401d6349dfcb17f1', 'loadClassLoader'), true, true);
25+
spl_autoload_register(array('ComposerAutoloaderInit8fe95eb2727f63e949b4d65751481533', 'loadClassLoader'), true, true);
2626
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27-
spl_autoload_unregister(array('ComposerAutoloaderInite18c597b0bae232c401d6349dfcb17f1', 'loadClassLoader'));
27+
spl_autoload_unregister(array('ComposerAutoloaderInit8fe95eb2727f63e949b4d65751481533', 'loadClassLoader'));
2828

2929
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
3030
if ($useStaticLoader) {
3131
require_once __DIR__ . '/autoload_static.php';
3232

33-
call_user_func(\Composer\Autoload\ComposerStaticInite18c597b0bae232c401d6349dfcb17f1::getInitializer($loader));
33+
call_user_func(\Composer\Autoload\ComposerStaticInit8fe95eb2727f63e949b4d65751481533::getInitializer($loader));
3434
} else {
3535
$classMap = require __DIR__ . '/autoload_classmap.php';
3636
if ($classMap) {

vendor/tatum/utils/vendor/composer/autoload_static.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Composer\Autoload;
66

7-
class ComposerStaticInite18c597b0bae232c401d6349dfcb17f1
7+
class ComposerStaticInit8fe95eb2727f63e949b4d65751481533
88
{
99
public static $prefixLengthsPsr4 = array (
1010
'H' =>
@@ -39,9 +39,9 @@ class ComposerStaticInite18c597b0bae232c401d6349dfcb17f1
3939
public static function getInitializer(ClassLoader $loader)
4040
{
4141
return \Closure::bind(function () use ($loader) {
42-
$loader->prefixLengthsPsr4 = ComposerStaticInite18c597b0bae232c401d6349dfcb17f1::$prefixLengthsPsr4;
43-
$loader->prefixDirsPsr4 = ComposerStaticInite18c597b0bae232c401d6349dfcb17f1::$prefixDirsPsr4;
44-
$loader->classMap = ComposerStaticInite18c597b0bae232c401d6349dfcb17f1::$classMap;
42+
$loader->prefixLengthsPsr4 = ComposerStaticInit8fe95eb2727f63e949b4d65751481533::$prefixLengthsPsr4;
43+
$loader->prefixDirsPsr4 = ComposerStaticInit8fe95eb2727f63e949b4d65751481533::$prefixDirsPsr4;
44+
$loader->classMap = ComposerStaticInit8fe95eb2727f63e949b4d65751481533::$classMap;
4545

4646
}, null, ClassLoader::class);
4747
}

0 commit comments

Comments
 (0)