@canton-network/core-token-standard 0.12.1 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.browser.js +8375 -0
- package/dist/index.browser.js.map +1 -0
- package/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/interface-ids.const.d.ts +3 -0
- package/dist/interface-ids.const.d.ts.map +1 -1
- package/package.json +3 -2
|
@@ -7,4 +7,7 @@ export declare const METADATA_INTERFACE_ID = "#splice-api-token-metadata-v1:Spli
|
|
|
7
7
|
export declare const TRANSFER_FACTORY_INTERFACE_ID = "#splice-api-token-transfer-instruction-v1:Splice.Api.Token.TransferInstructionV1:TransferFactory";
|
|
8
8
|
export declare const TRANSFER_INSTRUCTION_INTERFACE_ID = "#splice-api-token-transfer-instruction-v1:Splice.Api.Token.TransferInstructionV1:TransferInstruction";
|
|
9
9
|
export declare const FEATURED_APP_DELEGATE_PROXY_INTERFACE_ID = "#splice-util-featured-app-proxies:Splice.Util.FeaturedApp.DelegateProxy:DelegateProxy";
|
|
10
|
+
export declare const MERGE_DELEGATION_PROPOSAL_TEMPLATE_ID = "#splice-util-token-standard-wallet:Splice.Util.Token.Wallet.MergeDelegation:MergeDelegationProposal";
|
|
11
|
+
export declare const MERGE_DELEGATION_TEMPLATE_ID = "#splice-util-token-standard-wallet:Splice.Util.Token.Wallet.MergeDelegation:MergeDelegation";
|
|
12
|
+
export declare const MERGE_DELEGATION_BATCH_MERGE_UTILITY = "#splice-util-token-standard-wallet:Splice.Util.Token.Wallet.MergeDelegation:BatchMergeUtility";
|
|
10
13
|
//# sourceMappingURL=interface-ids.const.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interface-ids.const.d.ts","sourceRoot":"","sources":["../src/interface-ids.const.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,+BAA+B,2GACgE,CAAA;AAC5G,eAAO,MAAM,mCAAmC,+GACgE,CAAA;AAChH,eAAO,MAAM,+BAA+B,mGACwD,CAAA;AACpG,eAAO,MAAM,uBAAuB,6EAC0C,CAAA;AAC9E,eAAO,MAAM,oBAAoB,oEACoC,CAAA;AACrE,eAAO,MAAM,qBAAqB,0EACyC,CAAA;AAC3E,eAAO,MAAM,6BAA6B,qGAC4D,CAAA;AACtG,eAAO,MAAM,iCAAiC,yGAC4D,CAAA;AAC1G,eAAO,MAAM,wCAAwC,0FACsC,CAAA"}
|
|
1
|
+
{"version":3,"file":"interface-ids.const.d.ts","sourceRoot":"","sources":["../src/interface-ids.const.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,+BAA+B,2GACgE,CAAA;AAC5G,eAAO,MAAM,mCAAmC,+GACgE,CAAA;AAChH,eAAO,MAAM,+BAA+B,mGACwD,CAAA;AACpG,eAAO,MAAM,uBAAuB,6EAC0C,CAAA;AAC9E,eAAO,MAAM,oBAAoB,oEACoC,CAAA;AACrE,eAAO,MAAM,qBAAqB,0EACyC,CAAA;AAC3E,eAAO,MAAM,6BAA6B,qGAC4D,CAAA;AACtG,eAAO,MAAM,iCAAiC,yGAC4D,CAAA;AAC1G,eAAO,MAAM,wCAAwC,0FACsC,CAAA;AAC3F,eAAO,MAAM,qCAAqC,wGACuD,CAAA;AACzG,eAAO,MAAM,4BAA4B,gGACwD,CAAA;AACjG,eAAO,MAAM,oCAAoC,kGACkD,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@canton-network/core-token-standard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "daml codegen js for core token standard",
|
|
6
6
|
"repository": "github:hyperledger-labs/splice-wallet-kernel",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
|
+
"browser": "./dist/index.browser.js",
|
|
15
16
|
"import": "./dist/index.js",
|
|
16
17
|
"require": "./dist/index.cjs",
|
|
17
18
|
"default": "./dist/index.js"
|
|
@@ -25,7 +26,7 @@
|
|
|
25
26
|
"clean": "rm -rf dist"
|
|
26
27
|
},
|
|
27
28
|
"dependencies": {
|
|
28
|
-
"@canton-network/core-types": "^0.
|
|
29
|
+
"@canton-network/core-types": "^0.13.0",
|
|
29
30
|
"lodash": "^4.17.21",
|
|
30
31
|
"openapi-fetch": "^0.14.0",
|
|
31
32
|
"uuid": "^11.1.0",
|