This library is specifically crafted for a particular use case.
deno add @studiowebux/cardano
see __tests__/*.test.ts
and examples/
for examples.
git tag -a X.Y.Z -m "Version X.Y.Z" git push origin tags/X.Y.Z
Branch Checkout:
git checkout -b <feature|fix|release|chore|hotfix>/prefix-name
Your branch name must starts with [feature|fix|release|chore|hotfix] and use a / before the name; Use hyphens as separator; The prefix correspond to your Kanban tool id (e.g. abc-123)
Keep your branch synced:
git fetch origin git rebase origin/master
Commit your changes:
git add . git commit -m "<feat|ci|test|docs|build|chore|style|refactor|perf|BREAKING CHANGE>: commit message"
Follow this convention commitlint for your commit message structure
Push your changes:
git push origin <feature|fix|release|chore|hotfix>/prefix-name
Examples:
git checkout -b release/v1.15.5 git checkout -b feature/abc-123-something-awesome git checkout -b hotfix/abc-432-something-bad-to-fix
git commit -m "docs: added awesome documentation" git commit -m "feat: added new feature" git commit -m "test: added tests"
Distributed under the MIT License. See LICENSE for more information.
Add Package
deno add jsr:@studiowebux/cardano
Import symbol
import * as cardano from "@studiowebux/cardano";
---- OR ----
Import directly with a jsr specifier
import * as cardano from "jsr:@studiowebux/cardano";
Add Package
npx jsr add @studiowebux/cardano
Import symbol
import * as cardano from "@studiowebux/cardano";
Add Package
yarn dlx jsr add @studiowebux/cardano
Import symbol
import * as cardano from "@studiowebux/cardano";
Add Package
pnpm dlx jsr add @studiowebux/cardano
Import symbol
import * as cardano from "@studiowebux/cardano";
Add Package
bunx jsr add @studiowebux/cardano
Import symbol
import * as cardano from "@studiowebux/cardano";