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
3 changes: 3 additions & 0 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ jobs:
files: [binFile],
description: pkg.description,
license: pkg.license,
repository: pkg.repository,
homepage: pkg.homepage,
bugs: pkg.bugs,
os: [t.os],
cpu: [t.cpu],
};
Expand Down
9 changes: 9 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

## Public repository

This repo is **public**. Code, comments, commit messages, and PR descriptions are world-readable. Do not include internal-only details — only reference what is already public via the external REST APIs and the SDK's own public surface.

- **OK to mention**: public REST endpoints, request/response shapes documented at quicknode.com/docs, the SDK's own exported types/methods, public package names (`@quicknode/sdk`, `quicknode-sdk`, `quicknode_sdk`).
- **Do not mention**: internal service names, internal infra/hostnames, private repos or paths, Linear/Jira ticket IDs, Slack channels, employee names, internal incident details, internal API quirks not reflected in the public docs, or "why we chose X" reasoning that exposes internal strategy.
- If a fix is driven by internal context (incident, ticket, private discussion), describe the **observable behavior** that's being fixed — not the internal trigger. The commit message and PR description should read as if written by an external contributor.
- When in doubt, ask before publishing.

## Build & Development Commands

### Rust
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0-alpha.29"
edition.workspace = true
license.workspace = true
description = "Core library for quicknode sdk"
repository = "https://github.com/quiknode-labs/sdk"
repository = "https://github.com/quicknode/sdk"
readme = "README.md"
keywords = ["quicknode", "blockchain", "web3", "sdk"]
categories = ["api-bindings", "web-programming"]
Expand Down
2 changes: 1 addition & 1 deletion crates/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The core Rust crate for the Quicknode SDK.

This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/quiknode-labs/sdk/blob/main/README.md) for the polyglot overview, development setup, and release process.
This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/quicknode/sdk/blob/main/README.md) for the polyglot overview, development setup, and release process.

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion npm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Node.js / TypeScript bindings for the Quicknode SDK.

This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/quiknode-labs/sdk/blob/main/README.md) for the polyglot overview, development setup, and release process.
This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/quicknode/sdk/blob/main/README.md) for the polyglot overview, development setup, and release process.

## Table of Contents

Expand Down
8 changes: 8 additions & 0 deletions npm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
"name": "@quicknode/sdk",
"version": "3.1.0-alpha.29",
"description": "Quicknode SDK",
"repository": {
"type": "git",
"url": "git+https://github.com/quicknode/sdk.git"
},
"homepage": "https://github.com/quicknode/sdk",
"bugs": {
"url": "https://github.com/quicknode/sdk/issues"
},
"main": "sdk.js",
"types": "sdk.d.ts",
"exports": {
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ classifiers = [
]

[project.urls]
Homepage = "https://github.com/quiknode-labs/sdk"
Repository = "https://github.com/quiknode-labs/sdk"
Issues = "https://github.com/quiknode-labs/sdk/issues"
Homepage = "https://github.com/quicknode/sdk"
Repository = "https://github.com/quicknode/sdk"
Issues = "https://github.com/quicknode/sdk/issues"

[tool.maturin]
manifest-path = "crates/python/Cargo.toml"
Expand Down
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Python bindings for the Quicknode SDK.

This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/quiknode-labs/sdk/blob/main/README.md) for the polyglot overview, development setup, and release process.
This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/quicknode/sdk/blob/main/README.md) for the polyglot overview, development setup, and release process.

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Ruby bindings for the Quicknode SDK.

This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/quiknode-labs/sdk/blob/main/README.md) for the polyglot overview, development setup, and release process.
This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/quicknode/sdk/blob/main/README.md) for the polyglot overview, development setup, and release process.

## Table of Contents

Expand Down
Loading