Update links (#24)

This commit is contained in:
fryorcraken.eth 2023-02-14 09:40:08 +11:00 committed by GitHub
parent 9d7856658b
commit 8449306167
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 16 deletions

View File

@ -11,7 +11,7 @@ You can contribute to Waku in several manners:
The Waku Network is a permissionless, decentralized set of nodes. The Waku Network is a permissionless, decentralized set of nodes.
Anyone can run their own node, use and support the network. Anyone can run their own node, use and support the network.
Learn more [here](https://github.com/status-im/nwaku/tree/master/docs/operators). Learn more [here](https://github.com/waku-org/nwaku/tree/master/docs/operators).
## Build Your Own Waku Application ## Build Your Own Waku Application
@ -35,7 +35,7 @@ potential bounties are marked with the label `bounty` on GitHub issues.
Repositories: Repositories:
- [js-waku](https://github.com/waku-org/js-waku) - [js-waku](https://github.com/waku-org/js-waku)
- [nwaku](https://github.com/status-im/nwaku) - [nwaku](https://github.com/waku-org/nwaku)
- [go-waku](https://github.com/waku-org/go-waku) - [go-waku](https://github.com/waku-org/go-waku)
## Research ## Research
@ -48,7 +48,7 @@ Learn more at https://vac.dev/
## Other Ways of Contributing ## Other Ways of Contributing
If you are keen to contribute but not sure how, If you are keen to contribute but not sure how,
join the discussion on [Vac Discord](https://discord.gg/j5pGbn7MHZ) join the discussion on [Vac Discord](https://discord.gg/Nrac59MfSX)
or the [Waku Telegram Group](https://t.me/waku_org). or the [Waku Telegram Group](https://t.me/waku_org).
Waku is a public good, we are always welcoming help from the community. Waku is a public good, we are always welcoming help from the community.

View File

@ -74,7 +74,7 @@ XMTP is using Waku v2 for their open protocol and network for secure web3 messag
A nim implementation of the Waku v2 protocol. A nim implementation of the Waku v2 protocol.
Reference client and flagship implementation. Reference client and flagship implementation.
[nwaku repository](https://github.com/status-im/nwaku) [nwaku repository](https://github.com/waku-org/nwaku)
### js-waku ### js-waku

View File

@ -9,4 +9,4 @@ By running your own node you provide additional nodes for the Waku Network.
In the future, we intend to design and implement incentivization within some Waku protocols, In the future, we intend to design and implement incentivization within some Waku protocols,
so you can be rewarded when supporting the network. so you can be rewarded when supporting the network.
Check out [the nwaku guide for operators](https://github.com/status-im/nwaku/tree/master/docs/operators) to run your own node. Check out [the nwaku guide for operators](https://github.com/waku-org/nwaku/tree/master/docs/operators) to run your own node.

View File

@ -17,11 +17,11 @@ and access the Waku network using the available JSON RPC API.
Docs: Docs:
- [Use nwaku's JSON RPC API](https://github.com/status-im/nwaku/blob/master/docs/tutorial/jsonrpc-api.md) - [Use nwaku's JSON RPC API](https://github.com/waku-org/nwaku/blob/master/docs/tutorial/jsonrpc-api.md)
### HTTP REST API ### HTTP REST API
[Work is in progress](https://github.com/status-im/nwaku/issues/727) to add an HTTP REST API to nwaku. [Work is in progress](https://github.com/waku-org/nwaku/issues/727) to add an HTTP REST API to nwaku.
### Waku as a library ### Waku as a library
@ -29,10 +29,10 @@ It is possible to integrate Waku as a library.
| Your Application's language | What to Use | Links | | Your Application's language | What to Use | Links |
| --------------------------- | ------------------------ | ----------------------------------------------------------------------------------- | | --------------------------- | ------------------------ | ----------------------------------------------------------------------------------- |
| Nim | nwaku as a library | [repository](https://github.com/status-im/nwaku/tree/master/waku/v2) | | Nim | nwaku as a library | [repository](https://github.com/waku-org/nwaku/tree/master/waku/v2) |
| Go | go-waku as a library | [tutorials](https://github.com/waku-org/go-waku#tutorials-and-documentation) | | Go | go-waku as a library | [tutorials](https://github.com/waku-org/go-waku#tutorials-and-documentation) |
| C/C++/etc | go-waku using C-Bindings | [C example](https://github.com/status-im/go-waku/tree/master/examples/c-bindings) | | C/C++/etc | go-waku using C-Bindings | [C example](https://github.com/waku-org/go-waku/tree/master/examples/c-bindings) |
| C# | go-waku using C-Bindings | [C# example](https://github.com/status-im/go-waku/tree/master/examples/waku-csharp) | | C# | go-waku using C-Bindings | [C# example](https://github.com/waku-org/go-waku/tree/master/examples/waku-csharp) |
| Rust | Waku Rust Bindings | [Rust example](https://github.com/waku-org/waku-rust-bindings/tree/master/examples) | | Rust | Waku Rust Bindings | [Rust example](https://github.com/waku-org/waku-rust-bindings/tree/master/examples) |
## Browser Application ## Browser Application
@ -47,9 +47,9 @@ Docs: https://js.waku.guide/
You can run Waku on mobile phones, Android and iOS are supported: You can run Waku on mobile phones, Android and iOS are supported:
| Your Application's language | What to Use | Links | | Your Application's language | What to Use | Links |
| --------------------------- | -------------------------- | ------------------------------------------------------------------------------------------ | | --------------------------- | -------------------------- | ----------------------------------------------------------------------------------------- |
| Swift (iOS) | go-waku using C-Bindings | [Swift example](https://github.com/status-im/go-waku/tree/master/examples/swift-waku) | | Swift (iOS) | go-waku using C-Bindings | [Swift example](https://github.com/waku-org/go-waku/tree/master/examples/swift-waku) |
| Kotlin (Android) | go-waku using C-Bindings | [Kotlin example](https://github.com/status-im/go-waku/tree/master/examples/android-kotlin) | | Kotlin (Android) | go-waku using C-Bindings | [Kotlin example](https://github.com/waku-org/go-waku/tree/master/examples/android-kotlin) |
| Go | go-waku as a library | [tutorials](https://github.com/status-im/go-waku#tutorials-and-documentation) | | Go | go-waku as a library | [tutorials](https://github.com/waku-org/go-waku#tutorials-and-documentation) |
| React Native | go-waku as a native module | [repository](https://github.com/status-im/waku-react-native) | | React Native | go-waku as a native module | [repository](https://github.com/waku-org/waku-react-native) |