A simple Elixir server side implementation of GeeTest v3 captcha.
Bomberman written in JavaScript
The GraphQL toolkit for Elixir
terianil/adventofcode-erlang 0
My adventofcode solutions written in Erlang
Testable, composable, and adapter based Elixir email library for devs that love piping.
Arbitrary precision decimal arithmetic for Elixir
A toolkit for data mapping and language integrated query
SQL-based adapters for Ecto and database migrations
Elixir is a dynamic, functional language designed for building scalable and maintainable applications
PR opened ethereum/eth1.0-specs
Without this change Geth gives the error Fatal: Failed to write genesis block: unsupported fork ordering: petersburgBlock not enabled, but istanbulBlock enabled at 0
pr created time in 2 months
push eventethereum/eth1.0-specs
commit sha ce42880fb2722840ea3fa9cb0241f32f07f63264
Change genesis file to work with Besu and Geth
commit sha add6c32d166f819c41accb166eb23c605ed35318
Merge pull request #29 from ethereum/timbeiko-patch-1 Change genesis file to work with Besu and Geth
push time in 2 months
pull request commentethereum/eth1.0-specs
Thank you @MicahZoltu!
comment created time in 2 months
push eventethereum/eth1.0-specs
commit sha ba429763250ab9f55800bc7efc9f5957377216fe
Update aleut.md
push time in 2 months
Pull request review commentethereum/eth1.0-specs
+---+title: JSPON RPC Quantity Type Spec+author: Alita Moore (@alita-moore)+discussions-to: https://github.com/ethereum-oasis/eth1.x-JSON-RPC-API-standard+created: 2021-04-13+---++# `Quantity`++##### Description
Recommend against skipping heading levels, it can break some markdown tools like table of contents generators.
comment created time in 2 months
Pull request review commentethereum/eth1.0-specs
+---+title: JSPON RPC Quantity Type Spec+author: Alita Moore (@alita-moore)+discussions-to: https://github.com/ethereum-oasis/eth1.x-JSON-RPC-API-standard+created: 2021-04-13+---++# `Quantity`++##### Description++`Quantity` represents the
Did this sentence get truncated somehow?
comment created time in 2 months
Pull request review commentethereum/eth1.0-specs
+---+title: JSPON RPC Quantity Type Spec+author: Alita Moore (@alita-moore)+discussions-to: https://github.com/ethereum-oasis/eth1.x-JSON-RPC-API-standard+created: 2021-04-13+---++# `Quantity`++##### Description++`Quantity` represents the ++##### Requirements++| Req. | Description |+| ----------- | ------------ |+| **Γ1** | A `Quantity` value **MUST** be hex-encoded |+| **Γ2** | A `Quantity` value **MUST** be "0x"-prefixed |+| **Γ3** | A `Quantity` value **MUST** be expressed using the fewest possible hex digits per byte |+| **Γ4** | A `Quantity` value **MUST** express zero as "0x0" |
May want to mention that leading 0s should be stripped.
comment created time in 2 months
Pull request review commentethereum/eth1.0-specs
+---+title: JSPON RPC Quantity Type Spec+author: Alita Moore (@alita-moore)+discussions-to: https://github.com/ethereum-oasis/eth1.x-JSON-RPC-API-standard+created: 2021-04-13+---++# `Quantity`++##### Description++`Quantity` represents the ++##### Requirements++| Req. | Description |+| ----------- | ------------ |+| **Γ1** | A `Quantity` value **MUST** be hex-encoded |+| **Γ2** | A `Quantity` value **MUST** be "0x"-prefixed |+| **Γ3** | A `Quantity` value **MUST** be expressed using the fewest possible hex digits per byte |+| **Γ4** | A `Quantity` value **MUST** express zero as "0x0" |
May want to add a note/line indicating that quantities must be unsigned integers (negative values not supported).
comment created time in 2 months
Pull request review commentethereum/eth1.0-specs
+---+title: JSPON RPC Quantity Type Spec+author: Alita Moore (@alita-moore)+discussions-to: https://github.com/ethereum-oasis/eth1.x-JSON-RPC-API-standard+created: 2021-04-13+---++# `Quantity`++##### Description++`Quantity` represents the ++##### Requirements++| Req. | Description |+| ----------- | ------------ |+| **Γ1** | A `Quantity` value **MUST** be hex-encoded |+| **Γ2** | A `Quantity` value **MUST** be "0x"-prefixed |+| **Γ3** | A `Quantity` value **MUST** be expressed using the fewest possible hex digits per byte |+| **Γ4** | A `Quantity` value **MUST** express zero as "0x0" |
I think I would just prefer a bulleted list here rather than a table.
* A `Quantity` value **MUST** be hex-encoded
* A `Quantity` value **MUST** be "0x"-prefixed
* A `Quantity` value **MUST** be expressed using the fewest possible hex digits per byte
* A `Quantity` value **MUST** express zero as "0x0"
comment created time in 2 months
Pull request review commentethereum/eth1.0-specs
+---+title: JSPON RPC Quantity Type Spec+author: Alita Moore (@alita-moore)+discussions-to: https://github.com/ethereum-oasis/eth1.x-JSON-RPC-API-standard+created: 2021-04-13+---
I don't think metadata is required. We can get most of it from other places like GitHub history, file name, etc. and I think the plan is to have discussion just take place on the PR directly.
comment created time in 2 months
pull request commentethereum/eth1.0-specs
Inviting @tkstanczak, @MicahZoltu for review.
comment created time in 2 months
issue openedethereum/eth1.0-specs
see the drafted spec here
The following specs are expected to strictly define the behavior of eth_blockNumber
| Spec | Description |
|---|---|
| δ1 | Returns the number of the block that is the current chain head (the latest best processed and verified block on the chain) |
| δ2 | The number of the chain head is returned if the node has ability of serving the header, body, and the full state starting from the state root of the block having the number in a finite time |
| δ3 | The node may know a higher block number but still return a lower one if the lower number block has higher total difficulty or if the higher number block has not been fully processed yet |
| δ4 | Provides no promise on for how long the node will keep the block details so if you request the block data for the given block number any time after receiving the block number itself, you may get a null response |
| δ5 | Returns an error if the node has not yet processed or failed to process the genesis block. Some nodes MAY decide not to enable JSON RPC if the genesis block calculation has not been done yet |
The purpose of this issue is to collect consensus for the specifications as described; please respond with a comment or ✅; I will collect your responses and keep track of consensus between clients. For example:
δ1) ✅ δ2) ✅ δ3) ✅ δ4) ✅ δ5) ✅
created time in 2 months
push eventethereum/eth1.0-specs
commit sha 7bbc49f28defd4f879e3afc146f8e8e493151dba
Update aleut.md
commit sha acd6991a2dbbb5970c313b47a661443474d8bffd
Merge pull request #26 from lightclient/patch-1 add geth aleut bootnode
push time in 2 months
push eventethereum/eth1.0-specs
commit sha e5c4da22c861b42e29b10e799af506ccba067640
Add Aleut Static Nodes files
commit sha 6145dc00967122f6463f34efd9da0a5c7a1608fa
Merge pull request #25 from abdelhamidbakhta/aleut-network-details Add Aleut Static Nodes files
push time in 2 months
PR merged ethereum/eth1.0-specs
- Besu
- Nethermind
pr closed time in 2 months
PR opened ethereum/eth1.0-specs
- Besu
- Nethermind
pr created time in 2 months
push eventethereum/eth1.0-specs
commit sha a381a574d7a32545cfb96a4b32dbb7d5287203aa
Add nethermind syncing status
push time in 2 months
push eventethereum/eth1.0-specs
commit sha 946f1cae844f66ba76b0003311cf87bd1e806e74
Formatting
push time in 2 months
push eventethereum/eth1.0-specs
commit sha cc6d20b1f6ca86187ce56be9cdfe0c33547200d6
Add spaces
push time in 2 months
push eventethereum/eth1.0-specs
commit sha 1a7c4688e5ab33b892f4409363a3b863170245fd
Add Genesis file and Chain ID
push time in 2 months
pull request commentethereum/eth1.0-specs
Reorganize Eth1-specs Repo & Add Network Upgrades Info
Thanks @poojaranjan just added the diagram in a separate commit 😄 !
comment created time in 2 months