NRG® of Blockchain

2.6K posts

NRG® of Blockchain banner
NRG® of Blockchain

NRG® of Blockchain

@Energyconcepts2

Crypto and Blockchain Nerd || Sourcerer @sourcenetw || @jup_dao stan || Collector

Jupiverse Beigetreten Ekim 2020
1.1K Folgt377 Follower
Angehefteter Tweet
NRG® of Blockchain
NRG® of Blockchain@Energyconcepts2·
JUP is home Jupiverse is our planet #Jup #Jupiter what do you think of this?
NRG® of Blockchain tweet media
English
1
0
5
436
NRG® of Blockchain retweetet
Shukroh
Shukroh@Shuab234·
86% of our Gari, Lafun, and Fufu might be hiding a toxic secret. 😱 ​I’m Sulaimon Shukurah, and I'm building the Cyanometer to detect cyanide toxins instantly and prevent diseases like Konzo.
Malete, Nigeria 🇳🇬 English
26
38
66
3K
Assidikh
Assidikh@Assidikh2·
𝗰𝗼𝗳𝗵𝗲𝗷𝘀 𝗺𝗲𝗻𝘁𝗮𝗹 𝗺𝗼𝗱𝗲𝗹 𝗲𝘅𝗽𝗹𝗮𝗶𝗻𝗲𝗱 on my last post i talked about cofhejs, the TypeScript package that makes interacting with FHE-enabled smart contracts way easier, and i promised i’d break down each key concept one by one, starting with 𝗺𝗲𝗻𝘁𝗮𝗹 𝗺𝗼𝗱𝗲𝗹. 𝘄𝗵𝗮𝘁’𝘀 𝗺𝗲𝗻𝘁𝗮𝗹 𝗺𝗼𝗱𝗲𝗹 this is about understanding how data flows through FHE-enabled dApps, from encryption to computation to decryption. 𝘁𝗵𝗲 𝗰𝗼𝘂𝗻𝘁𝗲𝗿 𝗲𝘅𝗮𝗺𝗽𝗹𝗲 imagine a smart contract called 𝗖𝗼𝘂𝗻𝘁𝗲𝗿 where every user has their own private counter. users can increment it and read their value with complete privacy, nobody, not even the contract itself, can see the actual numbers. 𝗸𝗲𝘆 𝗽𝗶𝗲𝗰𝗲𝘀 𝘁𝗼 𝗸𝗻𝗼𝘄 public key => a lock anyone can use to seal data private key => the unique key to unlock sealed data CoFHE co-processor => @fhenix off-chain service that handles FHE operations ciphertext => encrypted data that can be computed on without decryption -> 𝗲𝗻𝗰𝗿𝘆𝗽𝘁𝗶𝗻𝗴 𝗶𝗻𝗽𝘂𝘁 𝗱𝗮𝘁𝗮 when a user wants to add 5 to their counter, it first gets encrypted. the plaintext 5 is encrypted using the co-processor’s public key this creates 𝗰𝗶𝗽𝗵𝗲𝗿𝘁𝗲𝘅𝘁, random-looking bytes the blockchain only sees the encrypted value, never the number itself think of it as putting 5 in a locked box. the box goes to the contract, but no one can peek inside without the private key. -> 𝗽𝗲𝗿𝗳𝗼𝗿𝗺𝗶𝗻𝗴 𝗰𝗼𝗺𝗽𝘂𝘁𝗮𝘁𝗶𝗼𝗻𝘀 𝗼𝗻 𝗲𝗻𝗰𝗿𝘆𝗽𝘁𝗲𝗱 𝗱𝗮𝘁𝗮 once the ciphertext reaches the contract, FHE magic happens. the contract can do arithmetic directly on the encrypted values without ever decrypting them. it adds the encrypted input to the encrypted counter the result stays encrypted at no point does the contract, blockchain, or anyone else see the actual numbers this is where 𝗳𝘂𝗹𝗹𝘆 𝗵𝗼𝗺𝗼𝗺𝗼𝗿𝗽𝗵𝗶𝗰 𝗲𝗻𝗰𝗿𝘆𝗽𝘁𝗶𝗼𝗻 shines. the co-processor lets the contract: add encrypted values compare encrypted values run other arithmetic all while keeping the data fully private -> 𝗿𝗲𝘁𝗿𝗶𝗲𝘃𝗶𝗻𝗴 𝗲𝗻𝗰𝗿𝘆𝗽𝘁𝗲𝗱 𝗼𝘂𝘁𝗽𝘂𝘁 when a user wants to read their counter, they get the encrypted data and re-encrypt it with their own key. the contract asks the co-processor to swap locks: remove its encryption, apply the user’s public key now the user can decrypt it with their private key the data stays private the entire way think of it as exchanging locks on the box: the box starts locked by the co-processor, the user adds their lock, and only they can open it. next post i’ll dive into 𝗲𝗻𝗰𝗿𝘆𝗽𝘁𝗶𝗼𝗻 𝗶𝘁𝘀𝗲𝗹𝗳 and show how cofhejs makes it all work in practice.
Assidikh tweet media
Assidikh@Assidikh2

