Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typink M1 #1232

Merged
merged 1 commit into from
Dec 30, 2024
Merged
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
19 changes: 19 additions & 0 deletions deliveries/typink_milestone_1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Milestone Delivery :mailbox:

**The delivery is according to the official [milestone delivery guidelines](https://github.com/w3f/Grants-Program/blob/master/docs/Support%20Docs/milestone-deliverables-guidelines.md).**

* **Application Document:** [Typink](https://github.com/w3f/Grants-Program/blob/master/applications/typink.md)
* **Milestone Number:** 1

**Deliverables**

| Number | Deliverable | Links | Notes |
| -----: | ----------- | ----- | ------ |
| **0a.** | License | [MIT](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/LICENSE) | |
| **0b.** | Documentation | - [README](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/README.md) <br />- [Demo](https://github.com/dedotdev/typink/tree/w3f-delivery-m1/examples/demo) (https://typink-demo.netlify.app/) <br />- [Demo SubConnect](https://github.com/dedotdev/typink/tree/w3f-delivery-m1/examples/demo-subconnect) (https://typink-subconnect.netlify.app/) | |
| **0c.** | Testing and Testing Guide | [Install & setup typink project](https://github.com/dedotdev/typink/tree/w3f-delivery-m1?tab=readme-ov-file#getting-started) | Run unit tests instructions: <br/> 1. Clone the [project](https://github.com/dedotdev/typink/tree/w3f-delivery-m1) <br/> 2. Run `yarn install && yarn test` |
| 1. | Core providers | Delivered [General API Design / Providers](https://github.com/w3f/Grants-Program/blob/master/applications/typink.md#providers) including: <br/> - [TypinkProvider](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/providers/TypinkProvider.tsx) <br/> - [ClientProvider](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/providers/ClientProvider.tsx) <br/> - [WalletSetupProvider](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/providers/WalletSetupProvider.tsx) & [WalletProvider](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/providers/WalletProvider.tsx) | |
| 2. | Core hooks | Delivered [General API Design / Hooks](https://github.com/w3f/Grants-Program/blob/master/applications/typink.md#hooks) including: <br/> - [useTypink](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/hooks/useTypink.ts) <br/> - [useWallets](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/hooks/useWallets.ts) <br/> - [useContract](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/hooks/useContract.ts) <br/> - [useContractDeployer](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/hooks/useDeployer.ts) <br/> - [useContractQuery](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/hooks/useContractQuery.ts) <br/> - [useWatchContractQuery](https://github.com/dedotdev/typink/blob/28044e49e03d010cdcc264aa645c48fba24841ab/packages/typink/src/hooks/useContractQuery.ts#L147-L190) <br/> - [useContractTx](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/hooks/useContractTx.ts) <br/> - [useContractDeployerTx](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/hooks/useDeployerTx.ts) <br/> - [useWatchContractEvent](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/hooks/useWatchContractEvent.ts) <br/> - [useBalance](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/hooks/useBalance.ts) & [useBalances](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/hooks/useBalances.ts) <br/> - [usePSP22Balance](https://github.com/dedotdev/typink/blob/w3f-delivery-m1/packages/typink/src/hooks/psp22/usePSP22Balance.ts) <br/> <br/> For 2 hooks: `useConnectedAccount` & `useClient` , we decided to not implement these hooks, users can access information about `connectedAccount` & `client` and others via `useTypink` hook. | |
| 3. | Publish to npm | - [typink](https://www.npmjs.com/package/typink) | |


Loading