Skip to content

Commit

Permalink
Add UI to interact with contract on-chain
Browse files Browse the repository at this point in the history
  • Loading branch information
DOBEN committed Dec 11, 2024
1 parent 8db8ad6 commit 1f16d9c
Show file tree
Hide file tree
Showing 38 changed files with 96,340 additions and 33,158 deletions.
Binary file added .yarn/install-state.gz
Binary file not shown.
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
16 changes: 0 additions & 16 deletions apps/contract-interaction/.browserslistrc

This file was deleted.

34 changes: 0 additions & 34 deletions apps/contract-interaction/.eslintrc.json

This file was deleted.

Binary file added apps/contract-interaction/.yarn/install-state.gz
Binary file not shown.
1 change: 1 addition & 0 deletions apps/contract-interaction/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Contract Interaction Plugin
6 changes: 6 additions & 0 deletions apps/contract-interaction/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "contract-interaction",
"version": "1.0.0",
"main": "index.js",
"license": "MIT"
}
31 changes: 25 additions & 6 deletions apps/contract-interaction/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,13 @@
"targets": {
"build": {
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"outputs": [
"{options.outputPath}"
],
"defaultConfiguration": "development",
"dependsOn": [
"install"
],
"options": {
"compiler": "babel",
"outputPath": "dist/apps/contract-interaction",
Expand All @@ -21,13 +26,14 @@
"apps/contract-interaction/src/assets",
"apps/contract-interaction/src/profile.json"
],
"styles": ["apps/contract-interaction/src/styles.css"],
"styles": [
"apps/contract-interaction/src/styles.css"
],
"scripts": [],
"webpackConfig": "apps/contract-interaction/webpack.config.js"
},
"configurations": {
"development": {
},
"development": {},
"production": {
"fileReplacements": [
{
Expand All @@ -40,12 +46,25 @@
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"outputs": [
"{options.outputFile}"
],
"options": {
"lintFilePatterns": ["apps/contract-interaction/**/*.ts"],
"lintFilePatterns": [
"apps/contract-interaction/**/*.ts"
],
"eslintConfig": "apps/contract-interaction/.eslintrc"
}
},
"install": {
"executor": "nx:run-commands",
"options": {
"commands": [
"cd apps/contract-interaction && yarn"
],
"parallel": false
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",
Expand Down
Loading

0 comments on commit 1f16d9c

Please sign in to comment.