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

WIP Branch SDK V2 #1329

Open
wants to merge 32 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
d2649d6
feat(apis): env init and select endpoints
bitbeckers Jun 11, 2024
2ac55ff
chore(release): alpha.14
bitbeckers Jun 11, 2024
0ddf16e
fix(api): fix graph path
bitbeckers Jun 12, 2024
ec64c45
fix(graph): metadata queries
bitbeckers Jun 12, 2024
59d86c9
Merge branch 'develop' into feat/cleanup_client_init
bitbeckers Jun 12, 2024
f3f894e
feat(client): optional public client
bitbeckers Jun 12, 2024
c2613fe
feat(viem): optional public client
bitbeckers Jun 12, 2024
45a2b11
fix(storage): upload with default config
bitbeckers Jun 12, 2024
b175b3c
fix(storage): cleanup logs
bitbeckers Jun 12, 2024
2461423
(chore): update to new graphql scheme and bump version number
Jipperism Jun 19, 2024
42eb39f
chore(cleanup): remove unused deps
bitbeckers Jun 19, 2024
f36800a
fix(build): types and swc rollup
bitbeckers Jun 20, 2024
5dba26b
feat(graph): remove indexer module and cleanup build dependencies
bitbeckers Jun 23, 2024
d12b05e
feat(sdk): remove unused evaluation and cleanup
bitbeckers Jun 26, 2024
cee148d
feat(client): updated method signatures
bitbeckers Jul 5, 2024
f21c10a
(feat): add support for passing allowlist by uri, parsing and inserting
Jipperism Jul 7, 2024
95ae00c
chore(deploy): fresh marketplace on sepolia
bitbeckers Jul 17, 2024
1c8a4ee
Merge branch 'feat/cleanup_client_init' of github.com:hypercerts-org/…
bitbeckers Jul 17, 2024
cb3c996
chore(bump): sdk uses contracts 2.0.0-alpha.1
bitbeckers Jul 17, 2024
59aa570
fix(api): updated api client and minting flow
bitbeckers Aug 2, 2024
c09c36a
chore(docs): update SDK readme and typedoc
bitbeckers Aug 2, 2024
8c7166e
fix(mint): improve allowlist mint handling
bitbeckers Aug 5, 2024
ba85f61
chore(deploy): arb sepolia deployment
bitbeckers Aug 5, 2024
7ac979e
chore(updates): api submodule and arb sep contracts
bitbeckers Aug 5, 2024
055efcd
chore(deploy): base-sepolia
bitbeckers Aug 18, 2024
618e445
chore(deploy): base-sepolia and update contracts pacakge
bitbeckers Aug 19, 2024
14e607a
chore(deploy): op mainnet and updated fee recipient b-sep
bitbeckers Aug 19, 2024
ac7a67b
chore(update): OP minter implementation - release alpha.6
bitbeckers Aug 20, 2024
15f3980
feat(arb): setup arb testnet params
bitbeckers Aug 20, 2024
67731f5
build(arb-sepolia-depoloyment): deployed contracts and marketplace to…
0xRowdy Aug 20, 2024
5f540e0
chore(release): alpha.7 - arb sepolia marketplace
bitbeckers Aug 21, 2024
5893783
feat(arbOne): deploy to arbitrum one
bitbeckers Sep 9, 2024
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
46 changes: 0 additions & 46 deletions .dockerignore

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/deploy-cors-proxy.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/deploy-graph.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/docker-deps.yml

This file was deleted.

73 changes: 0 additions & 73 deletions .github/workflows/e2e-tests.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "sdk/lib/hypercerts-api"]
path = sdk/lib/hypercerts-api
url = https://github.com/hypercerts-org/hypercerts-api
1 change: 1 addition & 0 deletions contracts/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ETHERSCAN_API_KEY="zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz"
OPTIMISTIC_ETHERSCAN_API_KEY="zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz"
CELOSCAN_API_KEY="zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz"
BASESCAN_API_KEY="zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz"
ARBISCAN_API_KEY="zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz"

# Unused, ignore below
REPORT_GAS=false
Expand Down
2 changes: 1 addition & 1 deletion contracts/.eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ extends:
- "prettier"
parser: "@typescript-eslint/parser"
parserOptions:
project: "./contracts/tsconfig.json"
project: "./tsconfig.json"
plugins:
- "@typescript-eslint"
Loading
Loading