Providing fair distribution @ 0xE73d53e3a982ab2750A0b76F9012e18B256Cc243

Joined February 2021
253 Photos and videos
Pinned Tweet
On August 18, 2024 at 4:16 PM, at block #20556650, the RFD/N pair went live on the blockchain, marking the beginning of a unique experiment that has since attracted traders, minters, and liquidity providers alike. Why is this pair interesting? RFD ๐Ÿ”ฅ Deployed by the legendary Blurr.eth Deep, native liquidity on the RFD/WETH pair makes it a stable and easily tradeable asset on Uniswap. N ๐ŸงŠ Also deployed by Blurr.eth via contract 0xE73d53e3a982ab2750A0b76F9012e18B256Cc243 More volatile by nature, N can be acquired by trading on the RFD/N pair or by directly calling the mint() function. Liquidity is organically added by participants and traders. Why This Pair is Special? In Uniswap V3, liquidity providers concentrate their capital within a specific price range, earning fees whenever the price trades within that range. The RFD/N dynamic creates a natural balance. When N pumps, the LP position automatically rebalances โ€” selling N and accumulating RFD, which tends to hold its value steadily meanwhile when N corrects, the position reaccumulates N at lower prices while RFD acts as an anchor. This means LPs are constantly buying the dip on N and locking in gains into RFD โ€” all passively, through the mechanics of the pool itself. N mints cool ๐ŸงŠRFD burns ๐Ÿ”ฅ โ€” a perfect alchemy Alea iacta est
4
9
441
[06.09.2026] Every 12 seconds. Something is watching Ethereum โ€” every breath a calculation. When conditions are met, it moves. A small community. A shared conviction. Rooted in Refund: liquidity, trust, friendship, and deeper conviction. N is still minting. We are watching.
3
4
101
Hey everyone: 0xE73d53e3a982ab2750A0b76F9012e18B256Cc243 pragma solidity ^0.8.0; /* Some say the world will end in fire, Some say in ice. From what Iโ€™ve tasted of desire I hold with those who favor fire. But if it had to perish twice, I think I know enough of hate To say that for destruction ice Is also great And would suffice. The following is a simple contract for a token, "N", with a bound supply curve. Every block a new token is made available for minting. Every 4 years a "doubling" occurs, wherein the number of blocks passed required to mint a new token doubles. Following this schedule, in roughly 92 years it will take 4 years to mint a single token, at which point the supply will be roughly ~21,000,000. The supply is technically uncapped, but after 92 years no more than a handful of tokens could ever be minted before the heat death of the universe. Alea iacta est */ contract N { string public name = "N"; string public symbol = "N"; uint8 public decimals = 18; uint256 public totalSupply; uint8 public epoch = 0; uint256 public lastDoublingBlock; uint256 public nextDoublingBlock; uint256 public lastMintingBlock; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); constructor() { totalSupply = 1e18; balanceOf[msg.sender] = totalSupply; emit Transfer(address(0), msg.sender, totalSupply); lastDoublingBlock = block.number; nextDoublingBlock = block.number 10519200; //((86400*365*4) 86400)/12 (4 years and one day of blocks, with leap day) lastMintingBlock = block.number; } function transfer(address _to, uint256 _value) public returns (bool success) { require(balanceOf[msg.sender] >= _value, "Insufficient balance"); balanceOf[msg.sender] -= _value; balanceOf[_to] = _value; emit Transfer(msg.sender, _to, _value); return true; } function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= balanceOf[_from], "Insufficient balance"); require(_value <= allowance[_from][msg.sender], "Insufficient allowance"); balanceOf[_from] -= _value; balanceOf[_to] = _value; allowance[_from][msg.sender] -= _value; emit Transfer(_from, _to, _value); return true; } function mint() public { uint256 numberToMint = mintable(); totalSupply = numberToMint; balanceOf[msg.sender] = numberToMint; if(block.number >= nextDoublingBlock) { lastDoublingBlock = block.number; lastMintingBlock = block.number; nextDoublingBlock = block.number 10519200; epoch ; } } function mintable() internal returns (uint256 numberToMint) { uint256 blocksBetweenMints = block.number-lastMintingBlock; if(blocksBetweenMints >= 2**epoch) { numberToMint = (blocksBetweenMints/(2**epoch))*1e18; lastMintingBlock = block.number - (blocksBetweenMints % (2**epoch)); return (numberToMint); } else revert(); } }
2
1
3
91
Nozbuilder.eth retweeted
Probably the biggest NFT minting event on Ethereum history: Almost 800,000 different wallets minted the โ€œTen Years of Ethereum NFTโ€ by Ethereum Foundation. etherscan.io/tokens/label/etโ€ฆ
11
9
75
17,163
Nozbuilder.eth retweeted
Once upon a time, you could hunt ๐Ÿฆ„ directly on the @ethereum website. You could mint one ๐Ÿฆ„ token for every donation exceeding 2.014 ETH and then, you could converted into ๐Ÿ– using the Unicorn Meat Grinder DAO.
4
7
36
2,162
1/๐Ÿ”ฎ Influencers keeps launching tokens with "better stories" and worse fundamentals. Presales. VC rounds at 10x your price. Roadmaps that never ship. And then CT is asking where the bullrun is in a diluted market... We seem to forgot what made Bitcoin work โ€” simple rules, fair launch, nobody in charge. $N
3
2
4
276
2/๐Ÿ”ฎ $N is Bitcoin's supply schedule rebuilt on Ethereum. Every block โ†’ 1 token mintable by anyone. Every 4 years โ†’ twice as long to mint the next one. Hard asymptote at ~21,000,000. No presale. No team cut. No admin key. Just call mint() or use a dex.
1
3
152
3/๐Ÿ”ฎ The contract opens with a Robert Frost poem. It ends with "Alea iacta est." Built by the community for DeFi. Just a deployed contract, a supply curve, and a bet that fair still means something. 0xE73d53e3a982ab2750A0b76F9012e18B256Cc243
1
2
139
While Crypto Twitter was chasing unsustainable yield promises, Blurr was quietly building. In 2023, at the height of the bull market, he shipped the Refund $RFD. The name speaks for itself; a silent statement against the scams and rug pulls defining the era. A refund for those who lost faith. A year later, he delivered $N engineered with a fundamentally different philosophy. No single point of failure, no privileged key holder. The mint function is entirely on-chain, callable by anyone every 12 seconds. Value is not assigned, it is discovered by the participants themselves. Both tokens share a common thread: a return to first principles, building with intention rather than chasing manufactured yield. The most meaningful signal is found not in the noise, but in the work happening quietly beneath it. @BlurrNCoin @blurr @RefundNews @ReFundCoinETH
1
6
351
A wallet with no name, just an on-chain letter. 0xaD02E109ef678EDa9E340E87162AF041f2939523 The architect is moving. ๐Ÿ‘€ 0x Allowance Holder firing. LI.FI Diamond firing. $N is being swapped AND bridged cross-chain. You don't use that infrastructure for fun. This is intentional positioning. ๐Ÿ”„ No name, no fame, but they're playing the game. No presale, no VC, the supply ain't free. ๐Ÿ“Š Only 1/4 of supply minted ๐Ÿ‘ฅ ~704 holders The chain is still working in silence. And on-chain doesn't lie. ๐Ÿ”ฅ Want to be part of the game? $N: 0xE73d53e3a982ab2750A0b76F9012e18B256Cc243 @BlurrNCoin @blurr @RefundNews @ReFundCoinETH
2
2
249
Why did Blurr decided to create $N as a token ? ๐ŸงŠ In proofs, formulas or algorithms, N is very commonly used as; ยท A sample size in statistics (e.g., a population of n_population elements) ยท In finance, N show up everywhere where 'N' number compound from a specific period of time ยท N scale from a single data point to another Might Blurr and Vitalik share something in common? Vitalik often mentions $N in his speeches lately. Coincidence or not? ๐Ÿ”ฎ x.com/VitalikButerin/status/โ€ฆ "The concept, "Frame Transactions", is about as simple as you can get while still being highly general purpose. A transaction is N calls, which can read each other's calldata, and which have the ability to authorize a sender and authorize a gas payer..."
Now, account abstraction. We have been talking about account abstraction ever since early 2016, see the original EIP-86: github.com/ethereum/EIPs/issโ€ฆ Now, we finally have EIP-8141 ( eips.ethereum.org/EIPS/eip-8โ€ฆ ), an omnibus that wraps up and solves every remaining problem that AA was intended to address (plus more). Let's talk again about what it does. The concept, "Frame Transactions", is about as simple as you can get while still being highly general purpose. A transaction is N calls, which can read each other's calldata, and which have the ability to authorize a sender and authorize a gas payer. At the protocol layer, *that's it*. Now, let's see how to use it. First, a "normal transaction from a normal account" (eg. a multisig, or an account with changeable keys, or with a quantum-resistant signature scheme). This would have two frames: * Validation (check the signature, and return using the ACCEPT opcode with flags set to signal approval of sender and of gas payment) * Execution You could have multiple execution frames, atomic operations (eg. approve then spend) become trivial now. If the account does not exist yet, then you prepend another frame, "Deployment", which calls a proxy to create the contract (EIP-7997 ethereum-magicians.org/t/eipโ€ฆ is good for this, as it would also let the contract address reliably be consistent across chains). Now, suppose you want to pay gas in RAI. You use a paymaster contract, which is a special-purpose onchain DEX that provides the ETH in real time. The tx frames are: * Deployment [if needed] * Validation (ACCEPT approves sender only, not gas payment) * Paymaster validation (paymaster checks that the immediate next op sends enough RAI to the paymaster and that the final op exists) * Send RAI to the paymaster * Execution [can be multiple] * Paymaster refunds unused RAI, and converts to ETH Basically the same thing that is done in existing sponsored transactions mechanisms, but with no intermediaries required (!!!!). Intermediary minimization is a core principle of non-ugly cypherpunk ethereum: maximize what you can do even if all the world's infrastructure except the ethereum chain itself goes down. Now, privacy protocols. Two strategies here. First, we can have a paymaster contract, which checks for a valid ZK-SNARK and pays for gas if it sees one. Second, we could add 2D nonces (see docs.erc4337.io/core-standarโ€ฆ ), which allow an individual account to function as a privacy protocol, and receive txs in parallel from many users. Basically, the mechanism is extremely flexible, and solves for all the use cases. But is it safe? At the onchain level, yes, obviously so: a tx is only valid to include if it contains a validation frame that returns ACCEPT with the flag to pay gas. The more challenging question is at the mempool level. If a tx contains a first frame which calls into 10000 accounts and rejects if any of them have different values, this cannot be broadcasted safely. But all of the examples above can. There is a similar notion here to "standard transactions" in bitcoin, where the chain itself only enforces a very limited set of rules, but there are more rules at the mempool layer. There are specific rulesets (eg. "validation frame must come before execution frames, and cannot call out to outside contracts") that are known to be safe, but are limited. For paymasters, there has been deep thought about a staking mechanism to limit DoS attacks in a very general-purpose way. Realistically, when 8141 is rolled out, the mempool rules will be very conservative, and there will be a second optional more aggressive mempool. The former will expand over time. For privacy protocol users, this means that we can completely remove "public broadcasters" that are the source of massive UX pain in railgun/PP/TC, and replace them with a general-purpose public mempool. For quantum-resistant signatures, we also have to solve one more problem: efficiency. Here's are posts about the ideas we have for that: firefly.social/post/lens/1gfโ€ฆ firefly.social/post/x/202740โ€ฆ AA is also highly complementary with FOCIL: FOCIL ensures rapid inclusion guarantees for transactions, and AA ensures that all of the more complex operations people want to make actually can be made directly as first-class transactions. Another interesting topic is EOA compatibility in 8141. This is being discussed, in principle it is possible, so all accounts incl existing ones can be put into the same framework and gain the ability to do batch operations, transaction sponsorship, etc, all as first-class transactions that fully benefit from FOCIL. Finally, after over a decade of research and refinement of these techniques, this all looks possible to make happen within a year (Hegota fork). firefly.social/post/bsky/qmaโ€ฆ
1
86
๐Ÿงต Something is hiding on-chain. Let me show you. Blurr.eth made a stunt move with his $532M CryptoPunk #9998 sale in Oct 2021 using a flash loan and left one message: "looks rare" - blurr n' arr00 This is readable on the blockchain by scrolling down to the input data and clicking "View Input As UTF-8" etherscan.io/tx/0x92488a00dfโ€ฆ ๐Ÿ”ฅ Exactly 1 year later โ†’ $RFD is deployed by the same address. ๐ŸงŠ 15 months after that โ†’ $N is born. But here's what no one is talking about. Blurr left a Robert Frost poem hidden inside $N's contract source code: "Some say the world will end in fire, Some say in ice..." The community speculates $RFD is fire while ice is $N minting. What are your thoughts? @blurr @BlurrNCoin @EthereumHistory
1
1
1
140
More about $N: ๐Ÿ” On-Chain finding: 0x82A53178e7A7e454ab31eEA6063FdcA338418F74 (Horario Mint Bot) Funded by โ†’ 0xC00000001a73709bD77cFdB8aF327321C1C818aA Which was funded by โ†’ 0xd1CCD4312F833d8dBF7dE0C0D2065BC31a3A4D10 0x8cc934580517CC219e39D13E596AB3267Bd60710 is linked to a smart contract with a self-destruct function, triggered at: Txn Hash: 0x790f67ce46e5586ff93f777869b2e354ddf546e9937b9e28870e4510afb6ad63 More here: etherscan.io/tx/0x790f67ce46โ€ฆ ๐Ÿ“‹ 5 Internal Transactions: 0x82A53178e7A7e454ab31eEA6063FdcA338418F74 โ†’ 0x8cc934580517CC219e39D13E596AB3267Bd60710 create_0 โ†’ 0x8cc934580517CC219e39D13E596AB3267Bd60710 creates new contract 0x9Da4c58644112f1Ce call_1_1_4_0 โ†’ Wrapped Ether sends to 0x9Da4c58644112f1Ce self_destruct_1_1_5 โ†’ 0x9Da4c58644112f1Ce self-destructs back to 0x8cc934580517CC219e39D13E596AB3267Bd60710 call_2 โ†’ 0x8cc934580517CC219e39D13E596AB3267Bd60710 sends to Firepool Mining Pool self_destruct_3 โ†’ 0x8cc934580517CC219e39D13E596AB3267Bd60710 self-destructs back to 0xd1CCD4312F833d8dBF7dE0C0D2065BC31a3A4D10 Who is Blurr.eth ? ๐ŸŒˆ
1
1
114