10 lines
403 B
TypeScript
10 lines
403 B
TypeScript
export const demoContactsMap: Record<string, string> = {
|
|
'swift.eth': 'eip155:1:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb',
|
|
'kotlin.eth': 'eip155:2:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb'
|
|
}
|
|
|
|
export const demoAddressResolver: Record<string, string> = {
|
|
'eip155:1:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb': 'swift.eth',
|
|
'eip155:2:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb': 'kotlin.eth'
|
|
}
|