Skip to content

Commit

Permalink
Create kodadot_assethub_indexer_m2_keeganquigley.md
Browse files Browse the repository at this point in the history
  • Loading branch information
keeganquigley authored Jul 30, 2024
1 parent 2a1420e commit 933efc2
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions evaluations/kodadot_assethub_indexer_m2_keeganquigley.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Evaluation


- **Status:** In progress
- **Application Document:** https://github.com/w3f/Grants-Program/blob/master/applications/kodadot_assethub_nft_m2.md
- **Milestone:** 2

| Number | Deliverable | Accepted | Link | Notes |
| ------ | --------------------------------------------- | ----------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ------------------------------ |
| 0a. | Licensing | <ul><li>[x] </li></ul> | [LICENSE](https://github.com/kodadot/stick/blob/main/LICENSE) | MIT |
| 0b. | Documentation | <ul><li>[x] </li></ul> | [an explicit README file to guide the project setup and execution](https://github.com/kodadot/stick/blob/feat/swap-it-up/README.md) | - |
| 0c. | Test Guidelines | <ul><li>[x] </li></ul> | [Testing](https://github.com/kodadot/stick/tree/feat/swap-it-up/tests) | - |
| 0d. | Docker Integration | <ul><li>[x] </li></ul> | [Docker Compose](https://github.com/kodadot/stick/blob/feat/swap-it-up/docker-compose.yml) | - |
| 1a. | Atomic Swaps Schema Development | <ul><li>[x] </li></ul> | [GraphQL schema swap.](https://github.com/kodadot/stick/blob/feat/swap-it-up/schema.graphql#L198) | - |
| 1b. | Atomic Swaps CREATE Handler | <ul><li>[x] </li></ul> | [Create Handler](https://github.com/kodadot/stick/blob/feat/swap-it-up/src/mappings/nfts/createSwap.ts) | - |
| 1c. | Atomic Swaps CANCEL Event | <ul><li>[x] </li></ul> | [Cancel Handler](https://github.com/kodadot/stick/blob/feat/swap-it-up/src/mappings/nfts/cancelSwap.ts) | - |
| 1d. | Atomic Swaps CLAIM Event | <ul><li>[x] </li></ul> | [Claim Handler](https://github.com/kodadot/stick/blob/feat/swap-it-up/src/mappings/nfts/claim.ts) | - |
| 1e. | Atomic Swaps with Surcharge Handler | <ul><li>[x] </li></ul> | [Create Handler](https://github.com/kodadot/stick/blob/feat/swap-it-up/src/mappings/nfts/createSwap.ts#L48) | - |
| 2a. | Offers Schema Development | <ul><li>[x] </li></ul> | [GraphQL schema offer.](https://github.com/kodadot/stick/blob/feat/swap-it-up/schema.graphql#L173) | - |
| 2b. | Offers CREATE Handler | <ul><li>[x] </li></ul> | [Create Handler](https://github.com/kodadot/stick/blob/feat/swap-it-up/src/mappings/nfts/createSwap.ts#L25) | - |
| 2c. | Offers CANCEL Event | <ul><li>[x] </li></ul> | [Cancel Handler](https://github.com/kodadot/stick/blob/feat/swap-it-up/src/mappings/nfts/cancelSwap.ts#L23) | - |
| 3a. | Token Schema Development | <ul><li>[x] </li></ul> | [GraphQL schema token.](https://github.com/kodadot/stick/blob/feat/swap-it-up/schema.graphql#L40) | - |
| 3b. | Token CRUD Handler | <ul><li>[x] </li></ul> | [Handling Token](https://github.com/kodadot/stick/blob/feat/swap-it-up/src/mappings/shared/token/tokenAPI.ts) | - |
| 4a. | API Implementation: collectionById | <ul><li>[x] </li></ul> | [collectionById](https://github.com/vikiival/kodaquery/blob/main/main.ts#L36) | - |
| 4b. | API Implementation: collectionListByIssuer | <ul><li>[x] </li></ul> | [collectionListByIssuer](https://github.com/vikiival/kodaquery/blob/main/main.ts#L44) | - |
| 4c. | API Implementation: collectionListByName | <ul><li>[x] </li></ul> | [collectionListByName](https://github.com/vikiival/kodaquery/blob/main/main.ts#L53) | - |
| 4d. | API Implementation: collectionListByOwner | <ul><li>[x] </li></ul> | [collectionListByOwner](https://github.com/vikiival/kodaquery/blob/main/main.ts#L62) | - |
| 4e. | API Implementation: eventList | <ul><li>[x] </li></ul> | [eventList](https://github.com/vikiival/kodaquery/blob/main/main.ts#L72) | - |
| 4f. | API Implementation: eventListByAddress | <ul><li>[x] </li></ul> | [eventListByAddress](https://github.com/vikiival/kodaquery/blob/main/main.ts#L80) | - |
| 4g. | API Implementation: eventListByCollectionId | <ul><li>[x] </li></ul> | [eventListByCollectionId](https://github.com/vikiival/kodaquery/blob/main/main.ts#L89) | - |
| 4h. | API Implementation: eventListByInteraction | <ul><li>[x] </li></ul> | [eventListByInteraction](https://github.com/vikiival/kodaquery/blob/main/main.ts#L98) | - |
| 4i. | API Implementation: eventListByItemId | <ul><li>[x] </li></ul> | [eventListByItemId](https://github.com/vikiival/kodaquery/blob/main/main.ts#L107) | - |
| 4j. | API Implementation: itemById | <ul><li>[x] </li></ul> | [itemById](https://github.com/vikiival/kodaquery/blob/main/main.ts#L117) | - |
| 4k. | API Implementation: itemListByCollectionId | <ul><li>[x] </li></ul> | [itemListByCollectionId](https://github.com/vikiival/kodaquery/blob/main/main.ts#L125) | - |
| 4l. | API Implement: itemListByCollectionIdAndOwner | <ul><li>[x] </li></ul> | [itemListByCollectionIdAndOwner](https://github.com/vikiival/kodaquery/blob/main/main.ts#L134) | - |
| 4m. | API Implement: itemListByCollectionIdList | <ul><li>[x] </li></ul> | [itemListByCollectionIdList](https://github.com/vikiival/kodaquery/blob/main/main.ts#L144) | - |
| 4n. | API Implementation: itemListByIssuer | <ul><li>[x] </li></ul> | [itemListByIssuer](https://github.com/vikiival/kodaquery/blob/main/main.ts#L153) | - |
| 4o. | API Implementation: itemListByName | <ul><li>[x] </li></ul> | [itemListByName](https://github.com/vikiival/kodaquery/blob/main/main.ts#L162) | - |
| 4p. | API Implementation: itemListByMetadataId | <ul><li>[x] </li></ul> | [itemListByMetadataId](https://github.com/vikiival/kodaquery/blob/main/main.ts#L171) | - |
| 4r. | API Implement: itemListByMetadataIdMatch | <ul><li>[x] </li></ul> | [itemListByMetadataIdMatch](https://github.com/vikiival/kodaquery/blob/main/main.ts#L190) | - |
| 4s. | API Implementation: itemListByOwner | <ul><li>[x] </li></ul> | [itemListByOwner](https://github.com/vikiival/kodaquery/blob/main/main.ts#L189) | - |

0 comments on commit 933efc2

Please sign in to comment.