1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-3423 Settings | Enhancement | Show ethereumKey in tech info section on About screen (#2256)

This commit is contained in:
Evgenii Kozlov 2025-04-08 17:30:08 +02:00 committed by GitHub
parent 43191fe442
commit db4ec70790
Signed by: github
GPG key ID: B5690EEEBB952194
7 changed files with 25 additions and 10 deletions

View file

@ -46,7 +46,8 @@ fun Rpc.Account.Select.Response.toAccountSetup(): AccountSetup {
device = info.deviceId,
network = info.networkId,
techSpace = info.techSpaceId,
workspaceObjectId = info.workspaceObjectId
workspaceObjectId = info.workspaceObjectId,
ethereumAddress = info.ethereumAddress
),
status = status?.core() ?: AccountStatus.Unknown
)

View file

@ -841,7 +841,8 @@ fun Account.Info.config(): Config = Config(
analytics = analyticsId,
device = deviceId,
network = networkId,
workspaceObjectId = workspaceObjectId
workspaceObjectId = workspaceObjectId,
ethereumAddress = ethereumAddress
)
fun MManifestInfo.toCoreModel(): ManifestInfo {