-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* download certificate * fix(marketplace): Dont use **/* as include pattern * review changes --------- Co-authored-by: Johannes Schill <[email protected]>
- Loading branch information
1 parent
f83a6fc
commit 91622b9
Showing
8 changed files
with
478 additions
and
1,156 deletions.
There are no files selected for viewing
467 changes: 449 additions & 18 deletions
467
frontend/marketplace/src/components/CertificateCard.vue
Large diffs are not rendered by default.
Oops, something went wrong.
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
17 changes: 17 additions & 0 deletions
17
frontend/marketplace/src/graphql/queries/creditOffsetCertificate.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import gql from "graphql-tag"; | ||
|
||
export const GET_CREDIT_OFFSET_CERTIFICATE = gql` | ||
query GetCreditOffsetCertificate($id: String!) { | ||
creditOffsetCertificates(filter: { id: { equalTo: $id } }) { | ||
nodes { | ||
id | ||
nodeId | ||
denom | ||
retiringEntityName | ||
retiringEntityAdditionalData | ||
walletId | ||
amount | ||
} | ||
} | ||
} | ||
`; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from "./creditCollections"; | ||
export * from "./creditOffsetCertificates"; | ||
export * from "./creditOffsetCertificate"; |
Oops, something went wrong.