-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
334 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules | ||
.DS_Store | ||
.env* | ||
.turbo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"extends": ["//"], | ||
"pipeline": { | ||
"build": { | ||
"inputs": [ | ||
"config/config.handlebars.json", | ||
"config/mainnets.handlebars.json", | ||
"config/testnets.handlebars.json" | ||
], | ||
"outputs": [ | ||
"config/config.json", | ||
"config/mainnets.json", | ||
"config/testnets.json" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
node_modules | ||
|
||
# SOLIDITY | ||
artifacts | ||
cache | ||
docs | ||
out | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"extends": ["//"], | ||
"pipeline": { | ||
"build": { | ||
"inputs": ["src/**/*.sol"], | ||
"outputs": ["out/**", "types/**"] | ||
}, | ||
"deploy": { "dependsOn": ["build"], "outputs": ["addresses.json"] } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"extends": [ | ||
"//" | ||
], | ||
"pipeline": { | ||
"build": { | ||
"outputs": [ | ||
"../web/dapp/**", | ||
"../wordpress/plugins/kredeum-nfts/lib/**" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,38 @@ | ||
{ | ||
"name": "kredeum", | ||
"version": "1.0.0", | ||
"version": "1.4.0", | ||
"main": "index.js", | ||
"scripts": { | ||
"all": "pnpm clean-all && pnpm install-all && pnpm build-all && pnpm format-all && pnpm check-all && pnpm tests-all", | ||
"clean-all": "rm -rf node_modules && rm -f pnpm-lock.yaml && pnpm -r clean", | ||
"install-foundry": "pnpm -F contracts install:foundry", | ||
"install-wordpress": "pnpm -F wordpress install:wordpress", | ||
"install-all": "pnpm install && pnpm install-foundry && pnpm install-wordpress", | ||
"build-all": "pnpm build1 && pnpm build2 && pnpm build3 && pnpm build4", | ||
"build-all": "pnpm build1 && pnpm build2 && pnpm build3", | ||
"format-all": "pnpm -r format", | ||
"check-all": "pnpm -r check", | ||
"update-all": "pnpm -r update", | ||
"tests-all": "pnpm -r tests", | ||
"build1": "pnpm -F common build", | ||
"build2": "pnpm -F contracts -F gulp build", | ||
"build3": "pnpm -F svelte build", | ||
"build4": "pnpm -F wordpress build", | ||
"build-dapp": "pnpm build1 && pnpm build2 && pnpm build3", | ||
"build-plugin": "pnpm build1 && pnpm build2 && pnpm build3 && pnpm build4", | ||
"build-plugin": "pnpm build1 && pnpm build2 && pnpm build3", | ||
"deploy-dapp": "export PATH=$PATH:$HOME/.foundry/bin && pnpm install && pnpm install-foundry && pnpm build-dapp", | ||
"deploy-plugin": "pnpm install && pnpm install-wordpress && pnpm build-plugin" | ||
}, | ||
"keywords": [], | ||
"keywords": [ | ||
"Kredeum", | ||
"NFT", | ||
"Factory" | ||
], | ||
"author": "kredeum", | ||
"license": "MIT", | ||
"engines": { | ||
"node": "^18", | ||
"pnpm": "^8" | ||
}, | ||
"pnpm": { | ||
"peerDependencyRules": { | ||
"allowedVersions": { | ||
"@nomiclabs/hardhat-ethers": "0.3.0-beta.13" | ||
} | ||
} | ||
"devDependencies": { | ||
"turbo": "^1.11.3" | ||
} | ||
} |
Oops, something went wrong.