Skip to content

Commit bea030e

Browse files
authored
Merge pull request #47 from macalinao/igm/grill-server-side
Adds gill-extra for server-side use of Grill helpers
2 parents c71dc53 + 3681f7a commit bea030e

40 files changed

+292
-201
lines changed

.changeset/good-nails-allow.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@macalinao/gill-extra": patch
3+
---
4+
5+
Documentation updates

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,4 @@ jobs:
3737
run: bun run lint
3838

3939
- name: Run tests
40-
run: bun test
41-
42-
- name: Check TypeScript
43-
run: bun run typecheck || true
40+
run: bun run test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![npm version](https://img.shields.io/npm/v/@macalinao/grill.svg)](https://www.npmjs.com/package/@macalinao/grill)
44

5-
A comprehensive toolkit for building Solana applications with React, featuring automatic account batching, type-safe account decoding, and seamless transaction management. Built on top of [gill](https://github.com/DecalLabs/gill) and [@solana/kit](https://github.com/anza-xyz/kit).
5+
A comprehensive toolkit for building Solana applications with React, featuring automatic account batching, type-safe account decoding, and seamless transaction management. Built on top of [gill](https://github.com/gillsdk/gill) and [@solana/kit](https://github.com/anza-xyz/kit).
66

77
## Packages
88

apps/example-dapp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ The app includes several examples accessible through the sidebar:
181181
## Learn More
182182

183183
- [Grill Documentation](https://github.com/macalinao/grill)
184-
- [Gill Documentation](https://github.com/DecalLabs/gill)
184+
- [Gill Documentation](https://github.com/gillsdk/gill)
185185
- [Solana Kit](https://github.com/solana-developers/solana-kit)
186186
- [React Query](https://tanstack.com/query)
187187

apps/example-dapp/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"scripts": {
2222
"dev": "vite",
2323
"build": "tsc -b && vite build",
24+
"clean": "rm -fr dist/ node_modules/ tsconfig.tsbuildinfo",
2425
"lint": "eslint .",
2526
"preview": "vite preview"
2627
},

bun.lock

Lines changed: 53 additions & 111 deletions
Large diffs are not rendered by default.

docs/grill/01-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This isn't just about performance—it's about architecture. When every componen
88

99
## Enter Grill
1010

11-
Grill is a Solana development kit that solves these problems at their root. Built on top of [gill](https://github.com/DecalLabs/gill) and the modern @solana/kit, Grill introduces a simple but powerful innovation: **automatic account batching**.
11+
Grill is a Solana development kit that solves these problems at their root. Built on top of [gill](https://github.com/gillsdk/gill) and the modern @solana/kit, Grill introduces a simple but powerful innovation: **automatic account batching**.
1212

1313
Here's what happens when you use Grill:
1414

docs/vendor/gill.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
</p>
88

99
<p align="center">
10-
<a href="https://github.com/DecalLabs/gill/actions/workflows/publish-packages.yml"><img src="https://img.shields.io/github/actions/workflow/status/DecalLabs/gill/publish-packages.yml?logo=GitHub&label=tests" /></a>
10+
<a href="https://github.com/gillsdk/gill/actions/workflows/publish-packages.yml"><img src="https://img.shields.io/github/actions/workflow/status/gillsdk/gill/publish-packages.yml?logo=GitHub&label=tests" /></a>
1111
<a href="https://www.npmjs.com/package/gill"><img src="https://img.shields.io/npm/v/gill?logo=npm&color=377CC0" /></a>
1212
<a href="https://www.npmjs.com/package/gill"><img src="https://img.shields.io/npm/dm/gill?color=377CC0" /></a>
1313
</p>
1414

1515
<p align="center">
16-
<img width="600" alt="gill" src="https://raw.githubusercontent.com/DecalLabs/gill/refs/heads/master/docs/public/cover.png" />
16+
<img width="600" alt="gill" src="https://raw.githubusercontent.com/gillsdk/gill/refs/heads/master/docs/public/cover.png" />
1717
</p>
1818

1919
## Overview
@@ -27,7 +27,7 @@ Gill is built on top of the modern javascript libraries for Solana built by Anza
2727
functions under the hood, `gill` is compatible with `kit`. See [Replacing Kit with gill](#replace-kit-with-gill).
2828

2929
> For a comparison of using gill vs web3js v2, take a look at the
30-
> [comparison examples](https://github.com/DecalLabs/gill/tree/master/examples/get-started#comparison-of-gill-vs-solanakit-aka-web3js-v2).
30+
> [comparison examples](https://github.com/gillsdk/gill/tree/master/examples/get-started#comparison-of-gill-vs-solanakit-aka-web3js-v2).
3131
3232
## Installation
3333

@@ -55,9 +55,9 @@ Simply [install gill](#installation) and replace your imports
5555
## Quick start
5656

5757
> Find a collection of example code snippets using `gill` inside the
58-
> [`/examples` directory](https://github.com/DecalLabs/gill/tree/master/examples), including
59-
> [basic operations](https://github.com/DecalLabs/gill/tree/master/examples/get-started) and common
60-
> [token operations](https://github.com/DecalLabs/gill/tree/master/examples/tokens).
58+
> [`/examples` directory](https://github.com/gillsdk/gill/tree/master/examples), including
59+
> [basic operations](https://github.com/gillsdk/gill/tree/master/examples/get-started) and common
60+
> [token operations](https://github.com/gillsdk/gill/tree/master/examples/tokens).
6161
6262
- [Overview](#overview)
6363
- [Installation](#installation)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"catalog": {
1313
"eslint": "^9.33.0",
1414
"typescript": "^5.9.2",
15-
"@macalinao/eslint-config": "^4.2.2",
15+
"@macalinao/eslint-config": "^6",
1616
"@macalinao/tsconfig": "^3.2.2",
1717
"@solana/kit": "^3",
1818
"tslib": "^2.8.1",

packages/dataloader-es/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"scripts": {
4141
"build": "tsc",
42-
"clean": "rm -fr dist/",
42+
"clean": "rm -fr dist/ node_modules/ tsconfig.tsbuildinfo",
4343
"lint": "eslint . --cache",
4444
"test": "bun test"
4545
},

0 commit comments

Comments
 (0)