docs: Change links to serum org

This commit is contained in:
armaniferrante 2021-01-02 16:29:23 -08:00
parent 322c9bb548
commit 7301145de5
No known key found for this signature in database
GPG Key ID: 58BEF301E91F7828
3 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ Anchor is a framework for Solana's [Sealevel](https://medium.com/solana-labs/sea
If you're familiar with developing in Ethereum's [Solidity](https://docs.soliditylang.org/en/v0.7.4/) and [web3.js](https://github.com/ethereum/web3.js) or Parity's [Ink!](https://github.com/paritytech/ink), then the experience will be familiar. Although the DSL syntax and semantics are targeted at Solana, the high level flow of writing RPC request handlers, emitting an IDL, and generating clients from IDL is the same.
Here, we'll walkthrough a tutorial demonstrating how to use Anchor. To skip the tutorial and jump straight to a full example, go [here](https://github.com/armaniferrante/anchor/tree/master/examples/basic).
Here, we'll walkthrough a tutorial demonstrating how to use Anchor. To skip the tutorial and jump straight to a full example, go [here](https://github.com/project-serum/anchor/tree/master/examples/basic).
## Contributing
@ -18,4 +18,4 @@ do it :P.
## Note
Anchor is in active development, so all APIs are subject to change. If you have feedback, please reach out by [filing an issue](https://github.com/armaniferrante/anchor/issues/new). This documentation is a work in progress and is expected to change dramatically as features continue to be built out. If you have any problems, consult the [source](https://github.com/armaniferrante/anchor) or feel free to ask questions on the [Serum Discord](https://discord.com/channels/739225212658122886/752530209848295555).
Anchor is in active development, so all APIs are subject to change. If you have feedback, please reach out by [filing an issue](https://github.com/project-serum/anchor/issues/new). This documentation is a work in progress and is expected to change dramatically as features continue to be built out. If you have any problems, consult the [source](https://github.com/project-serum/anchor) or feel free to ask questions on the [Serum Discord](https://discord.com/channels/739225212658122886/752530209848295555).

View File

@ -9,10 +9,10 @@ a local network is running.
To get started, clone the repo.
```bash
git clone https://github.com/armaniferrante/anchor
git clone https://github.com/project-serum/anchor
```
And change directories to the [example](https://github.com/armaniferrante/anchor/tree/master/examples/basic-0).
And change directories to the [example](https://github.com/project-serum/anchor/tree/master/examples/basic-0).
```bash
cd anchor/examples/tutorial/basic-0

View File

@ -1,7 +1,7 @@
# Tutorial 1: Accounts, Arguments, and Types
It's recommended to read [Tutorial 0](./tutorial-0.md) first, as this tutorial will
build on top of it. The full example can be found [here](https://github.com/armaniferrante/anchor/tree/master/examples/basic-1).
build on top of it. The full example can be found [here](https://github.com/project-serum/anchor/tree/master/examples/basic-1).
## Defining a program