neozip-cli 0.75.2-beta → 0.80.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/DOCUMENTATION.md +9 -1
- package/README.md +22 -10
- package/dist/src/commands/mintTimestampProof.js +335 -0
- package/dist/src/commands/verifyEmail.js +146 -0
- package/dist/src/config/ConfigSetup.js +50 -20
- package/dist/src/config/ConfigStore.js +36 -3
- package/dist/src/index.js +1 -1
- package/dist/src/neolist.js +18 -10
- package/dist/src/neounzip.js +305 -60
- package/dist/src/neozip/blockchain.js +5 -5
- package/dist/src/neozip/createZip.js +207 -41
- package/dist/src/neozip/upgradeZip.js +182 -0
- package/dist/src/neozip.js +143 -8
- package/env.example +10 -0
- package/package.json +87 -81
- package/dist/neozipkit-bundles/blockchain.js +0 -13725
- package/dist/neozipkit-bundles/browser.js +0 -6186
- package/dist/neozipkit-bundles/core.js +0 -3839
- package/dist/neozipkit-bundles/node.js +0 -17730
- package/dist/neozipkit-wrappers/blockchain/core/contracts.js +0 -16
- package/dist/neozipkit-wrappers/blockchain/index.js +0 -2
- package/dist/neozipkit-wrappers/core/ZipDecompress.js +0 -2
- package/dist/neozipkit-wrappers/core/components/HashCalculator.js +0 -2
- package/dist/neozipkit-wrappers/core/components/Logger.js +0 -2
- package/dist/neozipkit-wrappers/core/constants/Errors.js +0 -2
- package/dist/neozipkit-wrappers/core/constants/Headers.js +0 -2
- package/dist/neozipkit-wrappers/core/encryption/ZipCrypto.js +0 -7
- package/dist/neozipkit-wrappers/core/index.js +0 -3
- package/dist/neozipkit-wrappers/index.js +0 -13
- package/dist/neozipkit-wrappers/node/index.js +0 -2
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
const blockchain = require('../../../neozipkit-bundles/blockchain.js');
|
|
2
|
-
// Export contracts-specific functions and constants
|
|
3
|
-
module.exports = {
|
|
4
|
-
CONTRACT_CONFIGS: blockchain.CONTRACT_CONFIGS,
|
|
5
|
-
NZIP_CONTRACT_ABI: blockchain.NZIP_CONTRACT_ABI,
|
|
6
|
-
NZIP_CONTRACT_ABI_WEB3: blockchain.NZIP_CONTRACT_ABI_WEB3,
|
|
7
|
-
CURRENT_DEPLOYMENT: blockchain.CURRENT_DEPLOYMENT,
|
|
8
|
-
DEFAULT_NETWORK: blockchain.DEFAULT_NETWORK,
|
|
9
|
-
getContractConfig: blockchain.getContractConfig,
|
|
10
|
-
getChainIdByName: blockchain.getChainIdByName,
|
|
11
|
-
getSupportedNetworkNames: blockchain.getSupportedNetworkNames,
|
|
12
|
-
getSupportedNetworks: blockchain.getSupportedNetworks,
|
|
13
|
-
isNetworkSupported: blockchain.isNetworkSupported,
|
|
14
|
-
getNetworkByName: blockchain.getNetworkByName,
|
|
15
|
-
ContractConfig: blockchain.ContractConfig
|
|
16
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
// Main neozipkit wrapper - re-exports from core and blockchain bundles
|
|
2
|
-
const core = require('../neozipkit-bundles/core.js');
|
|
3
|
-
const blockchain = require('../neozipkit-bundles/blockchain.js');
|
|
4
|
-
const node = require('../neozipkit-bundles/node.js');
|
|
5
|
-
|
|
6
|
-
// Merge all exports
|
|
7
|
-
module.exports = {
|
|
8
|
-
...core,
|
|
9
|
-
...blockchain,
|
|
10
|
-
...node,
|
|
11
|
-
// Ensure default export is available
|
|
12
|
-
default: core.default || core
|
|
13
|
-
};
|