The contribution contract implements an ERC721 interface which represents any contribution. The contributions are non-fungible (as opposed to the Kredits tokens) and can be not be transferred. The contract stores the history of any contribution. Contributions can be claimed which will issue the Kredits tokens to the contributor. This is an early implementation and misses some access control and probably more things.
14 lines
514 B
JavaScript
14 lines
514 B
JavaScript
var Registry = artifacts.require('./Registry.sol');
|
|
var Contribution = artifacts.require('./Contribution.sol');
|
|
|
|
module.exports = function(deployer) {
|
|
deployer.deploy(Contribution).then(function(contribution) {
|
|
console.log('Registry address: ', Registry.address);
|
|
console.log('Contribution address: ', Contribution.address);
|
|
Registry.deployed().then(function(registry) {
|
|
registry.addVersion('Contribution', Contribution.address);
|
|
registry.createProxy('Contribution', 1);
|
|
});
|
|
});
|
|
};
|