@oumla/sdk 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ # Changesets
2
+
3
+ Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4
+ with multi-package repos, or single-package repos to help you version and publish your code. You can
5
+ find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6
+
7
+ We have a quick list of common questions to get you started engaging with this project in
8
+ [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
@@ -0,0 +1,11 @@
1
+ {
2
+ "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json",
3
+ "changelog": "@changesets/cli/changelog",
4
+ "commit": false,
5
+ "fixed": [],
6
+ "linked": [],
7
+ "access": "public",
8
+ "baseBranch": "master",
9
+ "updateInternalDependencies": "patch",
10
+ "ignore": []
11
+ }
package/.prettierrc ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "trailingComma": "es5",
3
+ "tabWidth": 4,
4
+ "semi":true,
5
+ "singleQuote": true
6
+
7
+ }
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # Oumla SDK
2
+
3
+ Oumla SDK is the fastest way to build in the blockchain. It enables you to generate wallet, addresses, and create transaction using our secure and scalable infrastructure.
4
+
5
+ an example on how to create a wallet
6
+
7
+ ```ts
8
+ import { Oumla } from '@oumla/sdk';
9
+
10
+ const wallet = client.generateWallet({
11
+ reference: '0d2fcf49-36ce-4160-bbea-ead3887e1b26',
12
+ network: 'BTC',
13
+ });
14
+ ```
15
+
16
+ ### for more information please visit our [docs](https://docs.oumla.com)