Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release staging #932

Merged
merged 27 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2738b28
update admin page to refresh data after creating new mission/proposal
datadanne Sep 19, 2023
f0d060a
add missing hasRole function to VotingRegistry abi definition
datadanne Sep 19, 2023
070581c
add hook that checks if the connected account is voting/missions admin
datadanne Sep 19, 2023
c0b447c
update admin page to check admin permissions & show no permission-states
datadanne Sep 19, 2023
099a033
Merge pull request #926 from tablelandnetwork/sander/update-staging
sanderpick Sep 20, 2023
df1bf43
Merge pull request #922 from tablelandnetwork/datadanne/update-admin-…
datadanne Sep 21, 2023
ddae5be
Merge pull request #921 from tablelandnetwork/datadanne/refresh-admin…
datadanne Sep 21, 2023
81b0c5e
add Mission Board contributions module to owner profile page
datadanne Sep 15, 2023
93a21d0
add link to owner profile from mission details page contributions list
datadanne Sep 15, 2023
e4c9c1b
Merge pull request #920 from tablelandnetwork/datadanne/show-mb-contr…
datadanne Sep 22, 2023
e21e5cf
remove leftover TODO comments from rig cli sql statements
datadanne Sep 26, 2023
c6fee8b
run VotingRegistry tests in CI
datadanne Jul 18, 2023
d8a2ac4
use node v18 for tests
datadanne Jul 18, 2023
999d132
update viewer generate script to allow openssl legacy provider
datadanne Sep 26, 2023
dacaaef
move TODO comment from sql stmnt string literal to code comment
datadanne Sep 26, 2023
df574b4
Merge pull request #900 from tablelandnetwork/datadanne/run-voting-re…
datadanne Sep 27, 2023
50af269
Merge pull request #930 from tablelandnetwork/datadanne/unbreak-rigs-cli
datadanne Sep 27, 2023
01c0aae
add support for updating mission data
datadanne Sep 21, 2023
58db149
Merge pull request #927 from tablelandnetwork/datadanne/add-edit-miss…
datadanne Oct 17, 2023
c73b3ce
add utility hook that waits for a tableland txn & invokes callbacks
datadanne Sep 25, 2023
49b777c
refactor app to use useWaitForTablelandTxn hook
datadanne Sep 25, 2023
3e92ae0
Merge pull request #928 from tablelandnetwork/datadanne/refactor-tabl…
datadanne Oct 17, 2023
5d71e90
add '~' as ts alias for root dir & update imports that are not subdirs
datadanne Sep 25, 2023
ed6c95e
update vite to use vite-tsconfig-paths to support ts aliases
datadanne Sep 25, 2023
c7dce40
Merge pull request #929 from tablelandnetwork/datadanne/improve-imports
datadanne Oct 18, 2023
67c46ea
add ft leaderboard to dashboard stats module
datadanne Oct 18, 2023
71af0ad
Merge pull request #931 from tablelandnetwork/datadanne/add-ft-leader…
sanderpick Oct 24, 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
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Setup Node Environment ⬢
uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
- name: Install
run: npm install
- name: Build
Expand Down Expand Up @@ -90,10 +90,12 @@ jobs:
- name: Setup Node Environment ⬢
uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
- name: Install
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Test Voting
run: npm run test-voting
48 changes: 47 additions & 1 deletion garage/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion garage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"typescript": "^5.1.3",
"vite": "^4.3.2",
"vite-plugin-ejs": "^1.6.4",
"vite-plugin-svgr": "^2.4.0"
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.2.1"
}
}
24 changes: 24 additions & 0 deletions garage/src/abis/VotingRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,28 @@ export const abi = [
stateMutability: "nonpayable",
type: "function",
},
{
inputs: [
{
internalType: "bytes32",
name: "role",
type: "bytes32",
},
{
internalType: "address",
name: "account",
type: "address",
},
],
name: "hasRole",
outputs: [
{
internalType: "bool",
name: "",
type: "bool",
},
],
stateMutability: "view",
type: "function",
},
] as const;
2 changes: 1 addition & 1 deletion garage/src/components/AboutPilotsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
Text,
VStack,
} from "@chakra-ui/react";
import garage from "../assets/garage.jpg";
import garage from "~/assets/garage.jpg";

interface ModalProps {
isOpen: boolean;
Expand Down
2 changes: 1 addition & 1 deletion garage/src/components/ChainAwareButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";
import { Button } from "@chakra-ui/react";
import { Chain, useNetwork } from "wagmi";
import { useChainModal } from "@rainbow-me/rainbowkit";
import { mainChain } from "../env";
import { mainChain } from "~/env";

export const ChainAwareButton = (
props: { expectedChain?: Chain } & React.ComponentProps<typeof Button>
Expand Down
Loading
Loading