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

Feat/spirekey sdk market place #2415

Merged
merged 12 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .syncpackrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const config = {
'@kadena/fonts',
'@kadena/pactjs-cli',
'@kadena-dev/eslint-plugin',

'@kadena/spirekey-sdk',
'remark-gfm',
],
isIgnored: true, // Toggle flag or or remove group to see inconsistencies
Expand Down
2 changes: 1 addition & 1 deletion packages/apps/marmalade-marketplace/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ NEXT_PUBLIC_API_URL=http://localhost:3000
NEXT_PUBLIC_WALLET_URL=https://spirekey.kadena.io/

NEXT_PUBLIC_CHAINWEB_API_HOST=https://api.testnet.chainweb.com
NEXT_PUBLIC_NETWORK_NAME=testnet04
NEXT_PUBLIC_NETWORKID=testnet04
NEXT_PUBLIC_CHAIN_IDS="0,1"

# Optional parameter to specify the start block for the event indexer.
Expand Down
2 changes: 2 additions & 0 deletions packages/apps/marmalade-marketplace/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ yarn-error.log*

# firebase files
.firebaserc
.vercel
.env*.local
3 changes: 2 additions & 1 deletion packages/apps/marmalade-marketplace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dev": "pnpm generate && next dev",
"generate": "npx graphql-codegen",
"start": "next start",
"start:cron": "ts-node scripts/cron.ts",
"start:cron": "TS_NODE_PROJECT='./tsconfig.cron.json' ts-node scripts/cron.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
Expand All @@ -21,6 +21,7 @@
"@kadena/kode-icons": "workspace:*",
"@kadena/kode-ui": "workspace:*",
"@kadena/pactjs": "workspace:*",
"@kadena/spirekey-sdk": "0.0.1-dev-8",
"@pinata/sdk": "^2.1.0",
"firebase": "^10.8.0",
"formidable": "^3.5.1",
Expand Down
Loading
Loading