Skip to content

Commit

Permalink
revised tx flow
Browse files Browse the repository at this point in the history
  • Loading branch information
RohanNero committed Jan 24, 2024
1 parent b812950 commit 04fe62f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions packages/nextjs/components/EIPs/NFT/InputForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -407,20 +407,19 @@ const InputForm: React.FC<DataDisplayProps> = ({ useWei, setUseWei, returnData,
value={formData.function}
onChange={handleSelectChange}
>
{/* <option value="transfer">Transfer</option> */}
<option className="bg-gray-500 text-gray-300" value="buy">
Buy - Non ERC-721
</option>
<option className="bg-gray-500 text-gray-300" value="burn">
Burn - Non ERC-721
</option>
<option value="transferFrom">TransferFrom</option>
<option className="bg-gray-400 text-gray-600" value="approve">
Approve - ERC-20
</option>
<option className="bg-gray-400 text-gray-600" value="allowance">
Allowance - ERC-20
</option>
<option className="bg-gray-500 text-gray-300" value="buy">
Buy - Non ERC-721
</option>
<option className="bg-gray-500 text-gray-300" value="burn">
Burn - Non ERC-721
</option>
</select>
<div className="flex justify-center gap-2">
<button
Expand Down

0 comments on commit 04fe62f

Please sign in to comment.