Skip to content

Commit

Permalink
Update carp client and fix issue with big numbers in projected NFT
Browse files Browse the repository at this point in the history
  • Loading branch information
gostkin committed Dec 18, 2023
1 parent 13f4962 commit c63fe7c
Show file tree
Hide file tree
Showing 6 changed files with 1,823 additions and 1,119 deletions.
2,587 changes: 1,472 additions & 1,115 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/batcher/address-validator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"pg": "^8.7.3",
"web3": "1.10.0",
"assert-never": "^1.2.1",
"@dcspark/carp-client": "^2.3.0"
"@dcspark/carp-client": "^2.3.1"
},
"devDependencies": {
"@types/pg": "^8.6.5"
Expand Down
Empty file modified packages/build-utils/paima-build-utils/scripts/change-db.js
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion packages/engine/paima-funnel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
},
"dependencies": {
"assert-never": "^1.2.1",
"@dcspark/carp-client": "^2.3.0"
"@dcspark/carp-client": "^2.3.1"
}
}
347 changes: 347 additions & 0 deletions packages/engine/paima-rest/src/tsoa/routes.ts

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/engine/paima-sm/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export interface CdeCardanoPoolDatum extends CdeDatumBase {
export interface CdeCardanoProjectedNFTDatum extends CdeDatumBase {
cdeDatumType: ChainDataExtensionDatumType.CardanoProjectedNFT;
payload: CdeDatumCardanoProjectedNFTPayload;
scheduledPrefix: string;
scheduledPrefix: string | undefined;
}

export type ChainDataExtensionDatum =
Expand Down Expand Up @@ -290,7 +290,7 @@ export type ChainDataExtensionCardanoDelegation = ChainDataExtensionBase &

export const ChainDataExtensionCardanoProjectedNFTConfig = Type.Object({
type: Type.Literal(CdeEntryTypeName.CardanoProjectedNFT),
scheduledPrefix: Type.String(),
scheduledPrefix: Type.Optional(Type.String()),
startSlot: Type.Number(),
stopSlot: Type.Optional(Type.Number()),
name: Type.String(),
Expand Down

0 comments on commit c63fe7c

Please sign in to comment.