How to fix ERR_SSL_VERSION_OR_CIPHER_MISMATCH
I was setting up SSL for a domain using cloudflare along with nginx-acme and nginx-proxy but I got error ERR_SSL_VERSION_OR_CIPHER_MISMATCH when testing. Checking the container logs, everything looks alright. By using SSL Labs toolkit, it shows error “Failed to communicate with the secure server”:Looking it up, I found https://community.cloudflare.com/t/failed-to-communicate-with-the-secure-server/186871 which links to https://developers.cloudflare.com/ssl/troubleshooting/version-cipher-misma...
How to spin up your own PoA EVM chain?
We will set up 1 bootnode and 2 geth nodes in 3 different servers. They will form the network for the EVM chain. All the nodes will run in containers.My setupI created 3 droplets on digitalocean (CentOS; shared CPU; 1GB 1Core)install and start docker (with the compose plugin) in all dropletsStep 1: set up bootnode (droplet A)first create boot.keymkdir /root/devnet/ && docker run -d --rm -v /root:/root ethereum/client-go:alltools-latest bootnode --genkey=/root/devnet/boot.key then cr...
Filecoin/FVM: Study Notes
Study Stepsread https://docs.filecoin.io/about/basics/introduction/read The Filecoin Virtual Machine: Everything You Need to Knowread https://docs.filecoin.io/about/basics/filecoin-faq/read How Filecoin storage and retrieval workswatch Space Warp Summit 🛸 Understanding the FVM - Raul Kripalaniwatch Space Warp Summit 🛸 Programming on the FEVM - Zak AyeshHigh-levelFilecoin is built on top of the same software powering IPFS protocol but they are different networksFilecoin is different from IPF...
twitter: @0xb2p github: @bap2pecs
How to fix ERR_SSL_VERSION_OR_CIPHER_MISMATCH
I was setting up SSL for a domain using cloudflare along with nginx-acme and nginx-proxy but I got error ERR_SSL_VERSION_OR_CIPHER_MISMATCH when testing. Checking the container logs, everything looks alright. By using SSL Labs toolkit, it shows error “Failed to communicate with the secure server”:Looking it up, I found https://community.cloudflare.com/t/failed-to-communicate-with-the-secure-server/186871 which links to https://developers.cloudflare.com/ssl/troubleshooting/version-cipher-misma...
How to spin up your own PoA EVM chain?
We will set up 1 bootnode and 2 geth nodes in 3 different servers. They will form the network for the EVM chain. All the nodes will run in containers.My setupI created 3 droplets on digitalocean (CentOS; shared CPU; 1GB 1Core)install and start docker (with the compose plugin) in all dropletsStep 1: set up bootnode (droplet A)first create boot.keymkdir /root/devnet/ && docker run -d --rm -v /root:/root ethereum/client-go:alltools-latest bootnode --genkey=/root/devnet/boot.key then cr...
Filecoin/FVM: Study Notes
Study Stepsread https://docs.filecoin.io/about/basics/introduction/read The Filecoin Virtual Machine: Everything You Need to Knowread https://docs.filecoin.io/about/basics/filecoin-faq/read How Filecoin storage and retrieval workswatch Space Warp Summit 🛸 Understanding the FVM - Raul Kripalaniwatch Space Warp Summit 🛸 Programming on the FEVM - Zak AyeshHigh-levelFilecoin is built on top of the same software powering IPFS protocol but they are different networksFilecoin is different from IPF...
twitter: @0xb2p github: @bap2pecs

Subscribe to bap2pecs

Subscribe to bap2pecs
Share Dialog
Share Dialog
<100 subscribers
<100 subscribers
Disclaimer: This study note serves as a personal reminder rather than a comprehensive list of all the concepts in the whitepaper.
Global object pool: In Sui, persistent storage is supported via Sui’s global object pool rather than the account-based global storage of core Move
Move vs. the Sui Move
Modules, Types and Abilities
Objects and Ownership
objects are first-class citizens of the system
package code objects, and struct data objects
Transactions: public tx (i.e. publish a package), call tx (i.e. call a package)
Transaction Effects, Events, Create/Update/Wrap/Delete

FastPay + Delegated Proof-of-Stake
requires 2/3 stake from honest authorities
liveness and eventual delivery: at least one honest party acts as a relay for each certificate between authorities
object reference, transaction certificate, effect certificate
persistent stores on authorities: 4 key-value maps
causality & parallelism
owned objects vs. shared objects
execution for transactions involving read-only and owned objects requires only consistent broadcast and a single certificate to proceed; and Byzantine agreement is only required for transactions involving shared objects (using a high-throughput consensus system)
full client (replica) and light client
To ensure that more resources result in increased capacity quasi-linearly, the Sui design aggressively reduces bottlenecks and points of synchronization requiring global locks within authorities. Processing transactions is cleanly separated into two phases, namely (1) ensuring the transaction has exclusive access to the owned or shared objects at a specific version, and (2) then subsequently executing the transaction and committing its effects.
In my view, the most significant innovations of Sui are:
split the common “fire-and-forget” mode of broadcasting transactions in traditional blockchain networks to the two phases: 1) collect enough signatures from validators; 2) create the certificate and broadcast.
object-based global storage rather than account-based
differentiate the processes for handling single-owner objects from those for handling shared objects.
By combining these elements, the system realizes high throughput, low latency, and horizontal scalability.
However, effective utilization of the system demands careful design of the data model and operations by developers. For instance, the suitability of using the single-owner object model for creating a standard ERC-20 token is not immediately apparent.
Disclaimer: This study note serves as a personal reminder rather than a comprehensive list of all the concepts in the whitepaper.
Global object pool: In Sui, persistent storage is supported via Sui’s global object pool rather than the account-based global storage of core Move
Move vs. the Sui Move
Modules, Types and Abilities
Objects and Ownership
objects are first-class citizens of the system
package code objects, and struct data objects
Transactions: public tx (i.e. publish a package), call tx (i.e. call a package)
Transaction Effects, Events, Create/Update/Wrap/Delete

FastPay + Delegated Proof-of-Stake
requires 2/3 stake from honest authorities
liveness and eventual delivery: at least one honest party acts as a relay for each certificate between authorities
object reference, transaction certificate, effect certificate
persistent stores on authorities: 4 key-value maps
causality & parallelism
owned objects vs. shared objects
execution for transactions involving read-only and owned objects requires only consistent broadcast and a single certificate to proceed; and Byzantine agreement is only required for transactions involving shared objects (using a high-throughput consensus system)
full client (replica) and light client
To ensure that more resources result in increased capacity quasi-linearly, the Sui design aggressively reduces bottlenecks and points of synchronization requiring global locks within authorities. Processing transactions is cleanly separated into two phases, namely (1) ensuring the transaction has exclusive access to the owned or shared objects at a specific version, and (2) then subsequently executing the transaction and committing its effects.
In my view, the most significant innovations of Sui are:
split the common “fire-and-forget” mode of broadcasting transactions in traditional blockchain networks to the two phases: 1) collect enough signatures from validators; 2) create the certificate and broadcast.
object-based global storage rather than account-based
differentiate the processes for handling single-owner objects from those for handling shared objects.
By combining these elements, the system realizes high throughput, low latency, and horizontal scalability.
However, effective utilization of the system demands careful design of the data model and operations by developers. For instance, the suitability of using the single-owner object model for creating a standard ERC-20 token is not immediately apparent.
No activity yet