Skip to content

Commit

Permalink
chore: added readme and license
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielMartinezRodriguez committed Mar 14, 2024
1 parent 79d531b commit fc745a5
Show file tree
Hide file tree
Showing 6 changed files with 1,388 additions and 2 deletions.
674 changes: 674 additions & 0 deletions packages/config/LICENSE

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions packages/config/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Config

A TypeScript library designed to provide straightforward access to the Stability Testnet and Global Trust Network configurations. This package simplifies the process of integrating blockchain network configurations into your projects, offering details like network IDs, names, native currencies, RPC URLs, and smart contract addresses.

## EXAMPLE

```ts
import { Blockchains, networks } from "@stabilityprotocol/config";

console.log(
"Global Trust Network Chain Id:",
networks[Blockchains.STABILITY_GTN].id
);
```

## License

This library is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stabilityprotocol/config",
"version": "1.0.2",
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Loading

0 comments on commit fc745a5

Please sign in to comment.