𝗴𝗲𝘁𝘁𝗶𝗻𝗴 𝘀𝘁𝗮𝗿𝘁𝗲𝗱 𝘄𝗶𝘁𝗵 𝗰𝗼𝗳𝗵𝗲𝗷𝘀 𝗰𝗼𝗳𝗵𝗲𝗷𝘀 is a TypeScript package that makes interacting with FHE-enabled smart contracts way easier. it talks to @fhenix co-processor (𝗖𝗼𝗙𝗛𝗘) so you can encrypt, decrypt, and handle data without ever leaving the privacy layer. 𝘄𝗵𝘆 𝗶𝘁 𝗺𝗮𝘁𝘁𝗲𝗿𝘀 if you’re building with 𝗙𝗛𝗘-𝗲𝗻𝗮𝗯𝗹𝗲𝗱 𝗱𝗔𝗽𝗽𝘀, cofhejs is basically your bridge between your frontend and encrypted contracts. your data stays 𝗽𝗿𝗶𝘃𝗮𝘁𝗲 from 𝗶𝗻𝗽𝘂𝘁 𝘁𝗼 𝗼𝘂𝘁𝗽𝘂𝘁, even while the contract does its computation on it. 𝗸𝗲𝘆 𝗰𝗼𝗻𝗰𝗲𝗽𝘁𝘀 𝗶’𝗹𝗹 𝗯𝗿𝗲𝗮𝗸 𝗱𝗼𝘄𝗻 𝗻𝗲𝘅𝘁 𝗺𝗲𝗻𝘁𝗮𝗹 𝗺𝗼𝗱𝗲𝗹 => understanding how data flows through FHE-enabled dApps 𝗲𝗻𝗰𝗿𝘆𝗽𝘁𝗶𝗼𝗻 => encrypt your input before sending it to a contract 𝗽𝗲𝗿𝗺𝗶𝘁𝘀 𝗺𝗮𝗻𝗮𝗴𝗲𝗺𝗲𝗻𝘁 => create and manage permissions to access encrypted data 𝘀𝗲𝗮𝗹𝗶𝗻𝗴 & 𝘂𝗻𝘀𝗲𝗮𝗹𝗶𝗻𝗴 => unseal the encrypted data returned from contracts cofhejs lets the whole encryption journey start and end privately, while FHE contracts do the heavy lifting without seeing your data. i’ll explain each of these concepts one by one in my next posts, starting with 𝗺𝗲𝗻𝘁𝗮𝗹 𝗺𝗼𝗱𝗲𝗹. you’ll love it, trust me. tweeting gfhenix while the market nukes >>>>

English
14
5
25
1.1K
gmnxy ⧉ ⟡
gmnxy ⧉ ⟡@gmnxy·
@Energyconcepts2 Your WhatsApp group will answer this No more tweet links where people source for engagement.
English
1
0
0
59
gmnxy ⧉ ⟡
gmnxy ⧉ ⟡@gmnxy·
@Energyconcepts2 Yes The masjid get it Time to use quench my thirst after performing ablution with it 😂😂
English
1
0
1
15
gmnxy ⧉ ⟡
gmnxy ⧉ ⟡@gmnxy·
Table water now #400 for gym The bottle I used for NYSC never spoil Time to put it to use
English
1
0
1
44
Sui Community💧
Sui Community💧@Community_Sui·
Merry Christmas! Select one random number🧑‍🎄 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 3 lucky numbers containing 3 special Santa gifts. Check your DM later $SUI 📩
Sui Community💧 tweet media
English
688
114
506
38.3K
NRG® of Blockchain
NRG® of Blockchain@Energyconcepts2·
@SonicLabs Beans and bread 😌 The type that’s garnished with plantain and proteins Santa sonic, run am for me
English
0
0
0
8
NRG® of Blockchain retweetet
Sonic
Sonic@SonicLabs·
🎄 Day 7 of our 8 Days of Christmas is here. Today's prize is 1,450 $USDC! To enter today's drawing: - Retweet and like this post - Comment your favorite holiday dish 🎅 Good luck everyone!
Sonic tweet media
English
3.2K
2.4K
3K
113.7K
Jeremy
Jeremy@Jeremybtc·
You could literally – Buy ChatGPT Plus – Start a business and call it an AI agency – Charge $15K per month – Sign 10 clients That’s $1.8M a year Why is nobody doing this
English
984
272
12.9K
2.1M
NRG® of Blockchain retweetet
catoshi22 | Amyth
catoshi22 | Amyth@catoshi22·
happy caturday 19th of juply! gifting 300 $JUP to 3 lucky cats (100 JUP each) with Jup mobile / universal send! The goal is to share the love with the community and gain a few followers to celebrate the month of Juply! To enter 1. Follow me 2. Comment: happy caturday! 3. Repost
English
1K
676
766
29.9K