-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
243 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,6 +67,7 @@ | |
"muratiger", | ||
"npmjs", | ||
"npmrc", | ||
"nprogress", | ||
"pako", | ||
"playbar", | ||
"prefixer", | ||
|
69 changes: 69 additions & 0 deletions
69
docs/XYOracleNetwork/sdk-xyo-client-android/main/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
[![logo][]](https://xyo.network) | ||
|
||
# sdk-xyo-client-android | ||
|
||
[![jitpack-badge][]][jitpack-link] | ||
[![codacy-badge][]][codacy-link] | ||
[![codeclimate-badge][]][codeclimate-link] | ||
[![snyk-badge][]][snyk-link] | ||
|
||
> The XYO Foundation provides this source code available in our efforts to advance the understanding of the XYO Procotol and its possible uses. We continue to maintain this software in the interest of developer education. Usage of this source code is not intended for production. | ||
## Table of Contents | ||
|
||
- [Title](#sdk-xyo-client-android) | ||
- [Description](#description) | ||
- [Instructions](#instructions) | ||
- [Maintainers](#maintainers) | ||
- [License](#license) | ||
- [Credits](#credits) | ||
|
||
## Description | ||
|
||
Primary SDK for using the XYO Protocol 2.0 from Android. | ||
|
||
## Instructions | ||
|
||
### Adding to Project | ||
[See instructions on JitPack](https://jitpack.io/#xyoraclenetwork/sdk-xyo-client-android) | ||
|
||
### Configure XYO Panel | ||
```kotlin | ||
var panel = XyoPanel(context, "test", listOf(NodeClient), listOf(XyoSystemInfoWitness())) | ||
``` | ||
|
||
### Generate BoundWitness report | ||
```kotlin | ||
var bw = panel.reportAsync().bw | ||
``` | ||
|
||
### Proguard Issues | ||
|
||
> There seems to be issues using proguard with the SDK, or more specifically, Moshi, where it will remove generated classes | ||
> We strongly recommend that you use R8 over Proguard. | ||
## Maintainers | ||
|
||
- Arie Trouw | ||
|
||
## License | ||
|
||
See the [LICENSE](LICENSE) file for license details | ||
|
||
## Credits | ||
|
||
Made with 🔥 and ❄️ by [XYO](https://xyo.network) | ||
|
||
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png | ||
|
||
[jitpack-badge]: https://jitpack.io/v/xyoraclenetwork/sdk-xyo-client-android.svg | ||
[jitpack-link]: https://jitpack.io/#xyoraclenetwork/sdk-xyo-client-android | ||
|
||
[codacy-badge]: https://app.codacy.com/project/badge/Grade/e5647b5338044a958e18c0fe91b4ed4f | ||
[codacy-link]: https://www.codacy.com/gh/XYOracleNetwork/sdk-xyo-client-swift/dashboard?utm_source=github.com&utm_medium=referral&utm_content=XYOracleNetwork/sdk-xyo-client-android&utm_campaign=Badge_Grade | ||
|
||
[codeclimate-badge]: https://api.codeclimate.com/v1/badges/127abaccfe85048dcf38/maintainability | ||
[codeclimate-link]: https://codeclimate.com/github/XYOracleNetwork/sdk-xyo-client-android/maintainability | ||
|
||
[snyk-badge]: https://snyk.io/test/github/XYOracleNetwork/sdk-xyo-client-android/badge.svg | ||
[snyk-link]: https://snyk.io/test/github/XYOracleNetwork/sdk-xyo-client-android |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
[![logo][]](https://xyo.network) | ||
|
||
# sdk-xyo-client-swift | ||
|
||
[![main-build][]][main-build-link] | ||
[![codacy-badge][]][codacy-link] | ||
[![codeclimate-badge][]][codeclimate-link] | ||
|
||
> The XYO Foundation provides this source code available in our efforts to advance the understanding of the XYO Procotol and its possible uses. We continue to maintain this software in the interest of developer education. Usage of this source code is not intended for production. | ||
## Table of Contents | ||
|
||
- [Title](#sdk-xyo-client-swift) | ||
- [Description](#description) | ||
- [Instructions](#instructions) | ||
- [Maintainers](#maintainers) | ||
- [License](#license) | ||
- [Credits](#credits) | ||
|
||
## Description | ||
|
||
Primary SDK for using the XYO Protocol 2.0 from Swift. Designed to work in both Mac OS and iOS. | ||
|
||
## Instructions | ||
|
||
### Add Package | ||
```swift | ||
dependencies: [ | ||
.package(url: "https://github.com/XYOracleNetwork/sdk-xyo-client-swift.git", .upToNextMajor(from: "2.0.3")), | ||
], | ||
``` | ||
|
||
### Configure Api | ||
```swift | ||
let panel = XyoPanel(archive: 'test', apiDomain: "https://api.archivist.xyo.network", witnesses: [XyoSystemInfoWitness()]) | ||
``` | ||
|
||
### Generate BoundWitness report | ||
```swift | ||
panel.report(nil, nil) | ||
``` | ||
|
||
## Maintainers | ||
|
||
- Arie Trouw | ||
|
||
## License | ||
|
||
See the [LICENSE](LICENSE) file for license details | ||
|
||
## Credits | ||
|
||
Made with 🔥 and ❄️ by [XYO](https://xyo.network) | ||
|
||
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png | ||
|
||
[main-build]: https://github.com/XYOracleNetwork/sdk-xyo-client-swift/actions/workflows/build-main.yml/badge.svg | ||
[main-build-link]: https://github.com/XYOracleNetwork/sdk-xyo-client-swift/actions/workflows/build-main.yml | ||
|
||
[codacy-badge]: https://app.codacy.com/project/badge/Grade/c0ba3913b706492f99077eb5e6b4760c | ||
[codacy-link]: https://www.codacy.com/gh/XYOracleNetwork/sdk-xyo-client-swift/dashboard?utm_source=github.com&utm_medium=referral&utm_content=XYOracleNetwork/sdk-xyo-client-swift&utm_campaign=Badge_Grade | ||
|
||
[codeclimate-badge]: https://api.codeclimate.com/v1/badges/d051b36c73cd52e4030a/maintainability | ||
[codeclimate-link]: https://codeclimate.com/github/XYOracleNetwork/sdk-xyo-client-swift/maintainability |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,6 @@ | |
"description": "View dApps using XYO Technology", | ||
"type": "generated-index" | ||
}, | ||
"position": 3 | ||
"position": 4 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 5 | ||
sidebar_position: 6 | ||
--- | ||
|
||
# Glossary | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"label": "Partner dApps", | ||
"link": { | ||
"description": "Partner dApps using XYO Technology", | ||
"type": "generated-index" | ||
}, | ||
"position": 5 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
sidebar_position: 1 | ||
--- | ||
# Foreventory | ||
Learn more about sample dApps created by the XYO team | ||
|
||
## Netflix Reports | ||
|
||
## NFT Ratings | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
sidebar_position: 3 | ||
--- | ||
|
||
import Readme from "../XYOracleNetwork/sdk-xyo-client-android/main/README.md" | ||
|
||
# Android/Kotlin/Java SDK | ||
|
||
Note: This SDK in not fully compatible with XYO 2.0. Expected Update in Q1 2024. | ||
|
||
<Readme/> | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
sidebar_position: 4 | ||
--- | ||
|
||
import Readme from "../XYOracleNetwork/sdk-xyo-client-swift/main/README.md" | ||
|
||
# Swift/iOS/OSX SDK | ||
|
||
Note: This SDK in not fully compatible with XYO 2.0. Expected Update in Q1 2024. | ||
|
||
<Readme/> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default } from './NProgressBar' | ||
export * from './NProgressBar' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters