Add index signature to FakeTokenRegistry

This commit is contained in:
Leonid Logvinov
2018-10-18 15:37:22 +02:00
parent ece76e5874
commit 392d339443

View File

@@ -1,4 +1,11 @@
export const fakeTokenRegistry = {
export interface FakeTokenRegistryEntry {
address: string;
name: string;
symbol: string;
decimals: number;
}
export const fakeTokenRegistry: { [networkId: string]: FakeTokenRegistryEntry[] } = {
'1': [
{
address: '0xe41d2489571d322189246dafa5ebde1f4699f498',