Skip to content
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,8 @@ node_modules/

# IDE
.idea

# Misc
.DS_Store
.archive/

5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"python-envs.defaultEnvManager": "ms-python.python:conda",
"python-envs.defaultPackageManager": "ms-python.python:conda",
"python-envs.pythonProjects": []
}
Comment on lines +1 to +5

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

# Check if .vscode is in .gitignore
if [ -f .gitignore ]; then
  echo "=== .gitignore content (searching for .vscode) ==="
  rg -n '\.vscode' .gitignore || echo "No .vscode found in .gitignore"
  echo ""
  echo "=== Full .gitignore content (first 50 lines) ==="
  head -50 .gitignore
else
  echo ".gitignore file not found"
fi

Repository: VaporFi/liquid-mining

Length of output: 461


🏁 Script executed:

# Check if there are other .vscode files in the repo
echo "=== All .vscode files in the repository ==="
find . -path './.git' -prune -o -type f -path '*/.vscode/*' -print 2>/dev/null | head -20

Repository: VaporFi/liquid-mining

Length of output: 132


🏁 Script executed:

# Check git diff to see what was actually added in this commit/PR
echo "=== Check if .vscode/settings.json is a new file ==="
git ls-files .vscode/ 2>/dev/null || echo "No .vscode files tracked in git"

Repository: VaporFi/liquid-mining

Length of output: 139


🏁 Script executed:

# Check for Python files in the repository
echo "=== Python files in repository ==="
find . -path './.git' -prune -o -type f \( -name "*.py" \) -print 2>/dev/null | head -20

Repository: VaporFi/liquid-mining

Length of output: 137


🏁 Script executed:

# Check the PR/recent git context to understand the scope
echo "=== Repository structure (top level) ==="
ls -la | grep -v '^d' | head -20
echo ""
echo "=== Directory structure ==="
find . -maxdepth 2 -type d ! -path '*/\.git*' ! -path '*/.vscode*' ! -path '*/node_modules*' | sort | head -30

Repository: VaporFi/liquid-mining

Length of output: 1712


Add .vscode/ to .gitignore and remove .vscode/settings.json from this PR.

The repository already ignores IDE configurations (.idea is in .gitignore). VSCode workspace settings should follow the same pattern rather than being committed. With only one Python script in a Solidity-focused project, this appears to be personal developer configuration, not a project requirement.

🤖 Prompt for AI Agents
In @.vscode/settings.json around lines 1 - 5, Remove the committed VSCode
workspace settings and ignore them going forward: delete the settings file from
the PR (unstage/remove it from the repository commit, e.g., git rm --cached) and
add the .vscode/ directory to .gitignore so IDE settings are not tracked;
specifically remove ".vscode/settings.json" from the repo and add a ".vscode/"
entry to .gitignore, then commit the updated .gitignore.

8 changes: 4 additions & 4 deletions deployments/AuthorizationFacet.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,17 @@
"type": "function"
}
],
"bytecode": "0x608060405234801561001057600080fd5b5061024b806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80633bbbc7c914610046578063b6a5d7de1461005b578063b91816111461006e575b600080fd5b6100596100543660046101d8565b6100bb565b005b6100596100693660046101d8565b61010f565b6100a761007c3660046101d8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205460ff1690565b604051901515815260200160405180910390f35b6100c3610166565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610117610166565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c13205473ffffffffffffffffffffffffffffffffffffffff1633146101d6576040517fe1d7449900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6000602082840312156101ea57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461020e57600080fd5b939250505056fea26469706673582212206954ab9119fc8a5f453dab97d517d060dbd2057b1ce9fdc4e29f59584dc0a74e64736f6c63430008110033",
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c80633bbbc7c914610046578063b6a5d7de1461005b578063b91816111461006e575b600080fd5b6100596100543660046101d8565b6100bb565b005b6100596100693660046101d8565b61010f565b6100a761007c3660046101d8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205460ff1690565b604051901515815260200160405180910390f35b6100c3610166565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610117610166565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c13205473ffffffffffffffffffffffffffffffffffffffff1633146101d6576040517fe1d7449900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6000602082840312156101ea57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461020e57600080fd5b939250505056fea26469706673582212206954ab9119fc8a5f453dab97d517d060dbd2057b1ce9fdc4e29f59584dc0a74e64736f6c63430008110033",
"bytecode": "0x608060405234801561001057600080fd5b5061024b806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80633bbbc7c914610046578063b6a5d7de1461005b578063b91816111461006e575b600080fd5b6100596100543660046101d8565b6100bb565b005b6100596100693660046101d8565b61010f565b6100a761007c3660046101d8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205460ff1690565b604051901515815260200160405180910390f35b6100c3610166565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610117610166565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c13205473ffffffffffffffffffffffffffffffffffffffff1633146101d6576040517fe1d7449900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6000602082840312156101ea57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461020e57600080fd5b939250505056fea2646970667358221220bce5ec74cdbefd9a39897784ad951f81bd7e0381c4108ba2a56fd47d45ec217364736f6c63430008120033",
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c80633bbbc7c914610046578063b6a5d7de1461005b578063b91816111461006e575b600080fd5b6100596100543660046101d8565b6100bb565b005b6100596100693660046101d8565b61010f565b6100a761007c3660046101d8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205460ff1690565b604051901515815260200160405180910390f35b6100c3610166565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610117610166565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c13205473ffffffffffffffffffffffffffffffffffffffff1633146101d6576040517fe1d7449900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6000602082840312156101ea57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461020e57600080fd5b939250505056fea2646970667358221220bce5ec74cdbefd9a39897784ad951f81bd7e0381c4108ba2a56fd47d45ec217364736f6c63430008120033",
"linkReferences": {},
"deployedLinkReferences": {}
},
"options": {
"args": [],
"log": true,
"skipIfAlreadyDeployed": false
"skipIfAlreadyDeployed": true
},
"address": "0x0B88CA7B50aBb560A70c24c84Ff88d46Fd2634A2"
"address": "0x41B02390B78289d474ece028CFB9E1156a35f40B"
},
"hardhat": {
"artifact": {
Expand Down
Loading
Loading