![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@tonomy/antelope-ssi-toolkit
Advanced tools
A toolkit allowing Antelope (formerly EOSIO) accounts to use SSI components:
A toolkit allowing Antelope (formerly EOSIO) accounts to use SSI components:
npm i @tonomy/antelope-ssi-toolkit
import { createSigner, issue, verify } from '@tonomy/antelope-ssi-toolkit';
import { PrivateKey } from "@greymass/eosio";
const vc = {
'@context': ['https://www.w3.org/2018/credentials/v1'],
id: "https://example.com/id/1234324",
type: ['VerifiableCredential'],
issuer: {
id: `did:antelope:telos:university`,
},
issuanceDate: (new Date()).toISOString(),
credentialSubject: {
degree: {
type: 'BachelorDegree',
name: 'Bachelor of Music'
}
}
}
const issuer = {
did: "did:antelope:telos:university#active",
signer: createSigner(PrivateKey.from("PVT_K1_2bfGi9rYsXQSXXTvJbDAPhHLQUojjaNLomdm3cEJ1XTzMqUt3V")),
alg: 'ES256K-R'
}
const vcJwt = await issue(vc, {
issuer
});
const isVerified = await verify(vcJwt);
TSDX scaffolds your new library inside /src
.
To run TSDX, use:
npm start # or yarn start
This builds to /dist
and runs the project in watch mode so any edits you save inside src
causes a rebuild to /dist
.
To do a one-off build, use npm run build
or yarn build
.
To run tests, use npm test
or yarn test
.
npm run build
npm publish
FAQs
A toolkit allowing Antelope (formerly EOSIO) accounts to use SSI components:
The npm package @tonomy/antelope-ssi-toolkit receives a total of 2 weekly downloads. As such, @tonomy/antelope-ssi-toolkit popularity was classified as not popular.
We found that @tonomy/antelope-ssi-toolkit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.