Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xjonaseb11/wallet_graphql.3.0
Wallet contract && dapp built on graphql protocol
https://github.com/0xjonaseb11/wallet_graphql.3.0
blockchain chainlink-oracle graphql off-chain protocol smart-contracts solidity typescript wallets web3
Last synced: 13 days ago
JSON representation
Wallet contract && dapp built on graphql protocol
- Host: GitHub
- URL: https://github.com/0xjonaseb11/wallet_graphql.3.0
- Owner: 0xJonaseb11
- Created: 2024-05-18T13:51:09.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-18T15:05:04.000Z (9 months ago)
- Last Synced: 2024-05-21T13:25:36.596Z (9 months ago)
- Topics: blockchain, chainlink-oracle, graphql, off-chain, protocol, smart-contracts, solidity, typescript, wallets, web3
- Language: TypeScript
- Homepage:
- Size: 153 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wallet_graphql.3.0
## About
Get real world data related to events triggered relating wallet contract with graphql protocol
## Getting started
`Installation`
```sh
# install client
yarn add -D @graphprotocol/client-cli
# or, with NPM:
npm install --save-dev @graphprotocol/client-cli# install graph-ts
npm install --save @graphprotocol/graph-ts
```### `Subgraph deployment`
```sh
# aunthenticate first
graph auth https://api.thegraph.com/deploy/
# actual deployment
graph deploy --product hosted-service /```
## `After setting the development structure correctly,`
`build protocol to generate ready to use js code for you`
```sh
# Option one
graphclient build # Note that for linux users (with me too) this didn't work till i used this below# option two
# Generate code # Worked for me unlike the above
graph codegen
```### `For client intentions,`
```sh
# install @apollo-client to enable interactions
npm install @apollo/client graphql
```------------
@0xJonaseb11