├── .gitignore ├── contracts ├── Migrations.sol └── SimpleNameRegistry.sol ├── deploy_mnemonic.key ├── index.js ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── test ├── interface.js └── simplenameregistry.js └── truffle.js /.gitignore: -------------------------------------------------------------------------------- 1 | deploy_mnemonic.key 2 | node_modules 3 | -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSysMesh/example-truffle-library/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/SimpleNameRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSysMesh/example-truffle-library/HEAD/contracts/SimpleNameRegistry.sol -------------------------------------------------------------------------------- /deploy_mnemonic.key: -------------------------------------------------------------------------------- 1 | REPLACE WITH YOUR OWN 12 WORD MNEMONIC 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSysMesh/example-truffle-library/HEAD/index.js -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSysMesh/example-truffle-library/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSysMesh/example-truffle-library/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSysMesh/example-truffle-library/HEAD/package.json -------------------------------------------------------------------------------- /test/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSysMesh/example-truffle-library/HEAD/test/interface.js -------------------------------------------------------------------------------- /test/simplenameregistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSysMesh/example-truffle-library/HEAD/test/simplenameregistry.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSysMesh/example-truffle-library/HEAD/truffle.js --------------------------------------------------------------------------------