<p>PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="370665617" data-permission-text="Issue title is private" data-url="https://github.com/bisq-network/bisq/issues/1776" data-hovercard-type="pull_request" data-hovercard-url="/bisq-network/bisq/pull/1776/hovercard" href="https://github.com/bisq-network/bisq/pull/1776">#1776</a> is hard to merge dorectly as there have been many cahnges. So I merged it locally and added also a bit more work in progress implementation.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>  <a href='https://github.com/bisq-network/bisq/pull/1851'>https://github.com/bisq-network/bisq/pull/1851</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Don't show role type for bonded reputation</li>
  <li>Add interface for BondedRole to allow for more generic bonds</li>
  <li>Add bonded reputation</li>
  <li>Add bonded reputation service, storage</li>
  <li>Merge branch 'bonded-reputation' of https://github.com/sqrrm/bisq-desktop into sqrrm-bonded-reputation</li>
  <li>Fix merge errors</li>
  <li>Cleanup</li>
  <li>Merge branch 'release-candidate-0.9.0' into sqrrm-bonded-reputation</li>
  <li>Update to changed getter</li>
  <li>Add translation strings for roles</li>
  <li>Add dev values for lock time and proposal phase</li>
  <li>WIP bonded roles</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-0">common/src/main/proto/pb.proto</a>
    (13)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-1">core/src/main/java/bisq/core/app/misc/AppSetupWithP2PAndDAO.java</a>
    (24)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-2">core/src/main/java/bisq/core/dao/DaoFacade.java</a>
    (30)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-3">core/src/main/java/bisq/core/dao/DaoModule.java</a>
    (2)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-4">core/src/main/java/bisq/core/dao/bonding/BondingConsensus.java</a>
    (10)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-5">core/src/main/java/bisq/core/dao/bonding/bond/BondWithHash.java</a>
    (24)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-6">core/src/main/java/bisq/core/dao/bonding/bond/BondedReputation.java</a>
    (151)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-7">core/src/main/java/bisq/core/dao/bonding/bond/BondedReputationList.java</a>
    (74)
  </li>
  <li>
    <strong>A</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-8">core/src/main/java/bisq/core/dao/bonding/bond/BondedReputationService.java</a>
    (199)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-9">core/src/main/java/bisq/core/dao/bonding/lockup/LockupService.java</a>
    (13)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-10">core/src/main/java/bisq/core/dao/governance/role/BondedRole.java</a>
    (16)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-11">core/src/main/java/bisq/core/dao/governance/role/BondedRoleList.java</a>
    (4)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-12">core/src/main/java/bisq/core/dao/governance/role/BondedRoleType.java</a>
    (5)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-13">core/src/main/java/bisq/core/dao/governance/role/BondedRolesService.java</a>
    (30)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-14">core/src/main/java/bisq/core/dao/state/DaoStateService.java</a>
    (10)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-15">core/src/main/java/bisq/core/dao/state/governance/Param.java</a>
    (2)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-16">core/src/main/java/bisq/core/setup/CorePersistedDataHost.java</a>
    (2)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-17">core/src/main/resources/i18n/displayStrings.properties</a>
    (37)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-18">desktop/src/main/java/bisq/desktop/main/dao/bonding/BondingViewUtils.java</a>
    (114)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-19">desktop/src/main/java/bisq/desktop/main/dao/bonding/lockup/LockupView.java</a>
    (95)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-20">desktop/src/main/java/bisq/desktop/main/dao/bonding/roles/BondedRolesListItem.java</a>
    (1)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-21">desktop/src/main/java/bisq/desktop/main/dao/bonding/roles/BondedRolesView.java</a>
    (11)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-22">desktop/src/main/java/bisq/desktop/main/dao/bonding/unlock/LockupTxListItem.java</a>
    (48)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/bisq-network/bisq/pull/1851/files#diff-23">desktop/src/main/java/bisq/desktop/main/dao/bonding/unlock/UnlockView.java</a>
    (47)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/bisq-network/bisq/pull/1851.patch'>https://github.com/bisq-network/bisq/pull/1851.patch</a></li>
  <li><a href='https://github.com/bisq-network/bisq/pull/1851.diff'>https://github.com/bisq-network/bisq/pull/1851.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/bisq-network/bisq/pull/1851">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AkpZtsFPx75g3gnVVeM3BF6uJfw5t6sjks5uqjF2gaJpZM4YFh1i">mute the thread</a>.<img src="https://github.com/notifications/beacon/AkpZtlTK7lHaWhYw8tR6AcHcNkkh9ub_ks5uqjF2gaJpZM4YFh1i.gif" height="1" width="1" alt="" /></p>
