Jake Pospischil
Jake Pospischil
Additionally, the NestJS gRPC documentation now describes a third `grpc.ServerUnaryCall` parameter to Controller methods (see https://docs.nestjs.com/microservices/grpc#grpc-metadata), although I'm unsure how often this is utilized in practice and whether it warrants...
I have noticed that I can force generation of `MessageType.fromPartial` methods by also providing one of `outputEncodeMethods=true` or `outputJsonMethods=true` (and overriding the default `nestJs=true` options). This doesn't appear to be...
Thanks, I wasn't aware of the head slot in either of those endpoints. Interestingly, I'm testing with Lighthouse v0.3.0 and found that it still returns the numeric head slot in...
https://github.com/rocket-pool/smartnode -- node software for a decentralized staking pool. currently consumes lighthouse APIs, with prysm integration in progress. currently queries eth2 config, the beacon head state, and validator status.
One possible solution would be to record shares in a validator on the beacon chain itself. A naive implementation might look like the following: Set `MAX_VALIDATOR_SHARES` to an arbitrary constant,...
Another possible solution involves adding an alternate withdrawal mechanism to the spec, where the submitted withdrawal credentials represent an eth 1.0 address, instead of a BLS pubkey (/ eth 2.0...
(Thanks to @dankrad for participating in initial discussions around this issue and helping to explore options!)
- The wallet mnemonic is never stored on disk, it is simply printed to stdout and then the user is asked to confirm it; once they do the terminal output...
> I think node operators can not be expected to operate a mainnet node with the keys protected only by a passphrase on the staking machine itself. The node operator...
FYI gas price (in gwei) and limit can be set as follows: ``` rpl --gasPrice 20 --gasLimit 21000 node send 16.597431 ETH 0x7cebB5D35671D4ffbbb6a08CbE38C8d026204581 ``` But agree that UX improvements can...