ethereum constant

Map<String, RequiredNamespace> const ethereum

Implementation

static const Map<String, RequiredNamespace> ethereum = {
  'eip155': RequiredNamespace(
    methods: [
      'eth_sendTransaction',
      'personal_sign',
      'eth_sign',
      'eth_signTypedData',
    ],
    chains: ['eip155:1'],
    events: [
      'chainChanged',
      'accountsChanged',
    ],
  ),
};