Nick Mudge

Results 100 comments of Nick Mudge

@ricmoo I am not use ledger in the browser. I just need ledger to work with ethersjs on nodejs. It does work but not with Polygon.

@geoffreymcgill No PDF support is preventing me from using Retype

Yes, I agree with you. Would love it if someone could help with this.

@jerryji It means that a facet can add its own functions to a diamond. A facet can implement the `initialize(bytes memory _data)` function. And that function can call a version...

@arthcp I see, cool. Instead of copying calldata to memory and dropping to assembly you can use calldata slices. For example: ```Solidity sender = abi.decode(msg.data[msg.data.length-32:], (address)); ``` Array slices info...

Nevermind, you won't be able to decode it that way because it is encoded with `abi.encodePacked`. But if you encoded it with `abi.encode` instead then you could.

Since the address is encoded with abi.encodePacked, you could do it like this: ```Solidity pragma solidity 0.6.6; abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) {...

@akru I understand. Thank you!

@androolloyd yes, me too!