@energyweb/origin-247-claim v3.2.1-alpha.1640702236.0
Origin 24/7 SDK - Claim module
origin-247-claim module is responsible for matching generations with consumptions, and claiming certificates on the blockchain.
It also stores matching results.
Installation
- Install
@energyweb/origin-247-claimand origin-247-certificate - Import
ClaimModuleinto your application:
import { ClaimModule } from '@energyweb/origin-247-claim';
@Module({
imports: [ClaimModule]
})
export class SomeModule {}- Add
entitiestoTypeORM.forRootentities:
import { entities as ClaimEntitites } from '@energyweb/origin-247-claim';
...
TypeORM.forRoot({
entities: [
...ClaimEntitites
]
})- Run migrations on startup:
// package.json
{
"scripts": {
"typeorm:run:claim": "node_modules/typeorm/cli.js migration:run --config node_modules/@energyweb/origin-247-claim/dist/js/ormconfig.js"
}
}Usage
- Import module (as in installation step)
- Inject
ClaimFacadeinto your service, and use it to perform matching and get matching results.
Claiming example
await this.claimFacade.claim({
algorithmFn: matchAlgorithm({
// imported from `@energyweb/origin-247-claim` and customized, details later on
buyingPriority,
cfeTargets,
sellingPriority
}),
claimCustomizationFn: (
matches // before doing the claiming you need to match certain interface
) =>
matches.map((match) => ({
certificateId: match.generation.certificateId,
energyValue: match.volume.toString(),
claimData: {
beneficiary: consumers.find((c) => c.meterId === match.consumption.consumerId)!.did,
countryCode: '',
location: '',
periodEndDate: '',
periodStartDate: '',
purpose: ''
},
forAddress: sellerAddress
})),
data: {
consumptions,
generations
},
timeframe: timeFrame // this time frame will be saved in matching results
});Claiming algorithm
Any algorithm can be used as an input to .claim function, as long as it meets interface.
Any additional fields present on IConsumption or IGeneration (besides those defined in interface), that will be returned as matches from matching algorithm,
will be saved as result metadata.
By default we expose some algorithms ready to be used
SpreadMatcher.spreadMatcher- very customizable algorithm, supporting prioritization, and spreading matches equally over devices of equal priority.
Matching results
Using .findMatches, .findLeftoverConsumption, .findExcessGeneration you can query for any devices and timeframes, and receive raw data,
that later on can be aggregated. Metadata field is explained above.
Testing applications with ClaimModule
ClaimForUnitTestsModule is exported, that uses CertificateForUnitTestsModule (247-sdk) and in-memory repositories to simplify testing,
so no configuration for CertificateModule is necessary (like blockchain or redis configuration), and no database setup.
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago