Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
28ea0ee
first draft for multisig
hugobucquet Jun 30, 2022
294d154
add new functionalities
hugobucquet Jun 30, 2022
cc9b28c
bug fix
hugobucquet Jun 30, 2022
320d625
delete useless
hugobucquet Jun 30, 2022
63812c0
bug fixes
hugobucquet Jun 30, 2022
d128925
updated tests
hugobucquet Jun 30, 2022
ff278bf
bug fixes - all tests passed
hugobucquet Jul 1, 2022
c7b64d4
added beginning of FA1.2
hugobucquet Jul 1, 2022
df16352
updated FA1.2 multisig
hugobucquet Jul 1, 2022
f4817d6
FA1.2 ready for testing
hugobucquet Jul 1, 2022
4c88a1a
final changes for FA1.2
hugobucquet Jul 1, 2022
56e52ce
FA12 update
hugobucquet Jul 20, 2022
8412eea
updated FA2
hugobucquet Jul 20, 2022
41b9863
minor change
hugobucquet Jul 20, 2022
f255cbb
added new tests
hugobucquet Jul 20, 2022
0d03017
added switch admin
hugobucquet Jul 20, 2022
d29466d
minor changes
hugobucquet Jul 20, 2022
2b17a7d
everything works
hugobucquet Jul 21, 2022
6c4b87f
minor changes
hugobucquet Jul 26, 2022
176bc17
last changes
hugobucquet Jul 27, 2022
c88de56
bug fix
hugobucquet Jul 27, 2022
8534fef
remove burn:
hugobucquet Aug 8, 2022
451aca4
adding readme
hugobucquet Aug 12, 2022
733afc9
threshold not to high/low
hugobucquet Aug 22, 2022
b34a4d9
minor threshold changes
hugobucquet Aug 22, 2022
71f19be
minor changes for token recovery
hugobucquet Aug 23, 2022
2ffc808
allow token receive
hugobucquet Aug 23, 2022
17603d9
remove useless entrypoint
hugobucquet Aug 25, 2022
c7e3622
changed multisig folder
hugobucquet Aug 26, 2022
f62e508
adding UI:
hugobucquet Aug 26, 2022
5fc96ce
removing unseless files
hugobucquet Aug 26, 2022
3086b34
updated readme
hugobucquet Aug 26, 2022
f1afabe
minor changes
hugobucquet Aug 26, 2022
a431e31
UI updates
hugobucquet Aug 26, 2022
4ad06ec
Update readme.md
hugobucquet Aug 26, 2022
80f65a4
Update readme.md
hugobucquet Aug 26, 2022
4925006
Update readme.md
hugobucquet Aug 26, 2022
4a005ce
Update readme.md
hugobucquet Aug 26, 2022
eb25b77
update readme
hugobucquet Feb 9, 2023
01706f5
Update readme.md
hugobucquet Feb 9, 2023
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
39,780 changes: 39,780 additions & 0 deletions tezos/simple-multisig/UI/package-lock.json

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions tezos/simple-multisig/UI/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "wad-workshop-dapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@syncfusion/ej2-react-dropdowns": "^20.2.45",
"@taquito/beacon-wallet": "^12.1.1",
"@taquito/taquito": "^12.1.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.27.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router-dom": "^6.3.0",
"react-scripts": "^4.0.3",
"styled-components": "^5.3.5",
"util": "^0.12.4",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Binary file added tezos/simple-multisig/UI/public/favicon.ico
Binary file not shown.
19 changes: 19 additions & 0 deletions tezos/simple-multisig/UI/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>


<!-- Bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>

<title>Cryptonomic Multisig</title>
</head>
<body>
<div id="root"></div>
</body>
</html>
Binary file added tezos/simple-multisig/UI/public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tezos/simple-multisig/UI/public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions tezos/simple-multisig/UI/public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions tezos/simple-multisig/UI/public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
18 changes: 18 additions & 0 deletions tezos/simple-multisig/UI/src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { useState, useEffect } from "react";
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";



import AppRouter from "./components/AppRouter";



const App = () => {
return (
<div className="h-100">
<AppRouter/>
</div>
);
};

export default App;
Loading