Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 EMURGO
Copyright (c) 2020 MitchyCola

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ This is a library, written in Rust, for serialization & deserialization of data

##### NPM packages

- [NodeJS WASM package](https://www.npmjs.com/package/@emurgo/cardano-serialization-lib-nodejs)
- [Browser (chrome/firefox) WASM package](https://www.npmjs.com/package/@emurgo/cardano-serialization-lib-browser)
- [Browser (pure JS - no WASM) ASM.js package](https://www.npmjs.com/package/@emurgo/cardano-serialization-lib-asmjs)
- [NodeJS WASM package](https://www.npmjs.com/package/@mitchycola/cardano-serialization-lib-nodejs)
- [Browser (chrome/firefox) WASM package](https://www.npmjs.com/package/@mitchycola/cardano-serialization-lib-browser)
- [Browser (pure JS - no WASM) ASM.js package](https://www.npmjs.com/package/@mitchycola/cardano-serialization-lib-asmjs)

##### Rust crates

Expand Down
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -118,16 +118,16 @@ To publish new versions to NPM (only needed if you are an admin of this project)
npm run js:publish-browser
npm run js:publish-asm

.. _NodeJS WASM package: https://www.npmjs.com/package/@emurgo/cardano-serialization-lib-nodejs
.. _Browser (chrome/firefox) WASM package: https://www.npmjs.com/package/@emurgo/cardano-serialization-lib-browser
.. _Browser (pure JS - no WASM) ASM.js package: https://www.npmjs.com/package/@emurgo/cardano-serialization-lib-asmjs
.. _NodeJS WASM package: https://www.npmjs.com/package/@mitchycola/cardano-serialization-lib-nodejs
.. _Browser (chrome/firefox) WASM package: https://www.npmjs.com/package/@mitchycola/cardano-serialization-lib-browser
.. _Browser (pure JS - no WASM) ASM.js package: https://www.npmjs.com/package/@mitchycola/cardano-serialization-lib-asmjs
.. _React-Native mobile bindings: https://github.com/Emurgo/react-native-haskell-shelley
.. _cddl-codegen: https://github.com/Emurgo/cddl-codegen
.. _Typescript: https://www.typescriptlang.org/
.. _Flow: https://flow.org/
.. _here: /rust/pkg/cardano_serialization_lib.js.flow
.. _example: /example
.. _Byron WASM bindings: https://github.com/input-output-hk/js-cardano-wasm/tree/master/cardano-wallet
.. _Jormungandr WASM bindings: https://github.com/emurgo/js-chain-libs
.. _Jormungandr WASM bindings: https://github.com/mitchycola/js-chain-libs
.. _CDDL: http://cbor.io/tools.html
.. _link: https://github.com/input-output-hk/cardano-ledger-specs/tree/master/byron/cddl-spec
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
# -- Project information -----------------------------------------------------

project = 'cardano-serialization-lib Documentation'
copyright = '2020, EMURGO'
author = 'EMURGO'
copyright = '2020, MitchyCola'
author = 'MitchyCola'

# The full version, including alpha/beta/rc tags
release = '1.0.0'
Expand Down
2 changes: 1 addition & 1 deletion doc/getting-started/minting-nfts.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This example mints nfts directly to an account on testnet.
code taken from (here)[https://github.com/ozgrakkurt/cardano-mint-nft]

```javascript
import CardanoWasm from "@emurgo/cardano-serialization-lib-nodejs";
import CardanoWasm from "@mitchycola/cardano-serialization-lib-nodejs";
import axios from "axios";
import cbor from "cbor";

Expand Down
8 changes: 4 additions & 4 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/Emurgo/cardano-serialization-lib.git"
"url": "git+https://github.comMitchyCola/cardano-serialization-lib.git"
},
"author": "EMURGO",
"author": "MitchyCola",
"license": "MIT",
"bugs": {
"url": "https://github.com/Emurgo/cardano-serialization-lib/issues"
"url": "https://github.comMitchyCola/cardano-serialization-lib/issues"
},
"type": "module",
"homepage": "https://github.com/Emurgo/cardano-serialization-lib#readme",
"homepage": "https://github.comMitchyCola/cardano-serialization-lib#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "4.2.11",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
"pre-push": "npm run rust:test && npm run rust:build-nodejs"
}
},
"author": "EMURGO",
"author": "MitchyCola",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Emurgo/cardano-serialization-lib.git"
"url": "git+https://github.comMitchyCola/cardano-serialization-lib.git"
},
"devDependencies": {
"flowgen": "1.11.0",
Expand Down
Loading