Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Commit 56e0947

Browse files
committed
ZEIP-93
1 parent 318c074 commit 56e0947

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

ts/components/sections/landing/hero.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ const AnimatedHeroTitle: React.FC<{}> = () => {
5252
{ label: 'Avalanche', color: '#FF3500' },
5353
{ label: 'Fantom', color: '#a2f5eb' },
5454
{ label: 'Celo', color: '#14b094' },
55+
{ label: 'Optimism', color: '#FF3500' },
5556
];
5657

5758
const transitions = useTransition(index, {

ts/pages/governance/data.ts

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -634,6 +634,48 @@ export const proposals: Proposals = {
634634
],
635635
},
636636
},
637+
93: {
638+
zeipId: 93,
639+
title: 'NFT Orders',
640+
summary: [
641+
`This ZEIP proposes to add NFT orders to the 0x V4 protocol. Users can now trade ERC-721 and ERC-1155 assets on all the networks 0x supports.`,
642+
`NFT orders have been built to be up to 54% cheaper than other alternatives.`,
643+
`Property based orders are supported, enabling traders to create floor bids for any asset.`,
644+
],
645+
url: 'https://github.com/0xProject/ZEIPs/issues/93',
646+
voteStartDate: moment(1644894000, 'X'),
647+
voteEndDate: moment(1645153200, 'X'),
648+
benefit: {
649+
title: 'Benefit',
650+
summary: [
651+
`Allow users to trade ERC-721 and ERC-1155 assets on all the networks 0x supports.`,
652+
`Up to 54% cheaper than other alternatives.`,
653+
`Instant royalties for creators.`,
654+
],
655+
rating: 5,
656+
links: [
657+
{
658+
text: 'Launch Announcement',
659+
url: 'https://blog.0x.org/introducing-multi-chain-nft-swaps/',
660+
},
661+
],
662+
},
663+
risks: {
664+
title: 'Risk',
665+
summary: [
666+
`Contracts were thoroughly reviewed internally, and spot-checked by ABDK. No vulnerabilities were found.`,
667+
`However, these changes do modify a risk-sensitive part of the codebase: the execution within a privileged environment.`,
668+
`0x V4 architecture comes with the ability to modify or rollback specific features, without halting the entire pipeline of smart contracts. This means that if a vulnerability is found (0x Labs offers generous bug bounties), it is possible to rollback the functionality that exposes the risk.`,
669+
],
670+
rating: 1,
671+
links: [
672+
{
673+
text: '0x v4 Bug Bounty',
674+
url: 'https://blog.0xproject.com/0x-protocol-v4-bug-bounty-fd0c1942b9a',
675+
},
676+
],
677+
},
678+
},
637679
};
638680

639681
export const stagingProposals: Proposals = {
@@ -667,6 +709,9 @@ export const stagingProposals: Proposals = {
667709
91: {
668710
...proposals[91],
669711
},
712+
93: {
713+
...proposals[93],
714+
},
670715
};
671716

672717
export const ZERO_TALLY: TallyInterface = {

0 commit comments

Comments
 (0)