@velocitycareerlabs/metadata-registry-contract 1.25.0-dev-build.12642c864
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/.openzeppelin/unknown-1480.json +1336 -0
- package/.openzeppelin/unknown-1481.json +1199 -0
- package/.openzeppelin/unknown-1482.json +1198 -0
- package/.openzeppelin/unknown-1483.json +702 -0
- package/LICENSE +248 -0
- package/build/contracts/Migrations.json +1104 -0
- package/contracts/MetadataRegistry.sol +351 -0
- package/contracts/Migrations.sol +19 -0
- package/migration-status.js +42 -0
- package/migrations/10_vl-5092-use-check-operator-credential-type.js +19 -0
- package/migrations/11_vl-8185-allow-unknown-types.js +19 -0
- package/migrations/1_initial_migration.js +5 -0
- package/migrations/2_deploy_metadata.js +29 -0
- package/migrations/3_upgrade_metadata.js +44 -0
- package/migrations/4_upgrade_metadata.js +21 -0
- package/migrations/5_upgrade_metadata_send_msg_sender_burn.js +21 -0
- package/migrations/6_upgrade_metadata_add_permissions.js +18 -0
- package/migrations/7_vl-5477-signatures.js +19 -0
- package/migrations/8_vl-5480-signatures.js +19 -0
- package/migrations/9_vl-5092-new-permissions.js +19 -0
- package/package.json +43 -0
- package/test/.gitkeep +0 -0
- package/test/metadata-registry.test.js +1512 -0
- package/truffle-config.js +31 -0
@@ -0,0 +1,31 @@
|
|
1
|
+
const PrivateKeyProvider = require('@truffle/hdwallet-provider');
|
2
|
+
const Web3HttpProvider = require('web3-providers-http');
|
3
|
+
|
4
|
+
const options = {
|
5
|
+
timeout: 120000,
|
6
|
+
};
|
7
|
+
|
8
|
+
module.exports = {
|
9
|
+
networks: {
|
10
|
+
test: {
|
11
|
+
host: 'localhost',
|
12
|
+
port: 8545,
|
13
|
+
network_id: '*',
|
14
|
+
},
|
15
|
+
},
|
16
|
+
compilers: {
|
17
|
+
solc: {
|
18
|
+
version: '0.8.4', // Fetch exact version from solc-bin (default: truffle's version)
|
19
|
+
settings: {
|
20
|
+
// See the solidity docs for advice about optimization and evmVersion
|
21
|
+
optimizer: {
|
22
|
+
enabled: true,
|
23
|
+
runs: 200,
|
24
|
+
},
|
25
|
+
},
|
26
|
+
},
|
27
|
+
},
|
28
|
+
db: {
|
29
|
+
enabled: false,
|
30
|
+
},
|
31
|
+
};
|