Skip to content

Commit

Permalink
Created off-chain code to mint token (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
SynthLuvr authored Jun 29, 2024
1 parent ed07a2e commit bda94d9
Show file tree
Hide file tree
Showing 8 changed files with 6,346 additions and 64 deletions.
60 changes: 60 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"prettier"
],
"plugins": ["import", "@typescript-eslint"],
"settings": {
"import/resolver": {
"node": {
"paths": ["src"]
}
}
},
"rules": {
"padding-line-between-statements": [
"error",
{ "blankLine": "always", "prev": "*", "next": "block" },
{ "blankLine": "always", "prev": "block", "next": "*" },
{ "blankLine": "always", "prev": "*", "next": "block-like" },
{ "blankLine": "always", "prev": "block-like", "next": "*" }
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],
"@typescript-eslint/naming-convention": [
"error",
{
"selector": ["parameter", "variable"],
"leadingUnderscore": "forbid",
"format": null
},
{
"selector": "parameter",
"leadingUnderscore": "require",
"format": null,
"modifiers": ["unused"]
}
],
"no-constant-condition": "off",
"import/no-unresolved": "off"
},
"overrides": [
{
"files": ["src/tests/**/*"],
"rules": {
"import/no-unresolved": "off"
}
}
]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ artifacts/
build/
# Aiken's default documentation export
docs/
node_modules
plutus.json
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"printWidth": 80,
"tabWidth": 2,
"singleQuote": false,
"trailingComma": "es5",
"semi": true,
"useTabs": false
}
Loading

0 comments on commit bda94d9

Please sign in to comment.