Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ _Note that some features such as rendering CLIs are not yet available. However,

- **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:

- `@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).
- `@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).
- `@codama/renderers-js-umi`: Renders a JavaScript client compatible with Metaplex’s [Umi](https://github.com/metaplex-foundation/umi) framework.
- `@codama/renderers-rust`: Renders a Rust client that removes the need for publishing the program crate and offers a better developer experience.
- _And more to come._
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/src/cli/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Heavily inspired by @solana/errors.
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
*/

import chalk from 'chalk';
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/src/codes.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Heavily inspired by @solana/errors.
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
*
* ---
*
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/src/context.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Heavily inspired by @solana/errors.
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
*/

import {
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/src/error.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Heavily inspired by @solana/errors.
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
*/

import { CodamaErrorCode } from './codes';
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/src/message-formatter.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Heavily inspired by @solana/errors.
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
*/

import { CodamaErrorCode } from './codes';
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/src/messages.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Heavily inspired by @solana/errors.
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
*/

import {
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/src/stack-trace.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Heavily inspired by @solana/errors.
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/errors
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/errors
*/

export function safeCaptureStackTrace(...args: Parameters<typeof Error.captureStackTrace>): void {
Expand Down
2 changes: 1 addition & 1 deletion packages/renderers-js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[npm-image]: https://img.shields.io/npm/v/@codama/renderers-js.svg?style=flat&label=%40codama%2Frenderers-js
[npm-url]: https://www.npmjs.com/package/@codama/renderers-js

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).
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).

## Installation

Expand Down
2 changes: 1 addition & 1 deletion packages/visitors-core/src/pipe.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Copied from @solana/functional.
* @see https://github.com/solana-labs/solana-web3.js/blob/master/packages/functional/src/pipe.ts
* @see https://github.com/anza-xyz/solana-web3.js/blob/main/packages/functional/src/pipe.ts
*
* ---
*
Expand Down