A Pen by Joji Martinez on CodePen.
This file contains hidden or 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
| using System; | |
| using Xunit; | |
| namespace TestTemplate.Tests | |
| { | |
| public class Test | |
| { | |
| [Fact] | |
| public void Test() | |
| { |
The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Revised by Bytes Unlimited : Feb 3rd 2020
The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
This file contains hidden or 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
| <header> | |
| <link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet"> | |
| </header> | |
| <h1>Neumorphic Buttons</h1> | |
| <p>Hover us and enjoy the satisfying neumorphic animation designs!</p> | |
| <div class="frame"> | |
| <button class="custom-btn btn-1">Read More</button> | |
| <button class="custom-btn btn-2">Read More</button> | |
| <button class="custom-btn btn-3"><span>Read More</span></button> |
This is the report from a security audit performed on Ethereum Classic Multisig Wallet by Dexaran. This contracts are a version of OpenZeppelin Multisig Wallet.
The audit focused primarily on the security of funds and fault tolerance of the multisig wallet. The main intention of this multisig wallet is to serve as an official storage of funds donated for ETC development.
This file contains hidden or 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
| import Image from "next/image"; | |
| import Link from "next/link"; | |
| import { Button } from "../ui/button"; | |
| interface Props { | |
| id: string; | |
| name: string; | |
| username: string; | |
| imgUrl: string; |
This file contains hidden or 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
| import { ethers, providers, Wallet, utils, Transaction } from "ethers"; | |
| import { | |
| FlashbotsBundleProvider, | |
| FlashbotsBundleResolution, | |
| } from "@flashbots/ethers-provider-bundle"; | |
| import { exit } from "process"; | |
| const FLASHBOTS_URL = "https://relay-goerli.flashbots.net"; | |
| const TOKEN_ADDRESS = "0x4E5d67a73bdb6BF68fADa7BDD7F455A7aA02C8ab"; |
This file contains hidden or 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
| pragma solidity 0.8.21; | |
| contract MyContract { | |
| uint256 public num; | |
| string public text; | |
| address public myAddress; | |
| bool public isTrue; | |
| function setNum(uint256 _num) public returns (uint256) { |
OlderNewer