Skip to content

Instantly share code, notes, and snippets.

wOFFOTTO��b�� �����X������������������������CFF �� D��P���i�"NK�GDEF��Z����c���~��GPOS��Zd��d�����GSUB��`���������:OS/2�����J���`h��cmap��,�������R`head��$���2���6���hhea���������$ghmtx��X�����vM[Jtmaxp���������P�name��T�����OU���post�� ,������ ���e��P����xc`d```d<5�\�T<��Wf� @p��)����)��=�����m� ���x���&�S۶��m��m�F����vc5fcTA���f���|�d=�{��\]�7����H7+W ���CG��*�j���d{МձM�B�HyJ j��&ˤ%֜��[ui�.O٘Xok��{��ܕxêDnJ�9�D�[���i�[(�mCJ�����*ҴY��<���*��X{�
e6�04�W����Rv��nNl�&Q�R"���d�U(�&��llV�OL�o��>��JUv�.�
�ߓK�J��kڗF����7K��h8��;���o�1�~�[�+'��ꚫ�Q�F�J����eV+������Γ2�,�P�{tY����Tz�rD�W�>
�0��U�^}�H�s�=&ox�AtH���DǙ�������k�����G�������������^9���!S����xc`d``�󟇁�)��DEP�F8�xc`a�`������������
��RuP?2'�;܏������=�y��0|I``� �c�bZ��� j��x,ƧA�Q�������P �Ǥ�Ŧ����hF@��������0
���sġpʵr������n��;J�u�.��ύ5�;��!W���\؋�pjoz��>􌶛�97�Q/�g�d�K!��fb
���@�0�&���(+��c�j��[�6����O����d��mk��^ w�p�qۗ�c�����Ӑ����������'i�q�ц�V�

Title Buzzed Bees DAO

TL;DR Save Bees while maintaining & improving the new "Existing Communities" Nouns Builder feature

Description

The Buzzed Bee DAO has 2 very clear objectives.

// SPDX-License-Identifier: Unlicense
pragma solidity >=0.6.0 <0.9.0;
import "./Vm.sol";
// Wrappers around Cheatcodes to avoid footguns
abstract contract stdCheats {
using stdStorage for StdStorage;
// we use custom names that are unlikely to cause collisions so this contract
@defijesus
defijesus / LilSuperfluidNFT.sol
Created March 12, 2022 02:32 — forked from z0r0z/LilSuperfluidNFT.sol
A simple token streaming manager represented by NFTs
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.10;
import 'https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC20.sol';
import 'https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol';
/// @title lil superfluid nft
/// @author Miguel Piedrafita, Ross Campbell
/// modified from (https://github.com/m1guelpf/lil-web3/blob/main/src/LilSuperfluid.sol)
/// @notice A simple token streaming manager represented by NFTs
(make sure to keep the quotes if they are present in the format)
mint function - mints a single NFT to your own wallet
url: an URL pointing to the metadata of the NFT // format: https://my.url.com
mintTo function - mints a single NFT to the destination wallet
url: an URL pointing to the metadata of the NFT // format: https://my.url.com
to: an ethereum address to receive the NFT // format: 0x98f42D7a7F1fbB124Adb4344298f3db5413f5F8f
// SPDX-License-Identifier: MIT
/*
_ ΞΞΞΞ _
/_;-.__ / _\ _.-;_\
`-._`'`_/'`.-'
`\ /`
| /
/-.(
\_._\
\ \`;
// SPDX-License-Identifier: MIT
// t11s god himself
// ✅ make mintPrice constant
// 🔴 consider removing creators
// 🔴 consider removing ourMessage
// ✅ make heartURIs a mapping of uint256s
// ✅ don't use OZ counters
// ✅ dont use a uint8 for the loop counter (its gonna get cast to 256 bits as thats the evm wordsize)
// ✅ dont cast to a uint8 for digit
// 🔴 the "slow down" ratelimit in mint is basically useless, consider removing