@fairmint/open-captable-protocol-daml-js 0.2.41 → 0.2.44
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/lib/CantonPayments/Airdrop/Airdrop/module.js +1 -1
- package/lib/CantonPayments/Airdrop/AirdropFactory/index.d.ts +1 -0
- package/lib/CantonPayments/Airdrop/AirdropFactory/index.js +8 -0
- package/lib/CantonPayments/Airdrop/AirdropFactory/module.d.ts +51 -0
- package/lib/CantonPayments/Airdrop/AirdropFactory/module.js +73 -0
- package/lib/CantonPayments/Airdrop/PersonalAirdrop/index.d.ts +1 -0
- package/lib/CantonPayments/Airdrop/PersonalAirdrop/index.js +8 -0
- package/lib/CantonPayments/Airdrop/PersonalAirdrop/module.d.ts +64 -0
- package/lib/CantonPayments/Airdrop/PersonalAirdrop/module.js +95 -0
- package/lib/CantonPayments/Airdrop/SimpleAirdrop/index.d.ts +1 -0
- package/lib/CantonPayments/Airdrop/SimpleAirdrop/index.js +8 -0
- package/lib/CantonPayments/Airdrop/SimpleAirdrop/module.d.ts +70 -0
- package/lib/CantonPayments/Airdrop/SimpleAirdrop/module.js +96 -0
- package/lib/CantonPayments/Airdrop/index.d.ts +6 -0
- package/lib/CantonPayments/Airdrop/index.js +6 -0
- package/lib/CantonPayments/PaymentStream/ActivePaymentStream/module.js +2 -2
- package/lib/CantonPayments/PaymentStream/PartyMigrationProposal/module.js +1 -1
- package/lib/CantonPayments/PaymentStream/PaymentStreamFactory/module.js +1 -1
- package/lib/CantonPayments/PaymentStream/ProposedPaymentStream/module.js +1 -1
- package/package.json +1 -1
|
@@ -148,7 +148,7 @@ exports.Airdrop = damlTypes.assembleTemplate(
|
|
|
148
148
|
);
|
|
149
149
|
|
|
150
150
|
|
|
151
|
-
damlTypes.registerTemplate(exports.Airdrop, ['
|
|
151
|
+
damlTypes.registerTemplate(exports.Airdrop, ['894f86b0199fe028dc38b5bb96f3d4473678f588855600dc8fd4447801089834', '#CantonPayments']);
|
|
152
152
|
|
|
153
153
|
|
|
154
154
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './module';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
3
|
+
function __export(m) {
|
|
4
|
+
/* eslint-disable-next-line no-prototype-builtins */
|
|
5
|
+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
6
|
+
}
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
__export(require('./module'));
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
// Generated from CantonPayments/Airdrop/AirdropFactory.daml
|
|
2
|
+
/* eslint-disable @typescript-eslint/camelcase */
|
|
3
|
+
/* eslint-disable @typescript-eslint/no-namespace */
|
|
4
|
+
/* eslint-disable @typescript-eslint/no-use-before-define */
|
|
5
|
+
import * as jtv from '@mojotech/json-type-validation';
|
|
6
|
+
import * as damlTypes from '@daml/types';
|
|
7
|
+
/* eslint-disable-next-line @typescript-eslint/no-unused-vars */
|
|
8
|
+
import * as damlLedger from '@daml/ledger';
|
|
9
|
+
|
|
10
|
+
import * as pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1 from '../../..';
|
|
11
|
+
import * as pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda from '../../../Splice/Api/FeaturedAppRightV1';
|
|
12
|
+
import * as pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 from '../../../DA/Internal/Template';
|
|
13
|
+
|
|
14
|
+
import * as CantonPayments_Airdrop_PersonalAirdrop from '../../../CantonPayments/Airdrop/PersonalAirdrop/module';
|
|
15
|
+
|
|
16
|
+
export declare type Factory_JoinAirdrop = {
|
|
17
|
+
recipient: damlTypes.Party;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export declare const Factory_JoinAirdrop:
|
|
21
|
+
damlTypes.Serializable<Factory_JoinAirdrop> & {
|
|
22
|
+
}
|
|
23
|
+
;
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
export declare type AirdropFactory = {
|
|
27
|
+
dso: damlTypes.Party;
|
|
28
|
+
sender: damlTypes.Party;
|
|
29
|
+
provider: damlTypes.Party;
|
|
30
|
+
featuredAppRight: damlTypes.ContractId<pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.Amulet.FeaturedAppRight>;
|
|
31
|
+
amuletRulesCid: damlTypes.ContractId<pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.AmuletRules.AmuletRules>;
|
|
32
|
+
appRewardBeneficiaries: pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.AppRewardBeneficiary[];
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export declare interface AirdropFactoryInterface {
|
|
36
|
+
Archive: damlTypes.Choice<AirdropFactory, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<AirdropFactory, undefined>>;
|
|
37
|
+
Factory_JoinAirdrop: damlTypes.Choice<AirdropFactory, Factory_JoinAirdrop, damlTypes.ContractId<CantonPayments_Airdrop_PersonalAirdrop.PersonalAirdrop>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<AirdropFactory, undefined>>;
|
|
38
|
+
}
|
|
39
|
+
export declare const AirdropFactory:
|
|
40
|
+
damlTypes.Template<AirdropFactory, undefined, '#CantonPayments:CantonPayments.Airdrop.AirdropFactory:AirdropFactory'> &
|
|
41
|
+
damlTypes.ToInterface<AirdropFactory, never> &
|
|
42
|
+
AirdropFactoryInterface;
|
|
43
|
+
|
|
44
|
+
export declare namespace AirdropFactory {
|
|
45
|
+
export type CreateEvent = damlLedger.CreateEvent<AirdropFactory, undefined, typeof AirdropFactory.templateId>
|
|
46
|
+
export type ArchiveEvent = damlLedger.ArchiveEvent<AirdropFactory, typeof AirdropFactory.templateId>
|
|
47
|
+
export type Event = damlLedger.Event<AirdropFactory, undefined, typeof AirdropFactory.templateId>
|
|
48
|
+
export type QueryResult = damlLedger.QueryResult<AirdropFactory, undefined, typeof AirdropFactory.templateId>
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
3
|
+
function __export(m) {
|
|
4
|
+
/* eslint-disable-next-line no-prototype-builtins */
|
|
5
|
+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
6
|
+
}
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
9
|
+
var jtv = require('@mojotech/json-type-validation');
|
|
10
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
11
|
+
var damlTypes = require('@daml/types');
|
|
12
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
13
|
+
var damlLedger = require('@daml/ledger');
|
|
14
|
+
|
|
15
|
+
var pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1 = require('../../..');
|
|
16
|
+
var pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda = require('../../../Splice/Api/FeaturedAppRightV1');
|
|
17
|
+
var pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 = require('../../../DA/Internal/Template');
|
|
18
|
+
|
|
19
|
+
var CantonPayments_Airdrop_PersonalAirdrop = require('../../../CantonPayments/Airdrop/PersonalAirdrop/module');
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
exports.Factory_JoinAirdrop = {
|
|
23
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({recipient: damlTypes.Party.decoder, }); }),
|
|
24
|
+
encode: function (__typed__) {
|
|
25
|
+
return {
|
|
26
|
+
recipient: damlTypes.Party.encode(__typed__.recipient),
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
,
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
exports.AirdropFactory = damlTypes.assembleTemplate(
|
|
35
|
+
{
|
|
36
|
+
templateId: '#CantonPayments:CantonPayments.Airdrop.AirdropFactory:AirdropFactory',
|
|
37
|
+
keyDecoder: damlTypes.lazyMemo(function () { return jtv.constant(undefined); }),
|
|
38
|
+
keyEncode: function () { throw 'EncodeError'; },
|
|
39
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({dso: damlTypes.Party.decoder, sender: damlTypes.Party.decoder, provider: damlTypes.Party.decoder, featuredAppRight: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.FeaturedAppRight).decoder, amuletRulesCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.AmuletRules).decoder, appRewardBeneficiaries: damlTypes.List(pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.AppRewardBeneficiary).decoder, }); }),
|
|
40
|
+
encode: function (__typed__) {
|
|
41
|
+
return {
|
|
42
|
+
dso: damlTypes.Party.encode(__typed__.dso),
|
|
43
|
+
sender: damlTypes.Party.encode(__typed__.sender),
|
|
44
|
+
provider: damlTypes.Party.encode(__typed__.provider),
|
|
45
|
+
featuredAppRight: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.FeaturedAppRight).encode(__typed__.featuredAppRight),
|
|
46
|
+
amuletRulesCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.AmuletRules).encode(__typed__.amuletRulesCid),
|
|
47
|
+
appRewardBeneficiaries: damlTypes.List(pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.AppRewardBeneficiary).encode(__typed__.appRewardBeneficiaries),
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
,
|
|
51
|
+
Archive: {
|
|
52
|
+
template: function () { return exports.AirdropFactory; },
|
|
53
|
+
choiceName: 'Archive',
|
|
54
|
+
argumentDecoder: damlTypes.lazyMemo(function () { return pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive.decoder; }),
|
|
55
|
+
argumentEncode: function (__typed__) { return pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive.encode(__typed__); },
|
|
56
|
+
resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.Unit.decoder; }),
|
|
57
|
+
resultEncode: function (__typed__) { return damlTypes.Unit.encode(__typed__); },
|
|
58
|
+
},
|
|
59
|
+
Factory_JoinAirdrop: {
|
|
60
|
+
template: function () { return exports.AirdropFactory; },
|
|
61
|
+
choiceName: 'Factory_JoinAirdrop',
|
|
62
|
+
argumentDecoder: damlTypes.lazyMemo(function () { return exports.Factory_JoinAirdrop.decoder; }),
|
|
63
|
+
argumentEncode: function (__typed__) { return exports.Factory_JoinAirdrop.encode(__typed__); },
|
|
64
|
+
resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.ContractId(CantonPayments_Airdrop_PersonalAirdrop.PersonalAirdrop).decoder; }),
|
|
65
|
+
resultEncode: function (__typed__) { return damlTypes.ContractId(CantonPayments_Airdrop_PersonalAirdrop.PersonalAirdrop).encode(__typed__); },
|
|
66
|
+
},
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
);
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
damlTypes.registerTemplate(exports.AirdropFactory, ['894f86b0199fe028dc38b5bb96f3d4473678f588855600dc8fd4447801089834', '#CantonPayments']);
|
|
73
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './module';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
3
|
+
function __export(m) {
|
|
4
|
+
/* eslint-disable-next-line no-prototype-builtins */
|
|
5
|
+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
6
|
+
}
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
__export(require('./module'));
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
// Generated from CantonPayments/Airdrop/PersonalAirdrop.daml
|
|
2
|
+
/* eslint-disable @typescript-eslint/camelcase */
|
|
3
|
+
/* eslint-disable @typescript-eslint/no-namespace */
|
|
4
|
+
/* eslint-disable @typescript-eslint/no-use-before-define */
|
|
5
|
+
import * as jtv from '@mojotech/json-type-validation';
|
|
6
|
+
import * as damlTypes from '@daml/types';
|
|
7
|
+
/* eslint-disable-next-line @typescript-eslint/no-unused-vars */
|
|
8
|
+
import * as damlLedger from '@daml/ledger';
|
|
9
|
+
|
|
10
|
+
import * as pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1 from '../../..';
|
|
11
|
+
import * as pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda from '../../../Splice/Api/FeaturedAppRightV1';
|
|
12
|
+
import * as pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 from '../../../DA/Internal/Template';
|
|
13
|
+
|
|
14
|
+
export declare type PersonalAirdrop_Archive = {
|
|
15
|
+
actor: damlTypes.Party;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export declare const PersonalAirdrop_Archive:
|
|
19
|
+
damlTypes.Serializable<PersonalAirdrop_Archive> & {
|
|
20
|
+
}
|
|
21
|
+
;
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
export declare type PersonalAirdrop_ExecuteTransfer = {
|
|
25
|
+
amuletInputs: damlTypes.ContractId<pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.Amulet.Amulet>[];
|
|
26
|
+
openMiningRoundCid: damlTypes.ContractId<pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.Round.OpenMiningRound>;
|
|
27
|
+
amount: damlTypes.Numeric;
|
|
28
|
+
numberOfTransfers: damlTypes.Int;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export declare const PersonalAirdrop_ExecuteTransfer:
|
|
32
|
+
damlTypes.Serializable<PersonalAirdrop_ExecuteTransfer> & {
|
|
33
|
+
}
|
|
34
|
+
;
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
export declare type PersonalAirdrop = {
|
|
38
|
+
dso: damlTypes.Party;
|
|
39
|
+
sender: damlTypes.Party;
|
|
40
|
+
provider: damlTypes.Party;
|
|
41
|
+
featuredAppRight: damlTypes.ContractId<pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.Amulet.FeaturedAppRight>;
|
|
42
|
+
amuletRulesCid: damlTypes.ContractId<pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.AmuletRules.AmuletRules>;
|
|
43
|
+
appRewardBeneficiaries: pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.AppRewardBeneficiary[];
|
|
44
|
+
recipient: damlTypes.Party;
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
export declare interface PersonalAirdropInterface {
|
|
48
|
+
PersonalAirdrop_Archive: damlTypes.Choice<PersonalAirdrop, PersonalAirdrop_Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PersonalAirdrop, undefined>>;
|
|
49
|
+
PersonalAirdrop_ExecuteTransfer: damlTypes.Choice<PersonalAirdrop, PersonalAirdrop_ExecuteTransfer, pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.AmuletRules.TransferResult, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PersonalAirdrop, undefined>>;
|
|
50
|
+
Archive: damlTypes.Choice<PersonalAirdrop, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PersonalAirdrop, undefined>>;
|
|
51
|
+
}
|
|
52
|
+
export declare const PersonalAirdrop:
|
|
53
|
+
damlTypes.Template<PersonalAirdrop, undefined, '#CantonPayments:CantonPayments.Airdrop.PersonalAirdrop:PersonalAirdrop'> &
|
|
54
|
+
damlTypes.ToInterface<PersonalAirdrop, never> &
|
|
55
|
+
PersonalAirdropInterface;
|
|
56
|
+
|
|
57
|
+
export declare namespace PersonalAirdrop {
|
|
58
|
+
export type CreateEvent = damlLedger.CreateEvent<PersonalAirdrop, undefined, typeof PersonalAirdrop.templateId>
|
|
59
|
+
export type ArchiveEvent = damlLedger.ArchiveEvent<PersonalAirdrop, typeof PersonalAirdrop.templateId>
|
|
60
|
+
export type Event = damlLedger.Event<PersonalAirdrop, undefined, typeof PersonalAirdrop.templateId>
|
|
61
|
+
export type QueryResult = damlLedger.QueryResult<PersonalAirdrop, undefined, typeof PersonalAirdrop.templateId>
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
3
|
+
function __export(m) {
|
|
4
|
+
/* eslint-disable-next-line no-prototype-builtins */
|
|
5
|
+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
6
|
+
}
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
9
|
+
var jtv = require('@mojotech/json-type-validation');
|
|
10
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
11
|
+
var damlTypes = require('@daml/types');
|
|
12
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
13
|
+
var damlLedger = require('@daml/ledger');
|
|
14
|
+
|
|
15
|
+
var pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1 = require('../../..');
|
|
16
|
+
var pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda = require('../../../Splice/Api/FeaturedAppRightV1');
|
|
17
|
+
var pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 = require('../../../DA/Internal/Template');
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
exports.PersonalAirdrop_Archive = {
|
|
21
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({actor: damlTypes.Party.decoder, }); }),
|
|
22
|
+
encode: function (__typed__) {
|
|
23
|
+
return {
|
|
24
|
+
actor: damlTypes.Party.encode(__typed__.actor),
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
,
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
exports.PersonalAirdrop_ExecuteTransfer = {
|
|
33
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({amuletInputs: damlTypes.List(damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Amulet)).decoder, openMiningRoundCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.OpenMiningRound).decoder, amount: damlTypes.Numeric(10).decoder, numberOfTransfers: damlTypes.Int.decoder, }); }),
|
|
34
|
+
encode: function (__typed__) {
|
|
35
|
+
return {
|
|
36
|
+
amuletInputs: damlTypes.List(damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Amulet)).encode(__typed__.amuletInputs),
|
|
37
|
+
openMiningRoundCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.OpenMiningRound).encode(__typed__.openMiningRoundCid),
|
|
38
|
+
amount: damlTypes.Numeric(10).encode(__typed__.amount),
|
|
39
|
+
numberOfTransfers: damlTypes.Int.encode(__typed__.numberOfTransfers),
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
,
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
exports.PersonalAirdrop = damlTypes.assembleTemplate(
|
|
48
|
+
{
|
|
49
|
+
templateId: '#CantonPayments:CantonPayments.Airdrop.PersonalAirdrop:PersonalAirdrop',
|
|
50
|
+
keyDecoder: damlTypes.lazyMemo(function () { return jtv.constant(undefined); }),
|
|
51
|
+
keyEncode: function () { throw 'EncodeError'; },
|
|
52
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({dso: damlTypes.Party.decoder, sender: damlTypes.Party.decoder, provider: damlTypes.Party.decoder, featuredAppRight: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.FeaturedAppRight).decoder, amuletRulesCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.AmuletRules).decoder, appRewardBeneficiaries: damlTypes.List(pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.AppRewardBeneficiary).decoder, recipient: damlTypes.Party.decoder, }); }),
|
|
53
|
+
encode: function (__typed__) {
|
|
54
|
+
return {
|
|
55
|
+
dso: damlTypes.Party.encode(__typed__.dso),
|
|
56
|
+
sender: damlTypes.Party.encode(__typed__.sender),
|
|
57
|
+
provider: damlTypes.Party.encode(__typed__.provider),
|
|
58
|
+
featuredAppRight: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.FeaturedAppRight).encode(__typed__.featuredAppRight),
|
|
59
|
+
amuletRulesCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.AmuletRules).encode(__typed__.amuletRulesCid),
|
|
60
|
+
appRewardBeneficiaries: damlTypes.List(pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.AppRewardBeneficiary).encode(__typed__.appRewardBeneficiaries),
|
|
61
|
+
recipient: damlTypes.Party.encode(__typed__.recipient),
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
,
|
|
65
|
+
PersonalAirdrop_Archive: {
|
|
66
|
+
template: function () { return exports.PersonalAirdrop; },
|
|
67
|
+
choiceName: 'PersonalAirdrop_Archive',
|
|
68
|
+
argumentDecoder: damlTypes.lazyMemo(function () { return exports.PersonalAirdrop_Archive.decoder; }),
|
|
69
|
+
argumentEncode: function (__typed__) { return exports.PersonalAirdrop_Archive.encode(__typed__); },
|
|
70
|
+
resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.Unit.decoder; }),
|
|
71
|
+
resultEncode: function (__typed__) { return damlTypes.Unit.encode(__typed__); },
|
|
72
|
+
},
|
|
73
|
+
PersonalAirdrop_ExecuteTransfer: {
|
|
74
|
+
template: function () { return exports.PersonalAirdrop; },
|
|
75
|
+
choiceName: 'PersonalAirdrop_ExecuteTransfer',
|
|
76
|
+
argumentDecoder: damlTypes.lazyMemo(function () { return exports.PersonalAirdrop_ExecuteTransfer.decoder; }),
|
|
77
|
+
argumentEncode: function (__typed__) { return exports.PersonalAirdrop_ExecuteTransfer.encode(__typed__); },
|
|
78
|
+
resultDecoder: damlTypes.lazyMemo(function () { return pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.TransferResult.decoder; }),
|
|
79
|
+
resultEncode: function (__typed__) { return pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.TransferResult.encode(__typed__); },
|
|
80
|
+
},
|
|
81
|
+
Archive: {
|
|
82
|
+
template: function () { return exports.PersonalAirdrop; },
|
|
83
|
+
choiceName: 'Archive',
|
|
84
|
+
argumentDecoder: damlTypes.lazyMemo(function () { return pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive.decoder; }),
|
|
85
|
+
argumentEncode: function (__typed__) { return pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive.encode(__typed__); },
|
|
86
|
+
resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.Unit.decoder; }),
|
|
87
|
+
resultEncode: function (__typed__) { return damlTypes.Unit.encode(__typed__); },
|
|
88
|
+
},
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
);
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
damlTypes.registerTemplate(exports.PersonalAirdrop, ['894f86b0199fe028dc38b5bb96f3d4473678f588855600dc8fd4447801089834', '#CantonPayments']);
|
|
95
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './module';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
3
|
+
function __export(m) {
|
|
4
|
+
/* eslint-disable-next-line no-prototype-builtins */
|
|
5
|
+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
6
|
+
}
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
__export(require('./module'));
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
// Generated from CantonPayments/Airdrop/SimpleAirdrop.daml
|
|
2
|
+
/* eslint-disable @typescript-eslint/camelcase */
|
|
3
|
+
/* eslint-disable @typescript-eslint/no-namespace */
|
|
4
|
+
/* eslint-disable @typescript-eslint/no-use-before-define */
|
|
5
|
+
import * as jtv from '@mojotech/json-type-validation';
|
|
6
|
+
import * as damlTypes from '@daml/types';
|
|
7
|
+
/* eslint-disable-next-line @typescript-eslint/no-unused-vars */
|
|
8
|
+
import * as damlLedger from '@daml/ledger';
|
|
9
|
+
|
|
10
|
+
import * as pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1 from '../../..';
|
|
11
|
+
import * as pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 from '../../../DA/Internal/Template';
|
|
12
|
+
|
|
13
|
+
export declare type SimpleAirdrop_Execute = {
|
|
14
|
+
recipientSpecs: RecipientSpec[];
|
|
15
|
+
initialAmuletInputs: damlTypes.ContractId<pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.Amulet.Amulet>[];
|
|
16
|
+
openMiningRoundCid: damlTypes.ContractId<pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.Round.OpenMiningRound>;
|
|
17
|
+
amountPerTransfer: damlTypes.Numeric;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export declare const SimpleAirdrop_Execute:
|
|
21
|
+
damlTypes.Serializable<SimpleAirdrop_Execute> & {
|
|
22
|
+
}
|
|
23
|
+
;
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
export declare type SimpleAirdrop = {
|
|
27
|
+
config: SimpleAirdropConfig;
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export declare interface SimpleAirdropInterface {
|
|
31
|
+
Archive: damlTypes.Choice<SimpleAirdrop, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<SimpleAirdrop, undefined>>;
|
|
32
|
+
SimpleAirdrop_Execute: damlTypes.Choice<SimpleAirdrop, SimpleAirdrop_Execute, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<SimpleAirdrop, undefined>>;
|
|
33
|
+
}
|
|
34
|
+
export declare const SimpleAirdrop:
|
|
35
|
+
damlTypes.Template<SimpleAirdrop, undefined, '#CantonPayments:CantonPayments.Airdrop.SimpleAirdrop:SimpleAirdrop'> &
|
|
36
|
+
damlTypes.ToInterface<SimpleAirdrop, never> &
|
|
37
|
+
SimpleAirdropInterface;
|
|
38
|
+
|
|
39
|
+
export declare namespace SimpleAirdrop {
|
|
40
|
+
export type CreateEvent = damlLedger.CreateEvent<SimpleAirdrop, undefined, typeof SimpleAirdrop.templateId>
|
|
41
|
+
export type ArchiveEvent = damlLedger.ArchiveEvent<SimpleAirdrop, typeof SimpleAirdrop.templateId>
|
|
42
|
+
export type Event = damlLedger.Event<SimpleAirdrop, undefined, typeof SimpleAirdrop.templateId>
|
|
43
|
+
export type QueryResult = damlLedger.QueryResult<SimpleAirdrop, undefined, typeof SimpleAirdrop.templateId>
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
export declare type SimpleAirdropConfig = {
|
|
49
|
+
sender: damlTypes.Party;
|
|
50
|
+
featuredAppRight: damlTypes.Optional<damlTypes.ContractId<pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.Amulet.FeaturedAppRight>>;
|
|
51
|
+
amuletRulesCid: damlTypes.ContractId<pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.AmuletRules.AmuletRules>;
|
|
52
|
+
dso: damlTypes.Party;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export declare const SimpleAirdropConfig:
|
|
56
|
+
damlTypes.Serializable<SimpleAirdropConfig> & {
|
|
57
|
+
}
|
|
58
|
+
;
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
export declare type RecipientSpec = {
|
|
62
|
+
transferPreapprovalCid: damlTypes.ContractId<pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Splice.AmuletRules.TransferPreapproval>;
|
|
63
|
+
numberOfTransfers: damlTypes.Int;
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
export declare const RecipientSpec:
|
|
67
|
+
damlTypes.Serializable<RecipientSpec> & {
|
|
68
|
+
}
|
|
69
|
+
;
|
|
70
|
+
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
3
|
+
function __export(m) {
|
|
4
|
+
/* eslint-disable-next-line no-prototype-builtins */
|
|
5
|
+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
6
|
+
}
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
9
|
+
var jtv = require('@mojotech/json-type-validation');
|
|
10
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
11
|
+
var damlTypes = require('@daml/types');
|
|
12
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
13
|
+
var damlLedger = require('@daml/ledger');
|
|
14
|
+
|
|
15
|
+
var pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1 = require('../../..');
|
|
16
|
+
var pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 = require('../../../DA/Internal/Template');
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
exports.SimpleAirdrop_Execute = {
|
|
20
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({recipientSpecs: damlTypes.List(exports.RecipientSpec).decoder, initialAmuletInputs: damlTypes.List(damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Amulet)).decoder, openMiningRoundCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.OpenMiningRound).decoder, amountPerTransfer: damlTypes.Numeric(10).decoder, }); }),
|
|
21
|
+
encode: function (__typed__) {
|
|
22
|
+
return {
|
|
23
|
+
recipientSpecs: damlTypes.List(exports.RecipientSpec).encode(__typed__.recipientSpecs),
|
|
24
|
+
initialAmuletInputs: damlTypes.List(damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.Amulet)).encode(__typed__.initialAmuletInputs),
|
|
25
|
+
openMiningRoundCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.OpenMiningRound).encode(__typed__.openMiningRoundCid),
|
|
26
|
+
amountPerTransfer: damlTypes.Numeric(10).encode(__typed__.amountPerTransfer),
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
,
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
exports.SimpleAirdrop = damlTypes.assembleTemplate(
|
|
35
|
+
{
|
|
36
|
+
templateId: '#CantonPayments:CantonPayments.Airdrop.SimpleAirdrop:SimpleAirdrop',
|
|
37
|
+
keyDecoder: damlTypes.lazyMemo(function () { return jtv.constant(undefined); }),
|
|
38
|
+
keyEncode: function () { throw 'EncodeError'; },
|
|
39
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({config: exports.SimpleAirdropConfig.decoder, }); }),
|
|
40
|
+
encode: function (__typed__) {
|
|
41
|
+
return {
|
|
42
|
+
config: exports.SimpleAirdropConfig.encode(__typed__.config),
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
,
|
|
46
|
+
Archive: {
|
|
47
|
+
template: function () { return exports.SimpleAirdrop; },
|
|
48
|
+
choiceName: 'Archive',
|
|
49
|
+
argumentDecoder: damlTypes.lazyMemo(function () { return pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive.decoder; }),
|
|
50
|
+
argumentEncode: function (__typed__) { return pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive.encode(__typed__); },
|
|
51
|
+
resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.Unit.decoder; }),
|
|
52
|
+
resultEncode: function (__typed__) { return damlTypes.Unit.encode(__typed__); },
|
|
53
|
+
},
|
|
54
|
+
SimpleAirdrop_Execute: {
|
|
55
|
+
template: function () { return exports.SimpleAirdrop; },
|
|
56
|
+
choiceName: 'SimpleAirdrop_Execute',
|
|
57
|
+
argumentDecoder: damlTypes.lazyMemo(function () { return exports.SimpleAirdrop_Execute.decoder; }),
|
|
58
|
+
argumentEncode: function (__typed__) { return exports.SimpleAirdrop_Execute.encode(__typed__); },
|
|
59
|
+
resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.Unit.decoder; }),
|
|
60
|
+
resultEncode: function (__typed__) { return damlTypes.Unit.encode(__typed__); },
|
|
61
|
+
},
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
);
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
damlTypes.registerTemplate(exports.SimpleAirdrop, ['894f86b0199fe028dc38b5bb96f3d4473678f588855600dc8fd4447801089834', '#CantonPayments']);
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
exports.SimpleAirdropConfig = {
|
|
72
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({sender: damlTypes.Party.decoder, featuredAppRight: jtv.Decoder.withDefault(null, damlTypes.Optional(damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.FeaturedAppRight)).decoder), amuletRulesCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.AmuletRules).decoder, dso: damlTypes.Party.decoder, }); }),
|
|
73
|
+
encode: function (__typed__) {
|
|
74
|
+
return {
|
|
75
|
+
sender: damlTypes.Party.encode(__typed__.sender),
|
|
76
|
+
featuredAppRight: damlTypes.Optional(damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.FeaturedAppRight)).encode(__typed__.featuredAppRight),
|
|
77
|
+
amuletRulesCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.AmuletRules).encode(__typed__.amuletRulesCid),
|
|
78
|
+
dso: damlTypes.Party.encode(__typed__.dso),
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
,
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
exports.RecipientSpec = {
|
|
87
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({transferPreapprovalCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.TransferPreapproval).decoder, numberOfTransfers: damlTypes.Int.decoder, }); }),
|
|
88
|
+
encode: function (__typed__) {
|
|
89
|
+
return {
|
|
90
|
+
transferPreapprovalCid: damlTypes.ContractId(pkg3ca1343ab26b453d38c8adb70dca5f1ead8440c42b59b68f070786955cbf9ec1.TransferPreapproval).encode(__typed__.transferPreapprovalCid),
|
|
91
|
+
numberOfTransfers: damlTypes.Int.encode(__typed__.numberOfTransfers),
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
,
|
|
95
|
+
};
|
|
96
|
+
|
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
import * as Airdrop from './Airdrop';
|
|
2
2
|
export { Airdrop } ;
|
|
3
|
+
import * as AirdropFactory from './AirdropFactory';
|
|
4
|
+
export { AirdropFactory } ;
|
|
5
|
+
import * as PersonalAirdrop from './PersonalAirdrop';
|
|
6
|
+
export { PersonalAirdrop } ;
|
|
7
|
+
import * as SimpleAirdrop from './SimpleAirdrop';
|
|
8
|
+
export { SimpleAirdrop } ;
|
|
@@ -7,3 +7,9 @@ function __export(m) {
|
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
var Airdrop = require('./Airdrop');
|
|
9
9
|
exports.Airdrop = Airdrop;
|
|
10
|
+
var AirdropFactory = require('./AirdropFactory');
|
|
11
|
+
exports.AirdropFactory = AirdropFactory;
|
|
12
|
+
var PersonalAirdrop = require('./PersonalAirdrop');
|
|
13
|
+
exports.PersonalAirdrop = PersonalAirdrop;
|
|
14
|
+
var SimpleAirdrop = require('./SimpleAirdrop');
|
|
15
|
+
exports.SimpleAirdrop = SimpleAirdrop;
|
|
@@ -119,7 +119,7 @@ exports.PaymentStreamChangeProposal = damlTypes.assembleTemplate(
|
|
|
119
119
|
);
|
|
120
120
|
|
|
121
121
|
|
|
122
|
-
damlTypes.registerTemplate(exports.PaymentStreamChangeProposal, ['
|
|
122
|
+
damlTypes.registerTemplate(exports.PaymentStreamChangeProposal, ['894f86b0199fe028dc38b5bb96f3d4473678f588855600dc8fd4447801089834', '#CantonPayments']);
|
|
123
123
|
|
|
124
124
|
|
|
125
125
|
|
|
@@ -350,5 +350,5 @@ exports.ActivePaymentStream = damlTypes.assembleTemplate(
|
|
|
350
350
|
);
|
|
351
351
|
|
|
352
352
|
|
|
353
|
-
damlTypes.registerTemplate(exports.ActivePaymentStream, ['
|
|
353
|
+
damlTypes.registerTemplate(exports.ActivePaymentStream, ['894f86b0199fe028dc38b5bb96f3d4473678f588855600dc8fd4447801089834', '#CantonPayments']);
|
|
354
354
|
|
|
@@ -133,5 +133,5 @@ exports.PartyMigrationProposal = damlTypes.assembleTemplate(
|
|
|
133
133
|
);
|
|
134
134
|
|
|
135
135
|
|
|
136
|
-
damlTypes.registerTemplate(exports.PartyMigrationProposal, ['
|
|
136
|
+
damlTypes.registerTemplate(exports.PartyMigrationProposal, ['894f86b0199fe028dc38b5bb96f3d4473678f588855600dc8fd4447801089834', '#CantonPayments']);
|
|
137
137
|
|
|
@@ -70,5 +70,5 @@ exports.PaymentStreamFactory = damlTypes.assembleTemplate(
|
|
|
70
70
|
);
|
|
71
71
|
|
|
72
72
|
|
|
73
|
-
damlTypes.registerTemplate(exports.PaymentStreamFactory, ['
|
|
73
|
+
damlTypes.registerTemplate(exports.PaymentStreamFactory, ['894f86b0199fe028dc38b5bb96f3d4473678f588855600dc8fd4447801089834', '#CantonPayments']);
|
|
74
74
|
|
|
@@ -157,5 +157,5 @@ exports.ProposedPaymentStream = damlTypes.assembleTemplate(
|
|
|
157
157
|
);
|
|
158
158
|
|
|
159
159
|
|
|
160
|
-
damlTypes.registerTemplate(exports.ProposedPaymentStream, ['
|
|
160
|
+
damlTypes.registerTemplate(exports.ProposedPaymentStream, ['894f86b0199fe028dc38b5bb96f3d4473678f588855600dc8fd4447801089834', '#CantonPayments']);
|
|
161
161
|
|
package/package.json
CHANGED