-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(web): add parameters field, improve styling, small mapping adjus… #1472
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❌ Deploy Preview for kleros-v2 failed.
|
Code Climate has analyzed commit b41e91b and detected 13 issues on this pull request. Here's the issue category breakdown:
Note: there is 1 critical issue. View more on Code Climate. |
jaybuidl
approved these changes
Feb 2, 2024
jaybuidl
approved these changes
Feb 2, 2024
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
…tments
template used:
{"title":"{{escrowTitle}}","description":"{{deliverableText}}","question":"Which party abided by the terms of the contract?","answers":[{"title":"Refund the Buyer","description":"Select this to return the funds to the Buyer."},{"title":"Pay the Seller","description":"Select this to release the funds to the Seller."}],"policyURI":"ipfs://TODO","attachment":{"label":"Transaction Terms","uri":"{{extraDescriptionUri}}"},"frontendUrl":"https://escrow-v2.kleros.builders/#/myTransactions/{{transactionId}}","arbitrableChainID":"421614","arbitrableAddress":"0x10f7A6f42Af606553883415bc8862643A6e63fdA","arbitratorChainID":"421614","arbitratorAddress":"0xA54e7A16d7460e38a8F324eF46782FB520d58CE8","metadata":{"buyer":"{{address}}","seller":"{{sendingRecipientAddress}}","amount":"{{sendingQuantity}}","asset":"{{asset}}","deadline":"{{deadline}}","transactionUri":"{{transactionUri}}"},"category":"Escrow","specification":"KIPXXX","aliases":{"Buyer":"{{address}}","Seller":"{{sendingRecipientAddress}}"},"version":"1.0"}
data mapping used:
[ { "type": "graphql", "endpoint": "https://api.thegraph.com/subgraphs/name/kemuru/escrow-v2-devnet", "query": "query GetTransaction($transactionId: ID!) { escrow(id: $transactionId) { transactionUri buyer seller amount asset deadline } }", "variables": { "transactionId": "30" }, "seek": ["escrow.transactionUri", "escrow.buyer", "escrow.seller", "escrow.amount", "escrow.asset", "escrow.deadline"], "populate": ["transactionUri", "address", "sendingRecipientAddress", "amount", "asset", "deadline"] }, { "type": "fetch/ipfs/json", "ipfsUri": "context.transactionUri", "seek": ["title", "description", "extraDescriptionUri"], "populate": ["escrowTitle", "deliverableText", "extraDescriptionUri"] } ]
PR-Codex overview
Detailed summary