Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Finschia/finschia-js
finschia-js is javascript sdk for Finschia
https://github.com/Finschia/finschia-js
blockchain
Last synced: 2 months ago
JSON representation
finschia-js is javascript sdk for Finschia
- Host: GitHub
- URL: https://github.com/Finschia/finschia-js
- Owner: Finschia
- License: apache-2.0
- Created: 2022-01-17T07:28:45.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-17T06:28:02.000Z (7 months ago)
- Last Synced: 2024-08-01T13:36:52.508Z (5 months ago)
- Topics: blockchain
- Language: TypeScript
- Homepage:
- Size: 16.9 MB
- Stars: 7
- Watchers: 7
- Forks: 4
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-ccamel - Finschia/finschia-js - finschia-js is javascript sdk for Finschia (TypeScript)
README
# Finschia-js
finschia-js is useful tool to power JavaScript based client solutions ranging
from Web apps/explorers over browser extensions to server-side clients.## Packages
finschia-js is a library that consists of many smaller npm packages within the
[@finschia namespace](https://www.npmjs.com/org/finschia), a so called monorepo.
Here are some of them to get an idea:| Package | Description | Latest |
|-----------------------------------------|-------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
| [@finschia/finschia](packages/finschia) | A client library for the Finschia v1.0.0+ | [![npm version](https://img.shields.io/npm/v/@finschia/finschia.svg)](https://www.npmjs.com/package/@finschia/finschia) |## Supported JS environments
Currently, the codebase supports the following runtime environments:
1. Node.js 12+
2. Modern browsers (Chromium/Firefox/Safari, no Internet Explorer or
[Edge Spartan](https://en.wikipedia.org/wiki/Microsoft_Edge#Development))
3. Browser extensions (Chromium/Firefox)Our current JavaScript target standard is ES2018. We use WebAssembly to
implement certain cryptographic functions.We're happy to adjust this list according to users' needs as long as you don't
ask for Internet Explorer support. If your environment does not support Wasm, we
can work on a solution with swappable implementations.## Webpack Configs
With WebPack 5, you have to be explicit about the usage of Node.js types and
modules that were simply replaced with re-implementations for browsers in
Webpack 4.Configs for v1.0.0 and later:
```js
module.exports = [
{
// ...
plugins: [
...,
new webpack.ProvidePlugin({
Buffer: ["buffer", "Buffer"],
}),
],
// ...
resolve: {
fallback: {
buffer: false,
crypto: false,
events: false,
path: false,
stream: false,
string_decoder: false,
},
},
},
];
```## Get in touch
The finschia-js development team is happy to get in touch with you for all
questions and suggestions.- [GitHub issues](https://github.com/Finschia/finschia-js/issues) for bugs and
feature requests## Development
See [HACKING.md](HACKING.md).