Results 12 issues of Trevor Miller

### **Introduction to Sign-In with Ethereum** A quickly growing aspect of Ethereum development is EIP-4361 Sign-In with Ethereum (https://eips.ethereum.org/EIPS/eip-4361) which aims to "standardize off-chain authentication for Ethereum accounts to establish...

## Problem verifyBytes() checks for the prefix appended with MX, but sign functions such as signTransaction() append TX to the front. This then causes the verifyBytes() function to return false...

new-feature-request

Feature Request: Currently, the useTokenBalance hook only supports ERC-20 balances. It would be great if we could either adjust this to support the ERC-1155 standard in addition to ERC-20, or...

✨ type.feature
🔎 triage.investigation
🙋🏽‍♂️ triage.request

**Describe the bug** Keplr doesn't allow signatures of transactions for 0 denom currency. This is useful for development purposes, **To Reproduce** Steps to reproduce the behavior: 1. Initiate an account...

bug
keplr-extension

As BIP322 support becomes more popular with Bitcoin wallets (Phantom, etc), it would be nice to have a Go implementation for message signature verification. To my knowledge, I could not...

good first issues
signing
bip

### Summary Many applications could benefit from an extension to the x/authz module which supports two-way authorizations. For example, I approve Msgs A, B, and C to be executed if...

T:feature-request
C:x/authz

The following results in an undefined error when a child type makes a field required that is not required in the parent. ```ts export interface Parent { fieldOne?: string }...

The following is a valid schema, but typeconv fails with a cyclic dependency. ```ts export interface D {} export interface C extends D {} export interface B { fieldOne?: D;...

### Summary Currently, every transaction, including personal message signatures (ADR36), require the public key of the Cosmos address to be specified in the AuthInfo. This is bad developer experience and...

T:feature-request