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

Deploy and publish #524

Merged
merged 6 commits into from
Sep 6, 2024
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
2 changes: 1 addition & 1 deletion apps/admin/src/components/CancelProposal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const CancelProposal = ({

return isProposer || sponsorBelowThreshold || isGovernorShaman
? true
: `Proposal can only be cancelled by the proposer, by a governance shaman or if the sponsor's voting token balance has fallen below the sponsor threshold`;
: `Proposal can only be cancelled by the sponsor, by a governance shaman or by anyone if the sponsor's voting token balance has fallen below the sponsor threshold`;
}, [proposal, address, dao]);

if (proposal.status !== PROPOSAL_STATUS.voting) {
Expand Down
2 changes: 1 addition & 1 deletion libs/abis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/abis",
"version": "0.5.2",
"version": "0.5.3",
"type": "commonjs",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/connect-context/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/connect-context",
"version": "0.5.2",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
Expand Down
2 changes: 1 addition & 1 deletion libs/connect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/connect",
"version": "0.5.2",
"version": "0.5.3",
"peerDependencies": {
"react-router-dom": "^6.4.3"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/contract-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/contract-utils",
"version": "0.5.2",
"version": "0.5.3",
"type": "commonjs",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/data-fetch-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/data-fetch-utils",
"version": "0.5.2",
"version": "0.5.3",
"type": "commonjs",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/form-builder-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/form-builder-base",
"version": "0.5.2",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
Expand Down
2 changes: 1 addition & 1 deletion libs/form-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/form-builder",
"version": "0.5.2",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
Expand Down
2 changes: 1 addition & 1 deletion libs/keychain-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/keychain-utils",
"version": "0.5.2",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-data/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/moloch-v3-data",
"version": "0.5.2",
"version": "0.5.3",
"type": "commonjs",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-fields/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/moloch-v3-fields",
"version": "0.5.2",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-hooks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/moloch-v3-hooks",
"version": "0.5.2",
"version": "0.5.3",
"peerDependencies": {
"react-query": "^3.39.3"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-hooks/src/hooks/useConnectedMember.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const fetchMember = async ({
try {
const res = await findMember({
networkId: daochain,
dao: daoid,
dao: daoid.toLowerCase(),
memberAddress: address.toLowerCase(),
graphApiKeys,
});
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-hooks/src/hooks/useDaoData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const fetchDao = async ({
try {
const daoRes = await findDao({
networkId: daoChain,
dao: daoId,
dao: daoId.toLowerCase(),
includeTokens: true,
graphApiKeys,
});
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-hooks/src/hooks/useDaoMember.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const fetchMember = async ({

try {
const res = await findMember({
dao: daoId,
dao: daoId.toLowerCase(),
memberAddress,
networkId: daoChain,
graphApiKeys,
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-hooks/src/hooks/useDaoMembers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const useDaoMembers = (props?: DaoMembersProps) => {
[queryId, { daoId, daoChain, filter, ordering, paging }],
({ pageParam }) =>
fetchMembers({
daoId,
daoId: daoId?.toLowerCase(),
daoChain,
graphApiKeys,
filter,
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-hooks/src/hooks/useDaoProposal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const fetchProposal = async ({

try {
const res = await findProposal({
dao: daoId,
dao: daoId.toLowerCase(),
proposalId,
networkId: daoChain,
graphApiKeys,
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-hooks/src/hooks/useDaoProposals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export const useDaoProposals = (props?: DaoProposalsProps) => {
['proposals', { daoId, daoChain, filter, ordering, paging }],
({ pageParam }) =>
fetchProposals({
daoId,
daoId: daoId?.toLowerCase(),
daoChain,
graphApiKeys,
filter,
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-hooks/src/hooks/useDaoRecords.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const useRecords = ({
[credentialType || recordType, { daoId, chainId }],
() =>
fetchRecords({
daoId,
daoId: daoId.toLowerCase(),
chainId: chainId as ValidNetwork,
recordType,
pageSize,
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-legos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/moloch-v3-legos",
"version": "0.5.2",
"version": "0.5.3",
"type": "commonjs",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/moloch-v3-macro-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/moloch-v3-macro-ui",
"version": "0.5.2",
"version": "0.5.3",
"peerDependencies": {
"react-router-dom": "^6.4.3"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const ShamanList = ({
</ShamanListContainer>
{shamen &&
shamen.map((shaman) => (
<ShamanListContainer key={shaman.id}>
<ShamanListContainer key={`${shaman.id}-${shaman.permissions}`}>
<span className="contract">
<AddressDisplay
address={shaman.shamanAddress}
Expand Down
2 changes: 1 addition & 1 deletion libs/profile-data/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/profile-data",
"version": "0.5.2",
"version": "0.5.3",
"type": "commonjs",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/tx-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/tx-builder",
"version": "0.5.2",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
Expand Down
2 changes: 1 addition & 1 deletion libs/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/ui",
"version": "0.5.2",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
Expand Down
2 changes: 1 addition & 1 deletion libs/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/utils",
"version": "0.5.2",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
Expand Down
2 changes: 1 addition & 1 deletion libs/wizard-form-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daohaus/wizard-form-builder",
"version": "0.2.2",
"version": "0.2.3",
"repository": {
"type": "git",
"url": "https://github.com/HausDAO/monorepo"
Expand Down
Loading