├── README.md ├── contracts ├── Migrations.sol └── SparkleToken.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_sparkletoken.js ├── package.json ├── truffle-config.js └── truffle.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparkleloyalty/Sparkle-Token/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparkleloyalty/Sparkle-Token/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/SparkleToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparkleloyalty/Sparkle-Token/HEAD/contracts/SparkleToken.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparkleloyalty/Sparkle-Token/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_sparkletoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparkleloyalty/Sparkle-Token/HEAD/migrations/2_deploy_sparkletoken.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparkleloyalty/Sparkle-Token/HEAD/package.json -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparkleloyalty/Sparkle-Token/HEAD/truffle-config.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparkleloyalty/Sparkle-Token/HEAD/truffle.js --------------------------------------------------------------------------------