Pin reimbursements #16

Merged
raucao merged 2 commits from feature/14-reimbursements into master 2023-06-18 10:35:34 +00:00
3 changed files with 15 additions and 11 deletions

View File

@ -29,8 +29,7 @@ class IpfsPinner {
const contracts = [ const contracts = [
this.kredits.Contributor, this.kredits.Contributor,
this.kredits.Contribution, this.kredits.Contribution,
// TODO uncomment once we have data here this.kredits.Reimbursement
// this.kredits.Reimbursement
] ]
for (const contract of contracts) { for (const contract of contracts) {
@ -72,6 +71,11 @@ class IpfsPinner {
.then(data => { return this.ipfsApi.pin(data); }) .then(data => { return this.ipfsApi.pin(data); })
.then(callback); .then(callback);
}); });
this.kredits.Reimbursement.on('ReimbursementAdded', (id) => {
this.kredits.Reimbursement.getData(id)
.then(data => { return this.ipfsApi.pin(data); })
.then(callback);
});
} }
async _pinAllFromContract (contract, itemCount, progressBar) { async _pinAllFromContract (contract, itemCount, progressBar) {
@ -91,7 +95,7 @@ class IpfsPinner {
cid = await ipfsApi.pin(data); cid = await ipfsApi.pin(data);
debug(`Pinned ${contract.constructor.name} #${id} at ${cid}`); debug(`Pinned ${contract.constructor.name} #${id} at ${cid}`);
} catch(e) { } catch(e) {
debug(`Error while trying to load an pin ${contract.constructor.name} #${id}:`) debug(`Error while trying to load and pin ${contract.constructor.name} #${id}:`)
debug(e); debug(e);
debug(`\nTrying again...`); debug(`\nTrying again...`);
loadAndPin(id); loadAndPin(id);

14
package-lock.json generated
View File

@ -9,7 +9,7 @@
"version": "2.1.0", "version": "2.1.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@kredits/contracts": "^7.0.0", "@kredits/contracts": "^7.1.0",
"cli-progress": "^3.11.2", "cli-progress": "^3.11.2",
"debug": "^4.3.4", "debug": "^4.3.4",
"yargs": "^17.6.0" "yargs": "^17.6.0"
@ -721,9 +721,9 @@
"integrity": "sha512-yOTK5WiXFDNAitPByMabE365aEEzFHgSUSgAssbJWt7BZ80HQSVu8XWrQiTbFbCkoIBmXwPP/RoxgXJQVgZTFQ==" "integrity": "sha512-yOTK5WiXFDNAitPByMabE365aEEzFHgSUSgAssbJWt7BZ80HQSVu8XWrQiTbFbCkoIBmXwPP/RoxgXJQVgZTFQ=="
}, },
"node_modules/@kredits/contracts": { "node_modules/@kredits/contracts": {
"version": "7.0.0", "version": "7.1.0",
"resolved": "https://registry.npmjs.org/@kredits/contracts/-/contracts-7.0.0.tgz", "resolved": "https://registry.npmjs.org/@kredits/contracts/-/contracts-7.1.0.tgz",
"integrity": "sha512-UITEkP3njFNI2WS7v5ivGE3ruFwdWPWuJZrhBXBEAZbtmr1t/p1K7jkmmjyLDUeKXJ/udMlH6oQMCgh7P/aHNg==", "integrity": "sha512-RyZdKj6Ohr4UwoQ5Ne5CtShG/9j+v4EjDMvKmTwAU7uY1rbxpEWfMFo1xuYdAsT6ZVhiuMjVY3RG/8kPZVv9NQ==",
"dependencies": { "dependencies": {
"@kosmos/schemas": "^3.1.0", "@kosmos/schemas": "^3.1.0",
"ethers": "^5.4.7", "ethers": "^5.4.7",
@ -2245,9 +2245,9 @@
"integrity": "sha512-yOTK5WiXFDNAitPByMabE365aEEzFHgSUSgAssbJWt7BZ80HQSVu8XWrQiTbFbCkoIBmXwPP/RoxgXJQVgZTFQ==" "integrity": "sha512-yOTK5WiXFDNAitPByMabE365aEEzFHgSUSgAssbJWt7BZ80HQSVu8XWrQiTbFbCkoIBmXwPP/RoxgXJQVgZTFQ=="
}, },
"@kredits/contracts": { "@kredits/contracts": {
"version": "7.0.0", "version": "7.1.0",
"resolved": "https://registry.npmjs.org/@kredits/contracts/-/contracts-7.0.0.tgz", "resolved": "https://registry.npmjs.org/@kredits/contracts/-/contracts-7.1.0.tgz",
"integrity": "sha512-UITEkP3njFNI2WS7v5ivGE3ruFwdWPWuJZrhBXBEAZbtmr1t/p1K7jkmmjyLDUeKXJ/udMlH6oQMCgh7P/aHNg==", "integrity": "sha512-RyZdKj6Ohr4UwoQ5Ne5CtShG/9j+v4EjDMvKmTwAU7uY1rbxpEWfMFo1xuYdAsT6ZVhiuMjVY3RG/8kPZVv9NQ==",
"requires": { "requires": {
"@kosmos/schemas": "^3.1.0", "@kosmos/schemas": "^3.1.0",
"ethers": "^5.4.7", "ethers": "^5.4.7",

View File

@ -20,7 +20,7 @@
], ],
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@kredits/contracts": "^7.0.0", "@kredits/contracts": "^7.1.0",
"cli-progress": "^3.11.2", "cli-progress": "^3.11.2",
"debug": "^4.3.4", "debug": "^4.3.4",
"yargs": "^17.6.0" "yargs": "^17.6.0"