@settlemint/dalp-cli 3.1.2 → 3.1.3-release.32021587426
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/dalp.js +149 -27
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -68024,6 +68024,34 @@ var ENTRIES_INDEX = {
|
|
|
68024
68024
|
owner: "dapi",
|
|
68025
68025
|
orpcCode: "SETTINGS_SYSTEM_ADDRESS_ALREADY_CLAIMED"
|
|
68026
68026
|
},
|
|
68027
|
+
"DALP-0680": {
|
|
68028
|
+
id: "DALP-0680",
|
|
68029
|
+
kind: "route",
|
|
68030
|
+
category: "dependency",
|
|
68031
|
+
status: 503,
|
|
68032
|
+
retryable: true,
|
|
68033
|
+
expectedClientError: false,
|
|
68034
|
+
public: {
|
|
68035
|
+
message: "Test event could not be queued for delivery",
|
|
68036
|
+
why: "The delivery engine refused the hand-off, so the platform discarded the test event and scheduled no delivery attempt.",
|
|
68037
|
+
fix: "Retry the test event. If it keeps failing, ask your operator to confirm the delivery engine is running before wiring up this endpoint."
|
|
68038
|
+
},
|
|
68039
|
+
observability: {
|
|
68040
|
+
severity: "error",
|
|
68041
|
+
otelEventName: "dapi.error",
|
|
68042
|
+
metricAttributeKey: "dapi.error.id",
|
|
68043
|
+
dimensions: [
|
|
68044
|
+
"error.id",
|
|
68045
|
+
"error.category",
|
|
68046
|
+
"surface",
|
|
68047
|
+
"route",
|
|
68048
|
+
"status_class",
|
|
68049
|
+
"retryable"
|
|
68050
|
+
]
|
|
68051
|
+
},
|
|
68052
|
+
owner: "webhooks",
|
|
68053
|
+
orpcCode: "WEBHOOK_TEST_EVENT_NOT_QUEUED"
|
|
68054
|
+
},
|
|
68027
68055
|
"DALP-1001": {
|
|
68028
68056
|
id: "DALP-1001",
|
|
68029
68057
|
kind: "contract",
|
|
@@ -93216,6 +93244,7 @@ var DALP_ERROR_TYPED_FIELD_NAMES = {
|
|
|
93216
93244
|
"DALP-0677": [],
|
|
93217
93245
|
"DALP-0678": [],
|
|
93218
93246
|
"DALP-0679": [],
|
|
93247
|
+
"DALP-0680": [],
|
|
93219
93248
|
"DALP-1001": [
|
|
93220
93249
|
"args",
|
|
93221
93250
|
"correlationId",
|
|
@@ -103247,6 +103276,7 @@ var DALP_ERROR_DATA_SCHEMA_BY_ID = {
|
|
|
103247
103276
|
"DALP-0677": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA,
|
|
103248
103277
|
"DALP-0678": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA,
|
|
103249
103278
|
"DALP-0679": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA,
|
|
103279
|
+
"DALP-0680": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA,
|
|
103250
103280
|
"DALP-1001": DALP_ORPC_ERROR_DATA_BASE_SCHEMA.extend({
|
|
103251
103281
|
args: exports_external.record(exports_external.string(), exports_external.string()),
|
|
103252
103282
|
correlationId: exports_external.string(),
|
|
@@ -117431,6 +117461,10 @@ var CUSTOM_ERRORS = {
|
|
|
117431
117461
|
status: 400,
|
|
117432
117462
|
message: "Webhook subscription pattern is not recognized"
|
|
117433
117463
|
},
|
|
117464
|
+
WEBHOOK_TEST_EVENT_NOT_QUEUED: {
|
|
117465
|
+
status: 503,
|
|
117466
|
+
message: "Test event could not be queued for delivery"
|
|
117467
|
+
},
|
|
117434
117468
|
WEBHOOK_URL_PRIVATE_RANGE: {
|
|
117435
117469
|
status: 400,
|
|
117436
117470
|
message: "Webhook endpoint URL is not allowed"
|
|
@@ -133124,11 +133158,23 @@ var RestateV2CleanupStaleDeploymentsInputSchema = exports_external.object({
|
|
|
133124
133158
|
})
|
|
133125
133159
|
});
|
|
133126
133160
|
var RestateV2CleanupStaleDeploymentsOutputSchema = exports_external.object({
|
|
133127
|
-
acknowledged: exports_external.literal(true).meta({ description: "Always `true` on success." })
|
|
133161
|
+
acknowledged: exports_external.literal(true).meta({ description: "Always `true` on success." }),
|
|
133162
|
+
orphanSweep: exports_external.object({
|
|
133163
|
+
status: exports_external.enum(["ok", "failed"]).meta({
|
|
133164
|
+
description: "`failed` when the sweep could not run or confirm its backlog query."
|
|
133165
|
+
}),
|
|
133166
|
+
truncated: exports_external.boolean().meta({
|
|
133167
|
+
description: "`true` when the sweep did not drain the orphan backlog (budget ran out, a page could not be confirmed, or candidates were not removed) — run the cleanup again."
|
|
133168
|
+
}),
|
|
133169
|
+
killed: exports_external.number().int().meta({ description: "Orphan invocations the sweep confirmed killed." }),
|
|
133170
|
+
failures: exports_external.number().int().meta({ description: "Orphan invocations the sweep could not kill or confirm." })
|
|
133171
|
+
}).optional().meta({
|
|
133172
|
+
description: "Summary of the orphan-invocation sweep, present when the cleanup ran one."
|
|
133173
|
+
})
|
|
133128
133174
|
});
|
|
133129
133175
|
var restateCleanupStaleDeploymentsContract = operator(v2Contract.route({
|
|
133130
133176
|
method: "POST",
|
|
133131
|
-
description: "Drain and delete every Restate deployment except the one matching the supplied service URL. Best-effort: per-deployment failures are logged by the helper, not surfaced.
|
|
133177
|
+
description: "Drain and delete every Restate deployment except the one matching the supplied service URL. Best-effort: per-deployment failures are logged by the helper, not surfaced. The orphan-invocation sweep's outcome is surfaced in `orphanSweep`; operators consult `ops_audit_log` and Restate `/deployments` to confirm deployment cleanup.",
|
|
133132
133178
|
successDescription: "Cleanup accepted; stale deployments scheduled for drain/delete."
|
|
133133
133179
|
}).input(v2Input.body(RestateV2CleanupStaleDeploymentsInputSchema)).output(RestateV2CleanupStaleDeploymentsOutputSchema), { service: "restate", resource: "stale-deployment-cleanups" });
|
|
133134
133180
|
var ComponentStatusEnum = exports_external.enum(["ok", "unreachable", "degraded"]);
|
|
@@ -141081,7 +141127,7 @@ var WebhooksV2ListOutputSchema = createPaginatedResponse(WebhookEndpointSchema);
|
|
|
141081
141127
|
var WebhooksV2CreateInputSchema = exports_external.object({
|
|
141082
141128
|
url: exports_external.url(),
|
|
141083
141129
|
displayName: exports_external.string().trim().min(1).max(200).optional(),
|
|
141084
|
-
subscriptions: exports_external.array(exports_external.string().trim().min(1)).min(1).default(["*.final", "*.retracted", "*.recalled"]),
|
|
141130
|
+
subscriptions: exports_external.array(exports_external.string().trim().min(1)).min(1).default(["*.provisional", "*.final", "*.retracted", "*.recalled"]),
|
|
141085
141131
|
defaultPayloadShape: WebhookPayloadShapeSchema.default("thin"),
|
|
141086
141132
|
counterSignedReceipts: exports_external.boolean().default(false)
|
|
141087
141133
|
});
|
|
@@ -141245,6 +141291,7 @@ var WebhooksV2TestEventBodySchema = exports_external.object({
|
|
|
141245
141291
|
var WebhooksV2TestEventOutputSchema = createSingleResponse(exports_external.object({
|
|
141246
141292
|
evtId: exports_external.string(),
|
|
141247
141293
|
deliveryId: exports_external.uuid().nullable(),
|
|
141294
|
+
deliveryState: exports_external.literal("queued").default("queued"),
|
|
141248
141295
|
isTest: exports_external.literal(true)
|
|
141249
141296
|
}));
|
|
141250
141297
|
var WebhooksV2UpdateParamsSchema = exports_external.object({
|
|
@@ -141710,7 +141757,7 @@ function normalizeDalpBaseUrl(url2) {
|
|
|
141710
141757
|
}
|
|
141711
141758
|
var package_default = {
|
|
141712
141759
|
name: "@settlemint/dalp-sdk",
|
|
141713
|
-
version: "3.1.
|
|
141760
|
+
version: "3.1.3-release.32021587426",
|
|
141714
141761
|
private: false,
|
|
141715
141762
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
141716
141763
|
homepage: "https://settlemint.com",
|
|
@@ -142880,6 +142927,7 @@ var DAPI_ROUTE_ERROR_IDS = {
|
|
|
142880
142927
|
"DALP-0677": "DALP-0677",
|
|
142881
142928
|
"DALP-0678": "DALP-0678",
|
|
142882
142929
|
"DALP-0679": "DALP-0679",
|
|
142930
|
+
"DALP-0680": "DALP-0680",
|
|
142883
142931
|
"DALP-9070": "DALP-9070",
|
|
142884
142932
|
"DALP-9071": "DALP-9071",
|
|
142885
142933
|
"DALP-9072": "DALP-9072",
|
|
@@ -142915,7 +142963,7 @@ var DAPI_ERROR_IDS = {
|
|
|
142915
142963
|
};
|
|
142916
142964
|
var Webhook;
|
|
142917
142965
|
((Webhook2) => {
|
|
142918
|
-
Webhook2.MANIFEST_VERSION = "2026-
|
|
142966
|
+
Webhook2.MANIFEST_VERSION = "2026-08-14";
|
|
142919
142967
|
})(Webhook ||= {});
|
|
142920
142968
|
var WEBHOOK_MANIFEST_VERSION = Webhook.MANIFEST_VERSION;
|
|
142921
142969
|
var import_standardwebhooks = __toESM3(require_dist3(), 1);
|
|
@@ -142930,7 +142978,7 @@ var failedStateSet = new Set(FAILED_TRANSACTION_STATES);
|
|
|
142930
142978
|
// package.json
|
|
142931
142979
|
var package_default2 = {
|
|
142932
142980
|
name: "@settlemint/dalp-cli",
|
|
142933
|
-
version: "3.1.
|
|
142981
|
+
version: "3.1.3-release.32021587426",
|
|
142934
142982
|
private: false,
|
|
142935
142983
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
142936
142984
|
homepage: "https://settlemint.com",
|
|
@@ -160886,6 +160934,34 @@ var ENTRIES_INDEX2 = {
|
|
|
160886
160934
|
owner: "dapi",
|
|
160887
160935
|
orpcCode: "SETTINGS_SYSTEM_ADDRESS_ALREADY_CLAIMED"
|
|
160888
160936
|
},
|
|
160937
|
+
"DALP-0680": {
|
|
160938
|
+
id: "DALP-0680",
|
|
160939
|
+
kind: "route",
|
|
160940
|
+
category: "dependency",
|
|
160941
|
+
status: 503,
|
|
160942
|
+
retryable: true,
|
|
160943
|
+
expectedClientError: false,
|
|
160944
|
+
public: {
|
|
160945
|
+
message: "Test event could not be queued for delivery",
|
|
160946
|
+
why: "The delivery engine refused the hand-off, so the platform discarded the test event and scheduled no delivery attempt.",
|
|
160947
|
+
fix: "Retry the test event. If it keeps failing, ask your operator to confirm the delivery engine is running before wiring up this endpoint."
|
|
160948
|
+
},
|
|
160949
|
+
observability: {
|
|
160950
|
+
severity: "error",
|
|
160951
|
+
otelEventName: "dapi.error",
|
|
160952
|
+
metricAttributeKey: "dapi.error.id",
|
|
160953
|
+
dimensions: [
|
|
160954
|
+
"error.id",
|
|
160955
|
+
"error.category",
|
|
160956
|
+
"surface",
|
|
160957
|
+
"route",
|
|
160958
|
+
"status_class",
|
|
160959
|
+
"retryable"
|
|
160960
|
+
]
|
|
160961
|
+
},
|
|
160962
|
+
owner: "webhooks",
|
|
160963
|
+
orpcCode: "WEBHOOK_TEST_EVENT_NOT_QUEUED"
|
|
160964
|
+
},
|
|
160889
160965
|
"DALP-1001": {
|
|
160890
160966
|
id: "DALP-1001",
|
|
160891
160967
|
kind: "contract",
|
|
@@ -186095,6 +186171,7 @@ var DALP_ERROR_TYPED_FIELD_NAMES2 = {
|
|
|
186095
186171
|
"DALP-0677": [],
|
|
186096
186172
|
"DALP-0678": [],
|
|
186097
186173
|
"DALP-0679": [],
|
|
186174
|
+
"DALP-0680": [],
|
|
186098
186175
|
"DALP-1001": [
|
|
186099
186176
|
"args",
|
|
186100
186177
|
"correlationId",
|
|
@@ -196128,6 +196205,7 @@ var DALP_ERROR_DATA_SCHEMA_BY_ID2 = {
|
|
|
196128
196205
|
"DALP-0677": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
196129
196206
|
"DALP-0678": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
196130
196207
|
"DALP-0679": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
196208
|
+
"DALP-0680": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
196131
196209
|
"DALP-1001": DALP_ORPC_ERROR_DATA_BASE_SCHEMA2.extend({
|
|
196132
196210
|
args: exports_external.record(exports_external.string(), exports_external.string()),
|
|
196133
196211
|
correlationId: exports_external.string(),
|
|
@@ -212662,79 +212740,123 @@ var WEBHOOK_FIXTURES = [
|
|
|
212662
212740
|
}
|
|
212663
212741
|
},
|
|
212664
212742
|
{
|
|
212665
|
-
eventName: "access-control.role-
|
|
212743
|
+
eventName: "access-control.role-granted.retracted",
|
|
212666
212744
|
version: 1,
|
|
212667
|
-
body: '{"evt_id":"evt_fixture_002","lifecycle_state":"
|
|
212745
|
+
body: '{"evt_id":"evt_fixture_002","lifecycle_state":"retracted","payload":{"accessManagerAddress":"0x1111111111111111111111111111111111111111","accountAddress":"0x2222222222222222222222222222222222222222","blockNumber":"18445201","chainId":537001,"reorgBlockNumber":18445201,"roleId":"0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa","sender":"0x3333333333333333333333333333333333333333","supersedes":"evt_roleGranted001","systemAddress":"0x4444444444444444444444444444444444444444","transactionHash":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"},"related":{"idxr_access_control_role_member":"idxr_access_control_role_member_fixture"},"supersedes":"evt_fixture_superseded_2","type":"access-control.role-granted.retracted","version":1}',
|
|
212668
212746
|
headers: {
|
|
212669
212747
|
"content-type": "application/json",
|
|
212670
212748
|
"webhook-id": "evt_fixture_002",
|
|
212671
|
-
"webhook-signature": "v1,
|
|
212749
|
+
"webhook-signature": "v1,IQhipqr1tCGmw+0pFSsbK+BDtJYCFyBtjofcyfw8A6w=",
|
|
212672
212750
|
"webhook-timestamp": "1767225600"
|
|
212673
212751
|
}
|
|
212674
212752
|
},
|
|
212675
212753
|
{
|
|
212676
|
-
eventName: "
|
|
212754
|
+
eventName: "access-control.role-revoked.provisional",
|
|
212677
212755
|
version: 1,
|
|
212678
|
-
body: '{"evt_id":"evt_fixture_003","lifecycle_state":"provisional","payload":{"
|
|
212756
|
+
body: '{"evt_id":"evt_fixture_003","lifecycle_state":"provisional","payload":{"accessManagerAddress":"0x1111111111111111111111111111111111111111","accountAddress":"0x2222222222222222222222222222222222222222","blockNumber":"18445201","chainId":537001,"roleId":"0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa","sender":"0x3333333333333333333333333333333333333333","systemAddress":"0x4444444444444444444444444444444444444444","transactionHash":"0xcccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"},"related":{"idxr_access_control_role_member":"idxr_access_control_role_member_fixture"},"type":"access-control.role-revoked.provisional","version":1}',
|
|
212679
212757
|
headers: {
|
|
212680
212758
|
"content-type": "application/json",
|
|
212681
212759
|
"webhook-id": "evt_fixture_003",
|
|
212682
|
-
"webhook-signature": "v1,
|
|
212760
|
+
"webhook-signature": "v1,vty9tMWG33U1FZ9xEgsMEUDmObMcZaGU8F5NLHSaxAg=",
|
|
212683
212761
|
"webhook-timestamp": "1767225600"
|
|
212684
212762
|
}
|
|
212685
212763
|
},
|
|
212686
212764
|
{
|
|
212687
|
-
eventName: "
|
|
212765
|
+
eventName: "access-control.role-revoked.retracted",
|
|
212688
212766
|
version: 1,
|
|
212689
|
-
body: '{"evt_id":"evt_fixture_004","lifecycle_state":"
|
|
212767
|
+
body: '{"evt_id":"evt_fixture_004","lifecycle_state":"retracted","payload":{"accessManagerAddress":"0x1111111111111111111111111111111111111111","accountAddress":"0x2222222222222222222222222222222222222222","blockNumber":"18445201","chainId":537001,"reorgBlockNumber":18445201,"roleId":"0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa","sender":"0x3333333333333333333333333333333333333333","supersedes":"evt_roleRevoked001","systemAddress":"0x4444444444444444444444444444444444444444","transactionHash":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"},"related":{"idxr_access_control_role_member":"idxr_access_control_role_member_fixture"},"supersedes":"evt_fixture_superseded_4","type":"access-control.role-revoked.retracted","version":1}',
|
|
212690
212768
|
headers: {
|
|
212691
212769
|
"content-type": "application/json",
|
|
212692
212770
|
"webhook-id": "evt_fixture_004",
|
|
212693
|
-
"webhook-signature": "v1,
|
|
212771
|
+
"webhook-signature": "v1,d6HcoFKqNYLI+NzxSYuhyQQRBmQVQjzC5vUDbj2YfTU=",
|
|
212694
212772
|
"webhook-timestamp": "1767225600"
|
|
212695
212773
|
}
|
|
212696
212774
|
},
|
|
212697
212775
|
{
|
|
212698
|
-
eventName: "
|
|
212776
|
+
eventName: "asset.issuance.provisional",
|
|
212699
212777
|
version: 1,
|
|
212700
|
-
body: '{"evt_id":"evt_fixture_005","lifecycle_state":"provisional","payload":{"
|
|
212778
|
+
body: '{"evt_id":"evt_fixture_005","lifecycle_state":"provisional","payload":{"assetAddress":"0x1111111111111111111111111111111111111111","chainId":537001,"issuer":"0x2222222222222222222222222222222222222222","quantity":"1000000000000000000000","transactionHash":"0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"},"related":{"idxr_asset":"idxr_asset_fixture","idxr_token":"idxr_token_fixture"},"type":"asset.issuance.provisional","version":1}',
|
|
212701
212779
|
headers: {
|
|
212702
212780
|
"content-type": "application/json",
|
|
212703
212781
|
"webhook-id": "evt_fixture_005",
|
|
212704
|
-
"webhook-signature": "v1,
|
|
212782
|
+
"webhook-signature": "v1,J9T2v+5Rrq7vHCAyvalejNQEAVF4qyerksnz/ka6peE=",
|
|
212705
212783
|
"webhook-timestamp": "1767225600"
|
|
212706
212784
|
}
|
|
212707
212785
|
},
|
|
212708
212786
|
{
|
|
212709
|
-
eventName: "
|
|
212787
|
+
eventName: "compliance.freeze.recalled",
|
|
212710
212788
|
version: 1,
|
|
212711
|
-
body: '{"evt_id":"evt_fixture_006","lifecycle_state":"
|
|
212789
|
+
body: '{"evt_id":"evt_fixture_006","lifecycle_state":"recalled","payload":{"chainId":537001,"reasonCode":"manual-review-overturned","recalledBy":"compliance-ops","subjectAddress":"0x4444444444444444444444444444444444444444","supersedes":"evt_recalledFreeze001","tokenAddress":"0x3333333333333333333333333333333333333333"},"related":{"idxr_compliance_status":"idxr_compliance_status_fixture","idxr_token":"idxr_token_fixture"},"supersedes":"evt_fixture_superseded_6","type":"compliance.freeze.recalled","version":1}',
|
|
212712
212790
|
headers: {
|
|
212713
212791
|
"content-type": "application/json",
|
|
212714
212792
|
"webhook-id": "evt_fixture_006",
|
|
212715
|
-
"webhook-signature": "v1,
|
|
212793
|
+
"webhook-signature": "v1,lkF/Eo9PZEF4PGsWhWuls6UewgnToKUxS82X47CY0VI=",
|
|
212716
212794
|
"webhook-timestamp": "1767225600"
|
|
212717
212795
|
}
|
|
212718
212796
|
},
|
|
212719
212797
|
{
|
|
212720
|
-
eventName: "
|
|
212798
|
+
eventName: "identity.registration.provisional",
|
|
212721
212799
|
version: 1,
|
|
212722
|
-
body: '{"evt_id":"evt_fixture_007","lifecycle_state":"
|
|
212800
|
+
body: '{"evt_id":"evt_fixture_007","lifecycle_state":"provisional","payload":{"accountAddress":"0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb","blockNumber":"18445201","chainId":537001,"country":56,"identityAddress":"0xcccccccccccccccccccccccccccccccccccccccc","registryAddress":"0xdddddddddddddddddddddddddddddddddddddddd","status":"ACTIVE","transactionHash":"0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"},"related":{"idxr_account":"idxr_account_fixture","idxr_identity":"idxr_identity_fixture"},"type":"identity.registration.provisional","version":1}',
|
|
212723
212801
|
headers: {
|
|
212724
212802
|
"content-type": "application/json",
|
|
212725
212803
|
"webhook-id": "evt_fixture_007",
|
|
212726
|
-
"webhook-signature": "v1,
|
|
212804
|
+
"webhook-signature": "v1,jdxqT82gK/1SMDs6yGf17/aIM3rHxD/rHBytXRRw0W8=",
|
|
212727
212805
|
"webhook-timestamp": "1767225600"
|
|
212728
212806
|
}
|
|
212729
212807
|
},
|
|
212730
212808
|
{
|
|
212731
|
-
eventName: "
|
|
212809
|
+
eventName: "identity.registration.retracted",
|
|
212732
212810
|
version: 1,
|
|
212733
|
-
body: '{"evt_id":"evt_fixture_008","lifecycle_state":"
|
|
212811
|
+
body: '{"evt_id":"evt_fixture_008","lifecycle_state":"retracted","payload":{"accountAddress":"0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb","blockNumber":"18445201","chainId":537001,"country":56,"identityAddress":"0xcccccccccccccccccccccccccccccccccccccccc","registryAddress":"0xdddddddddddddddddddddddddddddddddddddddd","reorgBlockNumber":18445201,"status":"ACTIVE","supersedes":"evt_identityRegistration001","transactionHash":"0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"},"related":{"idxr_account":"idxr_account_fixture","idxr_identity":"idxr_identity_fixture"},"supersedes":"evt_fixture_superseded_8","type":"identity.registration.retracted","version":1}',
|
|
212734
212812
|
headers: {
|
|
212735
212813
|
"content-type": "application/json",
|
|
212736
212814
|
"webhook-id": "evt_fixture_008",
|
|
212737
|
-
"webhook-signature": "v1,
|
|
212815
|
+
"webhook-signature": "v1,jUii48dah+V6c7G094f0r5QjENyU83fx+t0X8PTyefE=",
|
|
212816
|
+
"webhook-timestamp": "1767225600"
|
|
212817
|
+
}
|
|
212818
|
+
},
|
|
212819
|
+
{
|
|
212820
|
+
eventName: "settlement.transfer.retracted",
|
|
212821
|
+
version: 1,
|
|
212822
|
+
body: '{"evt_id":"evt_fixture_009","lifecycle_state":"retracted","payload":{"chainId":537001,"reorgBlockNumber":18445201,"settlementId":"stl_01JZP7R5W8M9N0P1Q2R3S4T5V6","supersedes":"evt_finalSettlement001","transactionHash":"0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"},"related":{"idxr_settlement":"idxr_settlement_fixture"},"supersedes":"evt_fixture_superseded_9","type":"settlement.transfer.retracted","version":1}',
|
|
212823
|
+
headers: {
|
|
212824
|
+
"content-type": "application/json",
|
|
212825
|
+
"webhook-id": "evt_fixture_009",
|
|
212826
|
+
"webhook-signature": "v1,imBuga0i7Ds6el7T98QM/pwKPqKa/EjgDEHelzBafQ8=",
|
|
212827
|
+
"webhook-timestamp": "1767225600"
|
|
212828
|
+
}
|
|
212829
|
+
},
|
|
212830
|
+
{
|
|
212831
|
+
eventName: "token.transfer.final",
|
|
212832
|
+
version: 1,
|
|
212833
|
+
body: '{"evt_id":"evt_fixture_010","lifecycle_state":"final","payload":{"amount":"250000000000000000000","blockNumber":18445240,"chainId":537001,"from":"0x6666666666666666666666666666666666666666","logIndex":7,"to":"0x7777777777777777777777777777777777777777","tokenAddress":"0x5555555555555555555555555555555555555555","transactionHash":"0xcccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"},"related":{"idxr_token":"idxr_token_fixture"},"type":"token.transfer.final","version":1}',
|
|
212834
|
+
headers: {
|
|
212835
|
+
"content-type": "application/json",
|
|
212836
|
+
"webhook-id": "evt_fixture_010",
|
|
212837
|
+
"webhook-signature": "v1,Mm4/3qBcRYyr+gkdkcjUjSdvTTvjHThqwC4hWbb2t58=",
|
|
212838
|
+
"webhook-timestamp": "1767225600"
|
|
212839
|
+
}
|
|
212840
|
+
},
|
|
212841
|
+
{
|
|
212842
|
+
eventName: "token.transfer.pending",
|
|
212843
|
+
version: 1,
|
|
212844
|
+
body: '{"evt_id":"evt_fixture_011","lifecycle_state":"pending","payload":{"amount":"1000000000000000000","chainId":537001,"from":"0x9999999999999999999999999999999999999999","to":"0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa","tokenAddress":"0x8888888888888888888888888888888888888888","transactionHash":"0xdddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd"},"related":{"idxr_token":"idxr_token_fixture"},"type":"token.transfer.pending","version":1}',
|
|
212845
|
+
headers: {
|
|
212846
|
+
"content-type": "application/json",
|
|
212847
|
+
"webhook-id": "evt_fixture_011",
|
|
212848
|
+
"webhook-signature": "v1,eOJtgYNQNMWaKpztrKYzPwrHGyCjVLlRca9Me0nGu0U=",
|
|
212849
|
+
"webhook-timestamp": "1767225600"
|
|
212850
|
+
}
|
|
212851
|
+
},
|
|
212852
|
+
{
|
|
212853
|
+
eventName: "token.transfer.retracted",
|
|
212854
|
+
version: 1,
|
|
212855
|
+
body: '{"evt_id":"evt_fixture_012","lifecycle_state":"retracted","payload":{"amount":"250000000000000000000","blockNumber":18445240,"chainId":537001,"from":"0x6666666666666666666666666666666666666666","logIndex":7,"reorgBlockNumber":18445201,"supersedes":"evt_tokenTransfer001","to":"0x7777777777777777777777777777777777777777","tokenAddress":"0x5555555555555555555555555555555555555555","transactionHash":"0xcccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"},"related":{"idxr_token":"idxr_token_fixture"},"supersedes":"evt_fixture_superseded_12","type":"token.transfer.retracted","version":1}',
|
|
212856
|
+
headers: {
|
|
212857
|
+
"content-type": "application/json",
|
|
212858
|
+
"webhook-id": "evt_fixture_012",
|
|
212859
|
+
"webhook-signature": "v1,YWg/6VMclUTa+K9GoCK9hXcuTuOWeDQbUGnv11bNH7c=",
|
|
212738
212860
|
"webhook-timestamp": "1767225600"
|
|
212739
212861
|
}
|
|
212740
212862
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlemint/dalp-cli",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.3-release.32021587426",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
6
6
|
"homepage": "https://settlemint.com",
|