-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* make colors in minting variable * use ethers v6 adapter for wagmi * add support for blueprints in ownership table * remove logs * admin ui polish * update marketplace sdk
- Loading branch information
Showing
25 changed files
with
663 additions
and
1,305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Flex, FlexProps, Tooltip } from "@chakra-ui/react"; | ||
import { InfoCircleFilled } from "@ant-design/icons"; | ||
|
||
const defaultText = | ||
"This is a blueprint, which means the owner has not claimed their hypercert yet"; | ||
const defaultColor = "gray.600"; | ||
|
||
export const BlueprintTooltip = ({ | ||
text = defaultText, | ||
...flexProps | ||
}: { text?: string } & FlexProps) => { | ||
return ( | ||
<Flex color={defaultColor} {...flexProps}> | ||
<Tooltip label={text} aria-label={text}> | ||
<InfoCircleFilled /> | ||
</Tooltip> | ||
</Flex> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.