Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
f08e68b
chore: add shared eslint config package (#2143)
singhyash05 Jul 16, 2026
86bf297
fix: asset pagination in wallet-sdk (#2165)
fayi-da Jul 17, 2026
b1a3a07
chore: refactor dApp SDK docs (#2157)
mjuchli-da Jul 20, 2026
a91fab3
chore: docs minor corrections (#2172)
mjuchli-da Jul 20, 2026
ae8c616
feat: show an offers count badge in the sidebar (#2162)
fayi-da Jul 20, 2026
7098023
chore: refactor portfolio registry discovery and reachability (#2177)
fayi-da Jul 21, 2026
a9f46fc
chore(deps): migrate monorepo library builds from tsup to tsdown (#2173)
singhyash05 Jul 21, 2026
e1aac1b
fix: add pagination to list tx (#2166)
rukmini-basu-da Jul 21, 2026
4b64015
feat: update core-test-token, add type export refactor (#2170)
mateuszpiatkowski-da Jul 22, 2026
0d8e1a9
chore: make wallet SDK connection and registry aware (#2185)
fayi-da Jul 22, 2026
9adca74
feat: migrate portfolio allocations to the wallet-sdk (#2192)
fayi-da Jul 24, 2026
3c3b719
fix: encryption key for access token (#2193)
rukmini-basu-da Jul 27, 2026
417a9fa
feat(example-test-token-v1-registry): create backend registry example…
mateuszpiatkowski-da Jul 28, 2026
85d02e1
chore: portfolio qol fixes part 2 (#2208)
fayi-da Jul 29, 2026
8759db2
fix(wallet-gateway-remote): allow login without ledger (#2198)
double-k-3033 Jul 29, 2026
11649e0
feat: promote new portfolio UI (#2210)
fayi-da Jul 31, 2026
96490e2
add workflow dispatch (#2214)
rukmini-basu-da Jul 31, 2026
fbf3883
remove (#2216)
rukmini-basu-da Jul 31, 2026
4ceb035
refactor: remove redundant core package
mateuszpiatkowski-da Aug 3, 2026
2b18492
refactor(core-token-standard): remove redundant exports
mateuszpiatkowski-da Aug 3, 2026
1d4e869
refactor: remove redundant damljs generation
mateuszpiatkowski-da Aug 3, 2026
92a6c4a
refactor: remove redundant scripts
mateuszpiatkowski-da Aug 3, 2026
71981e6
fix: fix yarn install
mateuszpiatkowski-da Aug 3, 2026
9e781a9
fix(core-token-standard-service): fix build
mateuszpiatkowski-da Aug 3, 2026
e228eb0
fix(wallet-sdk): fix build
mateuszpiatkowski-da Aug 3, 2026
1e2babd
fix(example-portfolio): fix build
mateuszpiatkowski-da Aug 3, 2026
a1ab8df
feat(example-test-token-v1-registry): switch from koa to express (#2212)
mateuszpiatkowski-da Aug 3, 2026
215f019
fix: fix build
mateuszpiatkowski-da Aug 5, 2026
72f15f5
revert: revert stuff from rebase
mateuszpiatkowski-da Aug 6, 2026
5d65975
feat: fix build, adjust solution to fit needs, move types in splice-c…
mateuszpiatkowski-da Aug 7, 2026
c5d6e78
refactor: refactor multi sync example, use our modules
mateuszpiatkowski-da Aug 7, 2026
54e6bc7
docs: update readme
mateuszpiatkowski-da Aug 7, 2026
dbff8be
fix: fix build error
mateuszpiatkowski-da Aug 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -512,11 +512,11 @@ jobs:
key: dpm-${{ runner.os }}-${{ needs.version-config.outputs.daml_release_version }}

- name: Generate featured DARs
run: yarn script:generate:featured-dars
run: yarn generate:codegen

- name: Rebuild DAML-dependent packages
run: |
yarn workspace @canton-network/core-test-token build
yarn workspace @canton-network/core-splice-codegen build

- uses: ./.github/actions/check_resources

Expand Down
2 changes: 2 additions & 0 deletions core/splice-codegen/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@

export { module as TestToken } from './test-token'
export { module as OTCTrade } from './otc-trade'
export type * from './test-token/types'
export type * from './otc-trade/types'
3 changes: 2 additions & 1 deletion core/splice-codegen/src/otc-trade/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
// SPDX-License-Identifier: Apache-2.0

import { generateCommand } from 'src/common'
import { OTCTrade, OTCTradeProposal, TradingApp } from './dar'
import { TradingApp } from './dar'
import { OTCTrade, OTCTradeProposal } from './types'

const commands = {
create: {
Expand Down
5 changes: 0 additions & 5 deletions core/splice-codegen/src/otc-trade/dar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,3 @@ import { Splice } from '@daml.js/otc-trade'

export { packageId } from '@daml.js/otc-trade'
export const TradingApp = Splice.Testing.Apps.TradingApp

export type {
OTCTrade,
OTCTradeProposal,
} from '@daml.js/otc-trade/Splice/Testing/Apps/TradingApp'
7 changes: 7 additions & 0 deletions core/splice-codegen/src/otc-trade/types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Copyright (c) 2025-2026 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

export type {
OTCTrade,
OTCTradeProposal,
} from '@daml.js/otc-trade/Splice/Testing/Apps/TradingApp'
10 changes: 2 additions & 8 deletions core/splice-codegen/src/test-token/commands.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
// Copyright (c) 2025-2026 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

import {
TestTokenID,
TestTokenV1,
TokenAllocation,
TokenRules,
TokenTransferOffer,
type Token,
} from './dar'
import { TestTokenID, TestTokenV1 } from './dar'
import {
Allocation,
AllocationFactory,
Expand All @@ -18,6 +11,7 @@ import {
import { PartyId } from '@canton-network/core-types'
import { WrappedCommand } from '@canton-network/core-ledger-client-types'
import { generateCommand } from 'src/common'
import { Token, TokenAllocation, TokenRules, TokenTransferOffer } from './types'

const commands = {
create: {
Expand Down
7 changes: 0 additions & 7 deletions core/splice-codegen/src/test-token/dar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,3 @@ export { packageId } from '@daml.js/test-token-v1'
export const TestTokenV1 = Splice.Testing.Tokens.TestTokenV1

export const TestTokenID = 'TestToken'

export type {
Token,
TokenAllocation,
TokenRules,
TokenTransferOffer,
} from '@daml.js/test-token-v1/Splice/Testing/Tokens/TestTokenV1'
9 changes: 9 additions & 0 deletions core/splice-codegen/src/test-token/types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Copyright (c) 2025-2026 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

export type {
Token,
TokenAllocation,
TokenRules,
TokenTransferOffer,
} from '@daml.js/test-token-v1/Splice/Testing/Tokens/TestTokenV1'
19 changes: 0 additions & 19 deletions core/test-token-v1/README.md

This file was deleted.

68 changes: 0 additions & 68 deletions core/test-token-v1/package.json

This file was deleted.

Loading
Loading