Skip to content

Commit 9d6b686

Browse files
committed
Update web3.js v2 URLs
1 parent bef6a2e commit 9d6b686

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ _Note that some features such as rendering CLIs are not yet available. However,
6363

6464
- **Rendering client code**. Want people to start interacting with your Solana program? You can use special visitors that go through your Codama IDL and generate client code that you can then publish for your end-users. Currently, we have the following renderers available:
6565

66-
- `@codama/renderers-js`: Renders a JavaScript client compatible with the soon-to-be-released 2.0 line of [`@solana/web3.js`](https://github.com/solana-labs/solana-web3.js).
66+
- `@codama/renderers-js`: Renders a JavaScript client compatible with the soon-to-be-released 2.0 line of [`@solana/web3.js`](https://github.com/anza-xyz/solana-web3.js).
6767
- `@codama/renderers-js-umi`: Renders a JavaScript client compatible with Metaplexs [Umi](https://github.com/metaplex-foundation/umi) framework.
6868
- `@codama/renderers-rust`: Renders a Rust client that removes the need for publishing the program crate and offers a better developer experience.
6969
- _And more to come._

packages/errors/src/cli/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Heavily inspired by @solana/errors.
3-
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
3+
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
44
*/
55

66
import chalk from 'chalk';

packages/errors/src/codes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Heavily inspired by @solana/errors.
3-
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
3+
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
44
*
55
* ---
66
*

packages/errors/src/context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Heavily inspired by @solana/errors.
3-
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
3+
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
44
*/
55

66
import {

packages/errors/src/error.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Heavily inspired by @solana/errors.
3-
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
3+
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
44
*/
55

66
import { CodamaErrorCode } from './codes';

packages/errors/src/message-formatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Heavily inspired by @solana/errors.
3-
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
3+
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
44
*/
55

66
import { CodamaErrorCode } from './codes';

packages/errors/src/messages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Heavily inspired by @solana/errors.
3-
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
3+
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
44
*/
55

66
import {

packages/errors/src/stack-trace.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Heavily inspired by @solana/errors.
3-
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
3+
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
44
*/
55

66
export function safeCaptureStackTrace(...args: Parameters<typeof Error.captureStackTrace>): void {

packages/renderers-js/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[npm-image]: https://img.shields.io/npm/v/@codama/renderers-js.svg?style=flat&label=%40codama%2Frenderers-js
88
[npm-url]: https://www.npmjs.com/package/@codama/renderers-js
99

10-
This package generates JavaScript clients from your Codama IDLs. The generated clients are compatible with the soon-to-be-released 2.0 line of [`@solana/web3.js`](https://github.com/solana-labs/solana-web3.js).
10+
This package generates JavaScript clients from your Codama IDLs. The generated clients are compatible with the soon-to-be-released 2.0 line of [`@solana/web3.js`](https://github.com/anza-xyz/solana-web3.js).
1111

1212
## Installation
1313

packages/visitors-core/src/pipe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Copied from @solana/functional.
3-
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/functional/src/pipe.ts
3+
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/functional/src/pipe.ts
44
*
55
* ---
66
*

0 commit comments

Comments
 (0)