<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/bisq-network/bisq","title":"bisq-network/bisq","subtitle":"GitHub repository","main_image_url":"https://assets-cdn.github.com/images/email/message_cards/header.png","avatar_image_url":"https://assets-cdn.github.com/images/email/message_cards/avatar.png","action":{"name":"Open in GitHub","url":"https://github.com/bisq-network/bisq"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Bonded reputation (#1851)"}],"action":{"name":"View Pull Request","url":"https://github.com/bisq-network/bisq/pull/1851"}}}</script>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/bisq-network/bisq/pull/1851",
"url": "https://github.com/bisq-network/bisq/pull/1851",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
},
{
"@type": "MessageCard",
"@context": "http://schema.org/extensions",
"hideOriginalBody": "false",
"originator": "AF6C5A86-E920-430C-9C59-A73278B5EFEB",
"title": "Bonded reputation (#1851)",
"sections": [
{
"text": "",
"activityTitle": "**Manfred Karrer**",
"activityImage": "https://assets-cdn.github.com/images/email/message_cards/avatar.png",
"activitySubtitle": "@ManfredKarrer",
"facts": [

]
},
{
"title": "Commit Summary",
"facts": [
{
"name": "b02daca",
"value": "Don't show role type for bonded reputation"
},
{
"name": "b9d6b3a",
"value": "Add interface for BondedRole to allow for more generic bonds"
},
{
"name": "7b72f10",
"value": "Add bonded reputation"
},
{
"name": "b3c8610",
"value": "Add bonded reputation service, storage"
},
{
"name": "a8b833c",
"value": "Merge branch 'bonded-reputation' of https://github.com/sqrrm/bisq-desktop into sqrrm-bonded-reputation"
},
{
"name": "e145080",
"value": "Fix merge errors"
},
{
"name": "ad8a77d",
"value": "Cleanup"
},
{
"name": "80066bd",
"value": "Merge branch 'release-candidate-0.9.0' into sqrrm-bonded-reputation"
},
{
"name": "f45517a",
"value": "Update to changed getter"
},
{
"name": "d92e0dd",
"value": "Add translation strings for roles"
},
{
"name": "bdbcc5e",
"value": "Add dev values for lock time and proposal phase"
},
{
"name": "3c5a1da",
"value": "WIP bonded roles"
}
]
},
{
"title": "File Changes",
"facts": [
{
"name": "Modified",
"value": "[common/src/main/proto/pb.proto](https://github.com/bisq-network/bisq/pull/1851/files#diff-0) (13 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/app/misc/AppSetupWithP2PAndDAO.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-1) (24 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/dao/DaoFacade.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-2) (30 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/dao/DaoModule.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-3) (2 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/dao/bonding/BondingConsensus.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-4) (10 changes)"
},
{
"name": "Added",
"value": "[core/src/main/java/bisq/core/dao/bonding/bond/BondWithHash.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-5) (24 changes)"
},
{
"name": "Added",
"value": "[core/src/main/java/bisq/core/dao/bonding/bond/BondedReputation.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-6) (151 changes)"
},
{
"name": "Added",
"value": "[core/src/main/java/bisq/core/dao/bonding/bond/BondedReputationList.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-7) (74 changes)"
},
{
"name": "Added",
"value": "[core/src/main/java/bisq/core/dao/bonding/bond/BondedReputationService.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-8) (199 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/dao/bonding/lockup/LockupService.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-9) (13 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/dao/governance/role/BondedRole.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-10) (16 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/dao/governance/role/BondedRoleList.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-11) (4 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/dao/governance/role/BondedRoleType.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-12) (5 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/dao/governance/role/BondedRolesService.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-13) (30 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/dao/state/DaoStateService.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-14) (10 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/dao/state/governance/Param.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-15) (2 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/java/bisq/core/setup/CorePersistedDataHost.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-16) (2 changes)"
},
{
"name": "Modified",
"value": "[core/src/main/resources/i18n/displayStrings.properties](https://github.com/bisq-network/bisq/pull/1851/files#diff-17) (37 changes)"
},
{
"name": "Modified",
"value": "[desktop/src/main/java/bisq/desktop/main/dao/bonding/BondingViewUtils.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-18) (114 changes)"
},
{
"name": "Modified",
"value": "[desktop/src/main/java/bisq/desktop/main/dao/bonding/lockup/LockupView.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-19) (95 changes)"
},
{
"name": "Modified",
"value": "[desktop/src/main/java/bisq/desktop/main/dao/bonding/roles/BondedRolesListItem.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-20) (1 changes)"
},
{
"name": "Modified",
"value": "[desktop/src/main/java/bisq/desktop/main/dao/bonding/roles/BondedRolesView.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-21) (11 changes)"
},
{
"name": "Modified",
"value": "[desktop/src/main/java/bisq/desktop/main/dao/bonding/unlock/LockupTxListItem.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-22) (48 changes)"
},
{
"name": "Modified",
"value": "[desktop/src/main/java/bisq/desktop/main/dao/bonding/unlock/UnlockView.java](https://github.com/bisq-network/bisq/pull/1851/files#diff-23) (47 changes)"
}
]
}
],
"potentialAction": [
{
"name": "Add a comment",
"@type": "ActionCard",
"inputs": [
{
"isMultiLine": true,
"@type": "TextInput",
"id": "IssueComment",
"isRequired": false
}
],
"actions": [
{
"name": "Comment",
"@type": "HttpPOST",
"target": "https://api.github.com",
"body": "{\n\"commandName\": \"IssueComment\",\n\"repositoryFullName\": \"bisq-network/bisq\",\n\"issueId\": 1851,\n\"IssueComment\": \"{{IssueComment.value}}\"\n}"
}
]
},
{
"name": "Close pull request",
"@type": "HttpPOST",
"target": "https://api.github.com",
"body": "{\n\"commandName\": \"PullRequestClose\",\n\"repositoryFullName\": \"bisq-network/bisq\",\n\"pullRequestId\": 1851\n}"
},
{
"targets": [
{
"os": "default",
"uri": "https://github.com/bisq-network/bisq/pull/1851"
}
],
"@type": "OpenUri",
"name": "View on GitHub"
},
{
"targets": [
{
"os": "default",
"uri": "https://github.com/bisq-network/bisq/pull/1851.patch"
}
],
"@type": "OpenUri",
"name": "View patch"
},
{
"targets": [
{
"os": "default",
"uri": "https://github.com/bisq-network/bisq/pull/1851.diff"
}
],
"@type": "OpenUri",
"name": "View diff"
},
{
"name": "Unsubscribe",
"@type": "HttpPOST",
"target": "https://api.github.com",
"body": "{\n\"commandName\": \"MuteNotification\",\n\"threadId\": 404102498\n}"
}
],
"themeColor": "26292E"
}
]</script>