Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
SecretSaturn committed Jan 7, 2024
1 parent 96f6a7d commit 04961dd
Show file tree
Hide file tree
Showing 30 changed files with 3,121 additions and 305 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
[submodule "public-gateway/lib/solmate"]
path = public-gateway/lib/solmate
url = https://github.com/transmissions11/solmate
[submodule "TNLS-Gateways/public-gateway/lib/openzeppelin-contracts"]
path = TNLS-Gateways/public-gateway/lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
10 changes: 10 additions & 0 deletions TNLS-Clients/VRFDemo/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.{js,json,yml,ts}]
charset = utf-8
indent_style = space
indent_size = 2
24 changes: 24 additions & 0 deletions TNLS-Clients/VRFDemo/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
17 changes: 17 additions & 0 deletions TNLS-Clients/VRFDemo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Snakepath Demo</title>
</head>
<body>
<div id="wallet">
<button id="connect" type="button"></button>
</div>
<div id="app"></div>
<div id="account"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading

0 comments on commit 04961dd

Please sign in to comment.