Commit b126e6d6 authored by Igor Stuev's avatar Igor Stuev Committed by GitHub

add filecoin address for proxy implementations (#2359)

parent 8c6d7400
...@@ -2,6 +2,7 @@ import type { AddressMetadataTagApi } from './addressMetadata'; ...@@ -2,6 +2,7 @@ import type { AddressMetadataTagApi } from './addressMetadata';
export interface AddressImplementation { export interface AddressImplementation {
address: string; address: string;
filecoin_robust_address?: string | null;
name?: string | null; name?: string | null;
} }
......
...@@ -55,7 +55,7 @@ const AddressEntityContentProxy = (props: ContentProps) => { ...@@ -55,7 +55,7 @@ const AddressEntityContentProxy = (props: ContentProps) => {
{ implementations.map((item) => ( { implementations.map((item) => (
<AddressEntity <AddressEntity
key={ item.address } key={ item.address }
address={{ hash: item.address }} address={{ hash: item.address, filecoin: { robust: item.filecoin_robust_address } }}
noLink noLink
noIcon noIcon
noHighlight noHighlight
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment