@dfns/sdk 0.6.12 → 0.7.1-alpha.1
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/baseAuthApi.d.ts +1 -8
- package/dfnsApiClient.d.ts +1 -1
- package/dfnsAuthenticator.d.ts +2 -2
- package/dfnsDelegatedApiClient.d.ts +1 -1
- package/generated/auth/client.d.ts +0 -8
- package/generated/auth/client.js +0 -76
- package/generated/auth/delegatedClient.d.ts +0 -12
- package/generated/auth/delegatedClient.js +0 -162
- package/generated/auth/types.d.ts +3 -254
- package/generated/exchanges/types.d.ts +416 -2
- package/generated/keys/types.d.ts +0 -3
- package/generated/permissions/types.d.ts +2 -2
- package/generated/policies/types.d.ts +480 -9
- package/generated/staking/types.d.ts +0 -16
- package/generated/wallets/types.d.ts +624 -9
- package/package.json +2 -3
- package/types/generic.d.ts +4 -4
- package/utils/authToken.d.ts +5 -0
- package/utils/authToken.js +20 -0
- package/utils/fetch.js +5 -10
- package/utils/index.d.ts +0 -1
- package/utils/index.js +0 -1
- package/utils/nonce.d.ts +0 -1
- package/utils/nonce.js +0 -12
|
@@ -48,7 +48,6 @@ export type BroadcastTransactionResponse = {
|
|
|
48
48
|
requester: {
|
|
49
49
|
userId: string;
|
|
50
50
|
tokenId?: string | undefined;
|
|
51
|
-
appId?: string | undefined;
|
|
52
51
|
};
|
|
53
52
|
requestBody: {
|
|
54
53
|
kind: "Transaction";
|
|
@@ -265,7 +264,6 @@ export type GenerateSignatureResponse = {
|
|
|
265
264
|
requester: {
|
|
266
265
|
userId: string;
|
|
267
266
|
tokenId?: string | undefined;
|
|
268
|
-
appId?: string | undefined;
|
|
269
267
|
};
|
|
270
268
|
requestBody: {
|
|
271
269
|
kind: "Hash";
|
|
@@ -380,7 +378,6 @@ export type GetSignatureResponse = {
|
|
|
380
378
|
requester: {
|
|
381
379
|
userId: string;
|
|
382
380
|
tokenId?: string | undefined;
|
|
383
|
-
appId?: string | undefined;
|
|
384
381
|
};
|
|
385
382
|
requestBody: {
|
|
386
383
|
kind: "Hash";
|
|
@@ -493,7 +490,6 @@ export type GetTransactionResponse = {
|
|
|
493
490
|
requester: {
|
|
494
491
|
userId: string;
|
|
495
492
|
tokenId?: string | undefined;
|
|
496
|
-
appId?: string | undefined;
|
|
497
493
|
};
|
|
498
494
|
requestBody: {
|
|
499
495
|
kind: "Transaction";
|
|
@@ -558,7 +554,6 @@ export type GetTransferResponse = {
|
|
|
558
554
|
requester: {
|
|
559
555
|
userId: string;
|
|
560
556
|
tokenId?: string | undefined;
|
|
561
|
-
appId?: string | undefined;
|
|
562
557
|
};
|
|
563
558
|
requestBody: {
|
|
564
559
|
kind: "Native";
|
|
@@ -568,6 +563,19 @@ export type GetTransferResponse = {
|
|
|
568
563
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
569
564
|
createDestinationAccount?: boolean | undefined;
|
|
570
565
|
externalId?: string | undefined;
|
|
566
|
+
travelRule?: ({
|
|
567
|
+
kind: "Notabene";
|
|
568
|
+
beneficiaryVASPdid: string;
|
|
569
|
+
beneficiaryProof?: {
|
|
570
|
+
[x: string]: any;
|
|
571
|
+
} | undefined;
|
|
572
|
+
originator: {
|
|
573
|
+
[x: string]: any;
|
|
574
|
+
};
|
|
575
|
+
beneficiary: {
|
|
576
|
+
[x: string]: any;
|
|
577
|
+
};
|
|
578
|
+
}) | undefined;
|
|
571
579
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
572
580
|
feeSponsorId?: string | undefined;
|
|
573
581
|
} | {
|
|
@@ -576,6 +584,19 @@ export type GetTransferResponse = {
|
|
|
576
584
|
to: string;
|
|
577
585
|
amount: string;
|
|
578
586
|
externalId?: string | undefined;
|
|
587
|
+
travelRule?: ({
|
|
588
|
+
kind: "Notabene";
|
|
589
|
+
beneficiaryVASPdid: string;
|
|
590
|
+
beneficiaryProof?: {
|
|
591
|
+
[x: string]: any;
|
|
592
|
+
} | undefined;
|
|
593
|
+
originator: {
|
|
594
|
+
[x: string]: any;
|
|
595
|
+
};
|
|
596
|
+
beneficiary: {
|
|
597
|
+
[x: string]: any;
|
|
598
|
+
};
|
|
599
|
+
}) | undefined;
|
|
579
600
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
580
601
|
feeSponsorId?: string | undefined;
|
|
581
602
|
} | {
|
|
@@ -584,6 +605,19 @@ export type GetTransferResponse = {
|
|
|
584
605
|
to: string;
|
|
585
606
|
amount: string;
|
|
586
607
|
externalId?: string | undefined;
|
|
608
|
+
travelRule?: ({
|
|
609
|
+
kind: "Notabene";
|
|
610
|
+
beneficiaryVASPdid: string;
|
|
611
|
+
beneficiaryProof?: {
|
|
612
|
+
[x: string]: any;
|
|
613
|
+
} | undefined;
|
|
614
|
+
originator: {
|
|
615
|
+
[x: string]: any;
|
|
616
|
+
};
|
|
617
|
+
beneficiary: {
|
|
618
|
+
[x: string]: any;
|
|
619
|
+
};
|
|
620
|
+
}) | undefined;
|
|
587
621
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
588
622
|
feeSponsorId?: string | undefined;
|
|
589
623
|
} | {
|
|
@@ -592,6 +626,19 @@ export type GetTransferResponse = {
|
|
|
592
626
|
to: string;
|
|
593
627
|
amount: string;
|
|
594
628
|
externalId?: string | undefined;
|
|
629
|
+
travelRule?: ({
|
|
630
|
+
kind: "Notabene";
|
|
631
|
+
beneficiaryVASPdid: string;
|
|
632
|
+
beneficiaryProof?: {
|
|
633
|
+
[x: string]: any;
|
|
634
|
+
} | undefined;
|
|
635
|
+
originator: {
|
|
636
|
+
[x: string]: any;
|
|
637
|
+
};
|
|
638
|
+
beneficiary: {
|
|
639
|
+
[x: string]: any;
|
|
640
|
+
};
|
|
641
|
+
}) | undefined;
|
|
595
642
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
596
643
|
feeSponsorId?: string | undefined;
|
|
597
644
|
} | {
|
|
@@ -601,6 +648,19 @@ export type GetTransferResponse = {
|
|
|
601
648
|
amount: string;
|
|
602
649
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
603
650
|
externalId?: string | undefined;
|
|
651
|
+
travelRule?: ({
|
|
652
|
+
kind: "Notabene";
|
|
653
|
+
beneficiaryVASPdid: string;
|
|
654
|
+
beneficiaryProof?: {
|
|
655
|
+
[x: string]: any;
|
|
656
|
+
} | undefined;
|
|
657
|
+
originator: {
|
|
658
|
+
[x: string]: any;
|
|
659
|
+
};
|
|
660
|
+
beneficiary: {
|
|
661
|
+
[x: string]: any;
|
|
662
|
+
};
|
|
663
|
+
}) | undefined;
|
|
604
664
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
605
665
|
feeSponsorId?: string | undefined;
|
|
606
666
|
} | {
|
|
@@ -610,6 +670,19 @@ export type GetTransferResponse = {
|
|
|
610
670
|
tokenId: string;
|
|
611
671
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
612
672
|
externalId?: string | undefined;
|
|
673
|
+
travelRule?: ({
|
|
674
|
+
kind: "Notabene";
|
|
675
|
+
beneficiaryVASPdid: string;
|
|
676
|
+
beneficiaryProof?: {
|
|
677
|
+
[x: string]: any;
|
|
678
|
+
} | undefined;
|
|
679
|
+
originator: {
|
|
680
|
+
[x: string]: any;
|
|
681
|
+
};
|
|
682
|
+
beneficiary: {
|
|
683
|
+
[x: string]: any;
|
|
684
|
+
};
|
|
685
|
+
}) | undefined;
|
|
613
686
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
614
687
|
feeSponsorId?: string | undefined;
|
|
615
688
|
} | {
|
|
@@ -620,6 +693,19 @@ export type GetTransferResponse = {
|
|
|
620
693
|
amount: string;
|
|
621
694
|
memo?: string | undefined;
|
|
622
695
|
externalId?: string | undefined;
|
|
696
|
+
travelRule?: ({
|
|
697
|
+
kind: "Notabene";
|
|
698
|
+
beneficiaryVASPdid: string;
|
|
699
|
+
beneficiaryProof?: {
|
|
700
|
+
[x: string]: any;
|
|
701
|
+
} | undefined;
|
|
702
|
+
originator: {
|
|
703
|
+
[x: string]: any;
|
|
704
|
+
};
|
|
705
|
+
beneficiary: {
|
|
706
|
+
[x: string]: any;
|
|
707
|
+
};
|
|
708
|
+
}) | undefined;
|
|
623
709
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
624
710
|
feeSponsorId?: string | undefined;
|
|
625
711
|
} | {
|
|
@@ -629,6 +715,19 @@ export type GetTransferResponse = {
|
|
|
629
715
|
mint: string;
|
|
630
716
|
createDestinationAccount?: boolean | undefined;
|
|
631
717
|
externalId?: string | undefined;
|
|
718
|
+
travelRule?: ({
|
|
719
|
+
kind: "Notabene";
|
|
720
|
+
beneficiaryVASPdid: string;
|
|
721
|
+
beneficiaryProof?: {
|
|
722
|
+
[x: string]: any;
|
|
723
|
+
} | undefined;
|
|
724
|
+
originator: {
|
|
725
|
+
[x: string]: any;
|
|
726
|
+
};
|
|
727
|
+
beneficiary: {
|
|
728
|
+
[x: string]: any;
|
|
729
|
+
};
|
|
730
|
+
}) | undefined;
|
|
632
731
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
633
732
|
feeSponsorId?: string | undefined;
|
|
634
733
|
} | {
|
|
@@ -638,6 +737,19 @@ export type GetTransferResponse = {
|
|
|
638
737
|
amount: string;
|
|
639
738
|
memo?: string | undefined;
|
|
640
739
|
externalId?: string | undefined;
|
|
740
|
+
travelRule?: ({
|
|
741
|
+
kind: "Notabene";
|
|
742
|
+
beneficiaryVASPdid: string;
|
|
743
|
+
beneficiaryProof?: {
|
|
744
|
+
[x: string]: any;
|
|
745
|
+
} | undefined;
|
|
746
|
+
originator: {
|
|
747
|
+
[x: string]: any;
|
|
748
|
+
};
|
|
749
|
+
beneficiary: {
|
|
750
|
+
[x: string]: any;
|
|
751
|
+
};
|
|
752
|
+
}) | undefined;
|
|
641
753
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
642
754
|
feeSponsorId?: string | undefined;
|
|
643
755
|
} | {
|
|
@@ -646,6 +758,19 @@ export type GetTransferResponse = {
|
|
|
646
758
|
to: string;
|
|
647
759
|
amount: string;
|
|
648
760
|
externalId?: string | undefined;
|
|
761
|
+
travelRule?: ({
|
|
762
|
+
kind: "Notabene";
|
|
763
|
+
beneficiaryVASPdid: string;
|
|
764
|
+
beneficiaryProof?: {
|
|
765
|
+
[x: string]: any;
|
|
766
|
+
} | undefined;
|
|
767
|
+
originator: {
|
|
768
|
+
[x: string]: any;
|
|
769
|
+
};
|
|
770
|
+
beneficiary: {
|
|
771
|
+
[x: string]: any;
|
|
772
|
+
};
|
|
773
|
+
}) | undefined;
|
|
649
774
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
650
775
|
feeSponsorId?: string | undefined;
|
|
651
776
|
} | {
|
|
@@ -654,6 +779,19 @@ export type GetTransferResponse = {
|
|
|
654
779
|
to: string;
|
|
655
780
|
amount: string;
|
|
656
781
|
externalId?: string | undefined;
|
|
782
|
+
travelRule?: ({
|
|
783
|
+
kind: "Notabene";
|
|
784
|
+
beneficiaryVASPdid: string;
|
|
785
|
+
beneficiaryProof?: {
|
|
786
|
+
[x: string]: any;
|
|
787
|
+
} | undefined;
|
|
788
|
+
originator: {
|
|
789
|
+
[x: string]: any;
|
|
790
|
+
};
|
|
791
|
+
beneficiary: {
|
|
792
|
+
[x: string]: any;
|
|
793
|
+
};
|
|
794
|
+
}) | undefined;
|
|
657
795
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
658
796
|
feeSponsorId?: string | undefined;
|
|
659
797
|
} | {
|
|
@@ -662,6 +800,19 @@ export type GetTransferResponse = {
|
|
|
662
800
|
to: string;
|
|
663
801
|
tokenId: string;
|
|
664
802
|
externalId?: string | undefined;
|
|
803
|
+
travelRule?: ({
|
|
804
|
+
kind: "Notabene";
|
|
805
|
+
beneficiaryVASPdid: string;
|
|
806
|
+
beneficiaryProof?: {
|
|
807
|
+
[x: string]: any;
|
|
808
|
+
} | undefined;
|
|
809
|
+
originator: {
|
|
810
|
+
[x: string]: any;
|
|
811
|
+
};
|
|
812
|
+
beneficiary: {
|
|
813
|
+
[x: string]: any;
|
|
814
|
+
};
|
|
815
|
+
}) | undefined;
|
|
665
816
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
666
817
|
feeSponsorId?: string | undefined;
|
|
667
818
|
};
|
|
@@ -1327,7 +1478,6 @@ export type ListSignaturesResponse = {
|
|
|
1327
1478
|
requester: {
|
|
1328
1479
|
userId: string;
|
|
1329
1480
|
tokenId?: string | undefined;
|
|
1330
|
-
appId?: string | undefined;
|
|
1331
1481
|
};
|
|
1332
1482
|
requestBody: {
|
|
1333
1483
|
kind: "Hash";
|
|
@@ -1449,7 +1599,6 @@ export type ListTransactionsResponse = {
|
|
|
1449
1599
|
requester: {
|
|
1450
1600
|
userId: string;
|
|
1451
1601
|
tokenId?: string | undefined;
|
|
1452
|
-
appId?: string | undefined;
|
|
1453
1602
|
};
|
|
1454
1603
|
requestBody: {
|
|
1455
1604
|
kind: "Transaction";
|
|
@@ -1523,7 +1672,6 @@ export type ListTransfersResponse = {
|
|
|
1523
1672
|
requester: {
|
|
1524
1673
|
userId: string;
|
|
1525
1674
|
tokenId?: string | undefined;
|
|
1526
|
-
appId?: string | undefined;
|
|
1527
1675
|
};
|
|
1528
1676
|
requestBody: {
|
|
1529
1677
|
kind: "Native";
|
|
@@ -1533,6 +1681,19 @@ export type ListTransfersResponse = {
|
|
|
1533
1681
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
1534
1682
|
createDestinationAccount?: boolean | undefined;
|
|
1535
1683
|
externalId?: string | undefined;
|
|
1684
|
+
travelRule?: ({
|
|
1685
|
+
kind: "Notabene";
|
|
1686
|
+
beneficiaryVASPdid: string;
|
|
1687
|
+
beneficiaryProof?: {
|
|
1688
|
+
[x: string]: any;
|
|
1689
|
+
} | undefined;
|
|
1690
|
+
originator: {
|
|
1691
|
+
[x: string]: any;
|
|
1692
|
+
};
|
|
1693
|
+
beneficiary: {
|
|
1694
|
+
[x: string]: any;
|
|
1695
|
+
};
|
|
1696
|
+
}) | undefined;
|
|
1536
1697
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1537
1698
|
feeSponsorId?: string | undefined;
|
|
1538
1699
|
} | {
|
|
@@ -1541,6 +1702,19 @@ export type ListTransfersResponse = {
|
|
|
1541
1702
|
to: string;
|
|
1542
1703
|
amount: string;
|
|
1543
1704
|
externalId?: string | undefined;
|
|
1705
|
+
travelRule?: ({
|
|
1706
|
+
kind: "Notabene";
|
|
1707
|
+
beneficiaryVASPdid: string;
|
|
1708
|
+
beneficiaryProof?: {
|
|
1709
|
+
[x: string]: any;
|
|
1710
|
+
} | undefined;
|
|
1711
|
+
originator: {
|
|
1712
|
+
[x: string]: any;
|
|
1713
|
+
};
|
|
1714
|
+
beneficiary: {
|
|
1715
|
+
[x: string]: any;
|
|
1716
|
+
};
|
|
1717
|
+
}) | undefined;
|
|
1544
1718
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1545
1719
|
feeSponsorId?: string | undefined;
|
|
1546
1720
|
} | {
|
|
@@ -1549,6 +1723,19 @@ export type ListTransfersResponse = {
|
|
|
1549
1723
|
to: string;
|
|
1550
1724
|
amount: string;
|
|
1551
1725
|
externalId?: string | undefined;
|
|
1726
|
+
travelRule?: ({
|
|
1727
|
+
kind: "Notabene";
|
|
1728
|
+
beneficiaryVASPdid: string;
|
|
1729
|
+
beneficiaryProof?: {
|
|
1730
|
+
[x: string]: any;
|
|
1731
|
+
} | undefined;
|
|
1732
|
+
originator: {
|
|
1733
|
+
[x: string]: any;
|
|
1734
|
+
};
|
|
1735
|
+
beneficiary: {
|
|
1736
|
+
[x: string]: any;
|
|
1737
|
+
};
|
|
1738
|
+
}) | undefined;
|
|
1552
1739
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1553
1740
|
feeSponsorId?: string | undefined;
|
|
1554
1741
|
} | {
|
|
@@ -1557,6 +1744,19 @@ export type ListTransfersResponse = {
|
|
|
1557
1744
|
to: string;
|
|
1558
1745
|
amount: string;
|
|
1559
1746
|
externalId?: string | undefined;
|
|
1747
|
+
travelRule?: ({
|
|
1748
|
+
kind: "Notabene";
|
|
1749
|
+
beneficiaryVASPdid: string;
|
|
1750
|
+
beneficiaryProof?: {
|
|
1751
|
+
[x: string]: any;
|
|
1752
|
+
} | undefined;
|
|
1753
|
+
originator: {
|
|
1754
|
+
[x: string]: any;
|
|
1755
|
+
};
|
|
1756
|
+
beneficiary: {
|
|
1757
|
+
[x: string]: any;
|
|
1758
|
+
};
|
|
1759
|
+
}) | undefined;
|
|
1560
1760
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1561
1761
|
feeSponsorId?: string | undefined;
|
|
1562
1762
|
} | {
|
|
@@ -1566,6 +1766,19 @@ export type ListTransfersResponse = {
|
|
|
1566
1766
|
amount: string;
|
|
1567
1767
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
1568
1768
|
externalId?: string | undefined;
|
|
1769
|
+
travelRule?: ({
|
|
1770
|
+
kind: "Notabene";
|
|
1771
|
+
beneficiaryVASPdid: string;
|
|
1772
|
+
beneficiaryProof?: {
|
|
1773
|
+
[x: string]: any;
|
|
1774
|
+
} | undefined;
|
|
1775
|
+
originator: {
|
|
1776
|
+
[x: string]: any;
|
|
1777
|
+
};
|
|
1778
|
+
beneficiary: {
|
|
1779
|
+
[x: string]: any;
|
|
1780
|
+
};
|
|
1781
|
+
}) | undefined;
|
|
1569
1782
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1570
1783
|
feeSponsorId?: string | undefined;
|
|
1571
1784
|
} | {
|
|
@@ -1575,6 +1788,19 @@ export type ListTransfersResponse = {
|
|
|
1575
1788
|
tokenId: string;
|
|
1576
1789
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
1577
1790
|
externalId?: string | undefined;
|
|
1791
|
+
travelRule?: ({
|
|
1792
|
+
kind: "Notabene";
|
|
1793
|
+
beneficiaryVASPdid: string;
|
|
1794
|
+
beneficiaryProof?: {
|
|
1795
|
+
[x: string]: any;
|
|
1796
|
+
} | undefined;
|
|
1797
|
+
originator: {
|
|
1798
|
+
[x: string]: any;
|
|
1799
|
+
};
|
|
1800
|
+
beneficiary: {
|
|
1801
|
+
[x: string]: any;
|
|
1802
|
+
};
|
|
1803
|
+
}) | undefined;
|
|
1578
1804
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1579
1805
|
feeSponsorId?: string | undefined;
|
|
1580
1806
|
} | {
|
|
@@ -1585,6 +1811,19 @@ export type ListTransfersResponse = {
|
|
|
1585
1811
|
amount: string;
|
|
1586
1812
|
memo?: string | undefined;
|
|
1587
1813
|
externalId?: string | undefined;
|
|
1814
|
+
travelRule?: ({
|
|
1815
|
+
kind: "Notabene";
|
|
1816
|
+
beneficiaryVASPdid: string;
|
|
1817
|
+
beneficiaryProof?: {
|
|
1818
|
+
[x: string]: any;
|
|
1819
|
+
} | undefined;
|
|
1820
|
+
originator: {
|
|
1821
|
+
[x: string]: any;
|
|
1822
|
+
};
|
|
1823
|
+
beneficiary: {
|
|
1824
|
+
[x: string]: any;
|
|
1825
|
+
};
|
|
1826
|
+
}) | undefined;
|
|
1588
1827
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1589
1828
|
feeSponsorId?: string | undefined;
|
|
1590
1829
|
} | {
|
|
@@ -1594,6 +1833,19 @@ export type ListTransfersResponse = {
|
|
|
1594
1833
|
mint: string;
|
|
1595
1834
|
createDestinationAccount?: boolean | undefined;
|
|
1596
1835
|
externalId?: string | undefined;
|
|
1836
|
+
travelRule?: ({
|
|
1837
|
+
kind: "Notabene";
|
|
1838
|
+
beneficiaryVASPdid: string;
|
|
1839
|
+
beneficiaryProof?: {
|
|
1840
|
+
[x: string]: any;
|
|
1841
|
+
} | undefined;
|
|
1842
|
+
originator: {
|
|
1843
|
+
[x: string]: any;
|
|
1844
|
+
};
|
|
1845
|
+
beneficiary: {
|
|
1846
|
+
[x: string]: any;
|
|
1847
|
+
};
|
|
1848
|
+
}) | undefined;
|
|
1597
1849
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1598
1850
|
feeSponsorId?: string | undefined;
|
|
1599
1851
|
} | {
|
|
@@ -1603,6 +1855,19 @@ export type ListTransfersResponse = {
|
|
|
1603
1855
|
amount: string;
|
|
1604
1856
|
memo?: string | undefined;
|
|
1605
1857
|
externalId?: string | undefined;
|
|
1858
|
+
travelRule?: ({
|
|
1859
|
+
kind: "Notabene";
|
|
1860
|
+
beneficiaryVASPdid: string;
|
|
1861
|
+
beneficiaryProof?: {
|
|
1862
|
+
[x: string]: any;
|
|
1863
|
+
} | undefined;
|
|
1864
|
+
originator: {
|
|
1865
|
+
[x: string]: any;
|
|
1866
|
+
};
|
|
1867
|
+
beneficiary: {
|
|
1868
|
+
[x: string]: any;
|
|
1869
|
+
};
|
|
1870
|
+
}) | undefined;
|
|
1606
1871
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1607
1872
|
feeSponsorId?: string | undefined;
|
|
1608
1873
|
} | {
|
|
@@ -1611,6 +1876,19 @@ export type ListTransfersResponse = {
|
|
|
1611
1876
|
to: string;
|
|
1612
1877
|
amount: string;
|
|
1613
1878
|
externalId?: string | undefined;
|
|
1879
|
+
travelRule?: ({
|
|
1880
|
+
kind: "Notabene";
|
|
1881
|
+
beneficiaryVASPdid: string;
|
|
1882
|
+
beneficiaryProof?: {
|
|
1883
|
+
[x: string]: any;
|
|
1884
|
+
} | undefined;
|
|
1885
|
+
originator: {
|
|
1886
|
+
[x: string]: any;
|
|
1887
|
+
};
|
|
1888
|
+
beneficiary: {
|
|
1889
|
+
[x: string]: any;
|
|
1890
|
+
};
|
|
1891
|
+
}) | undefined;
|
|
1614
1892
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1615
1893
|
feeSponsorId?: string | undefined;
|
|
1616
1894
|
} | {
|
|
@@ -1619,6 +1897,19 @@ export type ListTransfersResponse = {
|
|
|
1619
1897
|
to: string;
|
|
1620
1898
|
amount: string;
|
|
1621
1899
|
externalId?: string | undefined;
|
|
1900
|
+
travelRule?: ({
|
|
1901
|
+
kind: "Notabene";
|
|
1902
|
+
beneficiaryVASPdid: string;
|
|
1903
|
+
beneficiaryProof?: {
|
|
1904
|
+
[x: string]: any;
|
|
1905
|
+
} | undefined;
|
|
1906
|
+
originator: {
|
|
1907
|
+
[x: string]: any;
|
|
1908
|
+
};
|
|
1909
|
+
beneficiary: {
|
|
1910
|
+
[x: string]: any;
|
|
1911
|
+
};
|
|
1912
|
+
}) | undefined;
|
|
1622
1913
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1623
1914
|
feeSponsorId?: string | undefined;
|
|
1624
1915
|
} | {
|
|
@@ -1627,6 +1918,19 @@ export type ListTransfersResponse = {
|
|
|
1627
1918
|
to: string;
|
|
1628
1919
|
tokenId: string;
|
|
1629
1920
|
externalId?: string | undefined;
|
|
1921
|
+
travelRule?: ({
|
|
1922
|
+
kind: "Notabene";
|
|
1923
|
+
beneficiaryVASPdid: string;
|
|
1924
|
+
beneficiaryProof?: {
|
|
1925
|
+
[x: string]: any;
|
|
1926
|
+
} | undefined;
|
|
1927
|
+
originator: {
|
|
1928
|
+
[x: string]: any;
|
|
1929
|
+
};
|
|
1930
|
+
beneficiary: {
|
|
1931
|
+
[x: string]: any;
|
|
1932
|
+
};
|
|
1933
|
+
}) | undefined;
|
|
1630
1934
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1631
1935
|
feeSponsorId?: string | undefined;
|
|
1632
1936
|
};
|
|
@@ -1710,6 +2014,19 @@ export type TransferAssetBody = {
|
|
|
1710
2014
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
1711
2015
|
createDestinationAccount?: boolean | undefined;
|
|
1712
2016
|
externalId?: string | undefined;
|
|
2017
|
+
travelRule?: ({
|
|
2018
|
+
kind: "Notabene";
|
|
2019
|
+
beneficiaryVASPdid: string;
|
|
2020
|
+
beneficiaryProof?: {
|
|
2021
|
+
[x: string]: any;
|
|
2022
|
+
} | undefined;
|
|
2023
|
+
originator: {
|
|
2024
|
+
[x: string]: any;
|
|
2025
|
+
};
|
|
2026
|
+
beneficiary: {
|
|
2027
|
+
[x: string]: any;
|
|
2028
|
+
};
|
|
2029
|
+
}) | undefined;
|
|
1713
2030
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1714
2031
|
feeSponsorId?: string | undefined;
|
|
1715
2032
|
} | {
|
|
@@ -1718,6 +2035,19 @@ export type TransferAssetBody = {
|
|
|
1718
2035
|
to: string;
|
|
1719
2036
|
amount: string;
|
|
1720
2037
|
externalId?: string | undefined;
|
|
2038
|
+
travelRule?: ({
|
|
2039
|
+
kind: "Notabene";
|
|
2040
|
+
beneficiaryVASPdid: string;
|
|
2041
|
+
beneficiaryProof?: {
|
|
2042
|
+
[x: string]: any;
|
|
2043
|
+
} | undefined;
|
|
2044
|
+
originator: {
|
|
2045
|
+
[x: string]: any;
|
|
2046
|
+
};
|
|
2047
|
+
beneficiary: {
|
|
2048
|
+
[x: string]: any;
|
|
2049
|
+
};
|
|
2050
|
+
}) | undefined;
|
|
1721
2051
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1722
2052
|
feeSponsorId?: string | undefined;
|
|
1723
2053
|
} | {
|
|
@@ -1726,6 +2056,19 @@ export type TransferAssetBody = {
|
|
|
1726
2056
|
to: string;
|
|
1727
2057
|
amount: string;
|
|
1728
2058
|
externalId?: string | undefined;
|
|
2059
|
+
travelRule?: ({
|
|
2060
|
+
kind: "Notabene";
|
|
2061
|
+
beneficiaryVASPdid: string;
|
|
2062
|
+
beneficiaryProof?: {
|
|
2063
|
+
[x: string]: any;
|
|
2064
|
+
} | undefined;
|
|
2065
|
+
originator: {
|
|
2066
|
+
[x: string]: any;
|
|
2067
|
+
};
|
|
2068
|
+
beneficiary: {
|
|
2069
|
+
[x: string]: any;
|
|
2070
|
+
};
|
|
2071
|
+
}) | undefined;
|
|
1729
2072
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1730
2073
|
feeSponsorId?: string | undefined;
|
|
1731
2074
|
} | {
|
|
@@ -1734,6 +2077,19 @@ export type TransferAssetBody = {
|
|
|
1734
2077
|
to: string;
|
|
1735
2078
|
amount: string;
|
|
1736
2079
|
externalId?: string | undefined;
|
|
2080
|
+
travelRule?: ({
|
|
2081
|
+
kind: "Notabene";
|
|
2082
|
+
beneficiaryVASPdid: string;
|
|
2083
|
+
beneficiaryProof?: {
|
|
2084
|
+
[x: string]: any;
|
|
2085
|
+
} | undefined;
|
|
2086
|
+
originator: {
|
|
2087
|
+
[x: string]: any;
|
|
2088
|
+
};
|
|
2089
|
+
beneficiary: {
|
|
2090
|
+
[x: string]: any;
|
|
2091
|
+
};
|
|
2092
|
+
}) | undefined;
|
|
1737
2093
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1738
2094
|
feeSponsorId?: string | undefined;
|
|
1739
2095
|
} | {
|
|
@@ -1743,6 +2099,19 @@ export type TransferAssetBody = {
|
|
|
1743
2099
|
amount: string;
|
|
1744
2100
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
1745
2101
|
externalId?: string | undefined;
|
|
2102
|
+
travelRule?: ({
|
|
2103
|
+
kind: "Notabene";
|
|
2104
|
+
beneficiaryVASPdid: string;
|
|
2105
|
+
beneficiaryProof?: {
|
|
2106
|
+
[x: string]: any;
|
|
2107
|
+
} | undefined;
|
|
2108
|
+
originator: {
|
|
2109
|
+
[x: string]: any;
|
|
2110
|
+
};
|
|
2111
|
+
beneficiary: {
|
|
2112
|
+
[x: string]: any;
|
|
2113
|
+
};
|
|
2114
|
+
}) | undefined;
|
|
1746
2115
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1747
2116
|
feeSponsorId?: string | undefined;
|
|
1748
2117
|
} | {
|
|
@@ -1752,6 +2121,19 @@ export type TransferAssetBody = {
|
|
|
1752
2121
|
tokenId: string;
|
|
1753
2122
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
1754
2123
|
externalId?: string | undefined;
|
|
2124
|
+
travelRule?: ({
|
|
2125
|
+
kind: "Notabene";
|
|
2126
|
+
beneficiaryVASPdid: string;
|
|
2127
|
+
beneficiaryProof?: {
|
|
2128
|
+
[x: string]: any;
|
|
2129
|
+
} | undefined;
|
|
2130
|
+
originator: {
|
|
2131
|
+
[x: string]: any;
|
|
2132
|
+
};
|
|
2133
|
+
beneficiary: {
|
|
2134
|
+
[x: string]: any;
|
|
2135
|
+
};
|
|
2136
|
+
}) | undefined;
|
|
1755
2137
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1756
2138
|
feeSponsorId?: string | undefined;
|
|
1757
2139
|
} | {
|
|
@@ -1762,6 +2144,19 @@ export type TransferAssetBody = {
|
|
|
1762
2144
|
amount: string;
|
|
1763
2145
|
memo?: string | undefined;
|
|
1764
2146
|
externalId?: string | undefined;
|
|
2147
|
+
travelRule?: ({
|
|
2148
|
+
kind: "Notabene";
|
|
2149
|
+
beneficiaryVASPdid: string;
|
|
2150
|
+
beneficiaryProof?: {
|
|
2151
|
+
[x: string]: any;
|
|
2152
|
+
} | undefined;
|
|
2153
|
+
originator: {
|
|
2154
|
+
[x: string]: any;
|
|
2155
|
+
};
|
|
2156
|
+
beneficiary: {
|
|
2157
|
+
[x: string]: any;
|
|
2158
|
+
};
|
|
2159
|
+
}) | undefined;
|
|
1765
2160
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1766
2161
|
feeSponsorId?: string | undefined;
|
|
1767
2162
|
} | {
|
|
@@ -1771,6 +2166,19 @@ export type TransferAssetBody = {
|
|
|
1771
2166
|
mint: string;
|
|
1772
2167
|
createDestinationAccount?: boolean | undefined;
|
|
1773
2168
|
externalId?: string | undefined;
|
|
2169
|
+
travelRule?: ({
|
|
2170
|
+
kind: "Notabene";
|
|
2171
|
+
beneficiaryVASPdid: string;
|
|
2172
|
+
beneficiaryProof?: {
|
|
2173
|
+
[x: string]: any;
|
|
2174
|
+
} | undefined;
|
|
2175
|
+
originator: {
|
|
2176
|
+
[x: string]: any;
|
|
2177
|
+
};
|
|
2178
|
+
beneficiary: {
|
|
2179
|
+
[x: string]: any;
|
|
2180
|
+
};
|
|
2181
|
+
}) | undefined;
|
|
1774
2182
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1775
2183
|
feeSponsorId?: string | undefined;
|
|
1776
2184
|
} | {
|
|
@@ -1780,6 +2188,19 @@ export type TransferAssetBody = {
|
|
|
1780
2188
|
amount: string;
|
|
1781
2189
|
memo?: string | undefined;
|
|
1782
2190
|
externalId?: string | undefined;
|
|
2191
|
+
travelRule?: ({
|
|
2192
|
+
kind: "Notabene";
|
|
2193
|
+
beneficiaryVASPdid: string;
|
|
2194
|
+
beneficiaryProof?: {
|
|
2195
|
+
[x: string]: any;
|
|
2196
|
+
} | undefined;
|
|
2197
|
+
originator: {
|
|
2198
|
+
[x: string]: any;
|
|
2199
|
+
};
|
|
2200
|
+
beneficiary: {
|
|
2201
|
+
[x: string]: any;
|
|
2202
|
+
};
|
|
2203
|
+
}) | undefined;
|
|
1783
2204
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1784
2205
|
feeSponsorId?: string | undefined;
|
|
1785
2206
|
} | {
|
|
@@ -1788,6 +2209,19 @@ export type TransferAssetBody = {
|
|
|
1788
2209
|
to: string;
|
|
1789
2210
|
amount: string;
|
|
1790
2211
|
externalId?: string | undefined;
|
|
2212
|
+
travelRule?: ({
|
|
2213
|
+
kind: "Notabene";
|
|
2214
|
+
beneficiaryVASPdid: string;
|
|
2215
|
+
beneficiaryProof?: {
|
|
2216
|
+
[x: string]: any;
|
|
2217
|
+
} | undefined;
|
|
2218
|
+
originator: {
|
|
2219
|
+
[x: string]: any;
|
|
2220
|
+
};
|
|
2221
|
+
beneficiary: {
|
|
2222
|
+
[x: string]: any;
|
|
2223
|
+
};
|
|
2224
|
+
}) | undefined;
|
|
1791
2225
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1792
2226
|
feeSponsorId?: string | undefined;
|
|
1793
2227
|
} | {
|
|
@@ -1796,6 +2230,19 @@ export type TransferAssetBody = {
|
|
|
1796
2230
|
to: string;
|
|
1797
2231
|
amount: string;
|
|
1798
2232
|
externalId?: string | undefined;
|
|
2233
|
+
travelRule?: ({
|
|
2234
|
+
kind: "Notabene";
|
|
2235
|
+
beneficiaryVASPdid: string;
|
|
2236
|
+
beneficiaryProof?: {
|
|
2237
|
+
[x: string]: any;
|
|
2238
|
+
} | undefined;
|
|
2239
|
+
originator: {
|
|
2240
|
+
[x: string]: any;
|
|
2241
|
+
};
|
|
2242
|
+
beneficiary: {
|
|
2243
|
+
[x: string]: any;
|
|
2244
|
+
};
|
|
2245
|
+
}) | undefined;
|
|
1799
2246
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1800
2247
|
feeSponsorId?: string | undefined;
|
|
1801
2248
|
} | {
|
|
@@ -1804,6 +2251,19 @@ export type TransferAssetBody = {
|
|
|
1804
2251
|
to: string;
|
|
1805
2252
|
tokenId: string;
|
|
1806
2253
|
externalId?: string | undefined;
|
|
2254
|
+
travelRule?: ({
|
|
2255
|
+
kind: "Notabene";
|
|
2256
|
+
beneficiaryVASPdid: string;
|
|
2257
|
+
beneficiaryProof?: {
|
|
2258
|
+
[x: string]: any;
|
|
2259
|
+
} | undefined;
|
|
2260
|
+
originator: {
|
|
2261
|
+
[x: string]: any;
|
|
2262
|
+
};
|
|
2263
|
+
beneficiary: {
|
|
2264
|
+
[x: string]: any;
|
|
2265
|
+
};
|
|
2266
|
+
}) | undefined;
|
|
1807
2267
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1808
2268
|
feeSponsorId?: string | undefined;
|
|
1809
2269
|
};
|
|
@@ -1817,7 +2277,6 @@ export type TransferAssetResponse = {
|
|
|
1817
2277
|
requester: {
|
|
1818
2278
|
userId: string;
|
|
1819
2279
|
tokenId?: string | undefined;
|
|
1820
|
-
appId?: string | undefined;
|
|
1821
2280
|
};
|
|
1822
2281
|
requestBody: {
|
|
1823
2282
|
kind: "Native";
|
|
@@ -1827,6 +2286,19 @@ export type TransferAssetResponse = {
|
|
|
1827
2286
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
1828
2287
|
createDestinationAccount?: boolean | undefined;
|
|
1829
2288
|
externalId?: string | undefined;
|
|
2289
|
+
travelRule?: ({
|
|
2290
|
+
kind: "Notabene";
|
|
2291
|
+
beneficiaryVASPdid: string;
|
|
2292
|
+
beneficiaryProof?: {
|
|
2293
|
+
[x: string]: any;
|
|
2294
|
+
} | undefined;
|
|
2295
|
+
originator: {
|
|
2296
|
+
[x: string]: any;
|
|
2297
|
+
};
|
|
2298
|
+
beneficiary: {
|
|
2299
|
+
[x: string]: any;
|
|
2300
|
+
};
|
|
2301
|
+
}) | undefined;
|
|
1830
2302
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1831
2303
|
feeSponsorId?: string | undefined;
|
|
1832
2304
|
} | {
|
|
@@ -1835,6 +2307,19 @@ export type TransferAssetResponse = {
|
|
|
1835
2307
|
to: string;
|
|
1836
2308
|
amount: string;
|
|
1837
2309
|
externalId?: string | undefined;
|
|
2310
|
+
travelRule?: ({
|
|
2311
|
+
kind: "Notabene";
|
|
2312
|
+
beneficiaryVASPdid: string;
|
|
2313
|
+
beneficiaryProof?: {
|
|
2314
|
+
[x: string]: any;
|
|
2315
|
+
} | undefined;
|
|
2316
|
+
originator: {
|
|
2317
|
+
[x: string]: any;
|
|
2318
|
+
};
|
|
2319
|
+
beneficiary: {
|
|
2320
|
+
[x: string]: any;
|
|
2321
|
+
};
|
|
2322
|
+
}) | undefined;
|
|
1838
2323
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1839
2324
|
feeSponsorId?: string | undefined;
|
|
1840
2325
|
} | {
|
|
@@ -1843,6 +2328,19 @@ export type TransferAssetResponse = {
|
|
|
1843
2328
|
to: string;
|
|
1844
2329
|
amount: string;
|
|
1845
2330
|
externalId?: string | undefined;
|
|
2331
|
+
travelRule?: ({
|
|
2332
|
+
kind: "Notabene";
|
|
2333
|
+
beneficiaryVASPdid: string;
|
|
2334
|
+
beneficiaryProof?: {
|
|
2335
|
+
[x: string]: any;
|
|
2336
|
+
} | undefined;
|
|
2337
|
+
originator: {
|
|
2338
|
+
[x: string]: any;
|
|
2339
|
+
};
|
|
2340
|
+
beneficiary: {
|
|
2341
|
+
[x: string]: any;
|
|
2342
|
+
};
|
|
2343
|
+
}) | undefined;
|
|
1846
2344
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1847
2345
|
feeSponsorId?: string | undefined;
|
|
1848
2346
|
} | {
|
|
@@ -1851,6 +2349,19 @@ export type TransferAssetResponse = {
|
|
|
1851
2349
|
to: string;
|
|
1852
2350
|
amount: string;
|
|
1853
2351
|
externalId?: string | undefined;
|
|
2352
|
+
travelRule?: ({
|
|
2353
|
+
kind: "Notabene";
|
|
2354
|
+
beneficiaryVASPdid: string;
|
|
2355
|
+
beneficiaryProof?: {
|
|
2356
|
+
[x: string]: any;
|
|
2357
|
+
} | undefined;
|
|
2358
|
+
originator: {
|
|
2359
|
+
[x: string]: any;
|
|
2360
|
+
};
|
|
2361
|
+
beneficiary: {
|
|
2362
|
+
[x: string]: any;
|
|
2363
|
+
};
|
|
2364
|
+
}) | undefined;
|
|
1854
2365
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1855
2366
|
feeSponsorId?: string | undefined;
|
|
1856
2367
|
} | {
|
|
@@ -1860,6 +2371,19 @@ export type TransferAssetResponse = {
|
|
|
1860
2371
|
amount: string;
|
|
1861
2372
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
1862
2373
|
externalId?: string | undefined;
|
|
2374
|
+
travelRule?: ({
|
|
2375
|
+
kind: "Notabene";
|
|
2376
|
+
beneficiaryVASPdid: string;
|
|
2377
|
+
beneficiaryProof?: {
|
|
2378
|
+
[x: string]: any;
|
|
2379
|
+
} | undefined;
|
|
2380
|
+
originator: {
|
|
2381
|
+
[x: string]: any;
|
|
2382
|
+
};
|
|
2383
|
+
beneficiary: {
|
|
2384
|
+
[x: string]: any;
|
|
2385
|
+
};
|
|
2386
|
+
}) | undefined;
|
|
1863
2387
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1864
2388
|
feeSponsorId?: string | undefined;
|
|
1865
2389
|
} | {
|
|
@@ -1869,6 +2393,19 @@ export type TransferAssetResponse = {
|
|
|
1869
2393
|
tokenId: string;
|
|
1870
2394
|
priority?: ("Slow" | "Standard" | "Fast") | undefined;
|
|
1871
2395
|
externalId?: string | undefined;
|
|
2396
|
+
travelRule?: ({
|
|
2397
|
+
kind: "Notabene";
|
|
2398
|
+
beneficiaryVASPdid: string;
|
|
2399
|
+
beneficiaryProof?: {
|
|
2400
|
+
[x: string]: any;
|
|
2401
|
+
} | undefined;
|
|
2402
|
+
originator: {
|
|
2403
|
+
[x: string]: any;
|
|
2404
|
+
};
|
|
2405
|
+
beneficiary: {
|
|
2406
|
+
[x: string]: any;
|
|
2407
|
+
};
|
|
2408
|
+
}) | undefined;
|
|
1872
2409
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1873
2410
|
feeSponsorId?: string | undefined;
|
|
1874
2411
|
} | {
|
|
@@ -1879,6 +2416,19 @@ export type TransferAssetResponse = {
|
|
|
1879
2416
|
amount: string;
|
|
1880
2417
|
memo?: string | undefined;
|
|
1881
2418
|
externalId?: string | undefined;
|
|
2419
|
+
travelRule?: ({
|
|
2420
|
+
kind: "Notabene";
|
|
2421
|
+
beneficiaryVASPdid: string;
|
|
2422
|
+
beneficiaryProof?: {
|
|
2423
|
+
[x: string]: any;
|
|
2424
|
+
} | undefined;
|
|
2425
|
+
originator: {
|
|
2426
|
+
[x: string]: any;
|
|
2427
|
+
};
|
|
2428
|
+
beneficiary: {
|
|
2429
|
+
[x: string]: any;
|
|
2430
|
+
};
|
|
2431
|
+
}) | undefined;
|
|
1882
2432
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1883
2433
|
feeSponsorId?: string | undefined;
|
|
1884
2434
|
} | {
|
|
@@ -1888,6 +2438,19 @@ export type TransferAssetResponse = {
|
|
|
1888
2438
|
mint: string;
|
|
1889
2439
|
createDestinationAccount?: boolean | undefined;
|
|
1890
2440
|
externalId?: string | undefined;
|
|
2441
|
+
travelRule?: ({
|
|
2442
|
+
kind: "Notabene";
|
|
2443
|
+
beneficiaryVASPdid: string;
|
|
2444
|
+
beneficiaryProof?: {
|
|
2445
|
+
[x: string]: any;
|
|
2446
|
+
} | undefined;
|
|
2447
|
+
originator: {
|
|
2448
|
+
[x: string]: any;
|
|
2449
|
+
};
|
|
2450
|
+
beneficiary: {
|
|
2451
|
+
[x: string]: any;
|
|
2452
|
+
};
|
|
2453
|
+
}) | undefined;
|
|
1891
2454
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1892
2455
|
feeSponsorId?: string | undefined;
|
|
1893
2456
|
} | {
|
|
@@ -1897,6 +2460,19 @@ export type TransferAssetResponse = {
|
|
|
1897
2460
|
amount: string;
|
|
1898
2461
|
memo?: string | undefined;
|
|
1899
2462
|
externalId?: string | undefined;
|
|
2463
|
+
travelRule?: ({
|
|
2464
|
+
kind: "Notabene";
|
|
2465
|
+
beneficiaryVASPdid: string;
|
|
2466
|
+
beneficiaryProof?: {
|
|
2467
|
+
[x: string]: any;
|
|
2468
|
+
} | undefined;
|
|
2469
|
+
originator: {
|
|
2470
|
+
[x: string]: any;
|
|
2471
|
+
};
|
|
2472
|
+
beneficiary: {
|
|
2473
|
+
[x: string]: any;
|
|
2474
|
+
};
|
|
2475
|
+
}) | undefined;
|
|
1900
2476
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1901
2477
|
feeSponsorId?: string | undefined;
|
|
1902
2478
|
} | {
|
|
@@ -1905,6 +2481,19 @@ export type TransferAssetResponse = {
|
|
|
1905
2481
|
to: string;
|
|
1906
2482
|
amount: string;
|
|
1907
2483
|
externalId?: string | undefined;
|
|
2484
|
+
travelRule?: ({
|
|
2485
|
+
kind: "Notabene";
|
|
2486
|
+
beneficiaryVASPdid: string;
|
|
2487
|
+
beneficiaryProof?: {
|
|
2488
|
+
[x: string]: any;
|
|
2489
|
+
} | undefined;
|
|
2490
|
+
originator: {
|
|
2491
|
+
[x: string]: any;
|
|
2492
|
+
};
|
|
2493
|
+
beneficiary: {
|
|
2494
|
+
[x: string]: any;
|
|
2495
|
+
};
|
|
2496
|
+
}) | undefined;
|
|
1908
2497
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1909
2498
|
feeSponsorId?: string | undefined;
|
|
1910
2499
|
} | {
|
|
@@ -1913,6 +2502,19 @@ export type TransferAssetResponse = {
|
|
|
1913
2502
|
to: string;
|
|
1914
2503
|
amount: string;
|
|
1915
2504
|
externalId?: string | undefined;
|
|
2505
|
+
travelRule?: ({
|
|
2506
|
+
kind: "Notabene";
|
|
2507
|
+
beneficiaryVASPdid: string;
|
|
2508
|
+
beneficiaryProof?: {
|
|
2509
|
+
[x: string]: any;
|
|
2510
|
+
} | undefined;
|
|
2511
|
+
originator: {
|
|
2512
|
+
[x: string]: any;
|
|
2513
|
+
};
|
|
2514
|
+
beneficiary: {
|
|
2515
|
+
[x: string]: any;
|
|
2516
|
+
};
|
|
2517
|
+
}) | undefined;
|
|
1916
2518
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1917
2519
|
feeSponsorId?: string | undefined;
|
|
1918
2520
|
} | {
|
|
@@ -1921,6 +2523,19 @@ export type TransferAssetResponse = {
|
|
|
1921
2523
|
to: string;
|
|
1922
2524
|
tokenId: string;
|
|
1923
2525
|
externalId?: string | undefined;
|
|
2526
|
+
travelRule?: ({
|
|
2527
|
+
kind: "Notabene";
|
|
2528
|
+
beneficiaryVASPdid: string;
|
|
2529
|
+
beneficiaryProof?: {
|
|
2530
|
+
[x: string]: any;
|
|
2531
|
+
} | undefined;
|
|
2532
|
+
originator: {
|
|
2533
|
+
[x: string]: any;
|
|
2534
|
+
};
|
|
2535
|
+
beneficiary: {
|
|
2536
|
+
[x: string]: any;
|
|
2537
|
+
};
|
|
2538
|
+
}) | undefined;
|
|
1924
2539
|
/** Id of the fee sponsor that will be used to pay for your transfer fee, it might not be available for all blockchains */
|
|
1925
2540
|
feeSponsorId?: string | undefined;
|
|
1926
2541
|
};
|