@airgap/module-kit 0.13.13 → 0.13.14-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +2 -1
- package/index.js +22 -1
- package/index.js.map +1 -1
- package/internal/index.d.ts +4 -1
- package/internal/index.js +4 -0
- package/internal/index.js.map +1 -1
- package/internal/{AirGapDelegateProtocol.d.ts → protocol/AirGapDelegateProtocol.d.ts} +2 -2
- package/internal/protocol/AirGapDelegateProtocol.js.map +1 -0
- package/internal/utils/protocol.d.ts +5 -0
- package/internal/utils/protocol.js +24 -0
- package/internal/utils/protocol.js.map +1 -0
- package/module/module.d.ts +8 -5
- package/package.json +3 -3
- package/protocol/extensions/address/MultiAddressPublicKeyExtension.d.ts +1 -0
- package/types/protocol.d.ts +1 -0
- package/utils/protocol.d.ts +33 -11
- package/utils/protocol.js +42 -41
- package/utils/protocol.js.map +1 -1
- package/internal/AirGapDelegateProtocol.js.map +0 -1
- /package/internal/{AirGapDelegateProtocol.js → protocol/AirGapDelegateProtocol.js} +0 -0
package/index.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ import { implementsInterface, Schema } from './utils/interface';
|
|
|
44
44
|
import { isAnyKey, isExtendedPublicKey, isExtendedSecretKey, isPublicKey, isSecretKey } from './utils/key';
|
|
45
45
|
import { createSupportedProtocols } from './utils/module';
|
|
46
46
|
import { normalizeToUndefined } from './utils/normalize';
|
|
47
|
-
import { canEncryptAES, canEncryptAsymmetric, canFetchDataForAddress, canFetchDataForMultipleAddresses, canSignMessage, hasConfigurableContract, hasConfigurableTransactionInjector, hasMultiAddressPublicKeys, isBip32Protocol, isMultiTokenSubProtocol, isOfflineProtocol, isOnlineProtocol, isSingleTokenSubProtocol, isSubProtocol, isTransactionStatusChecker, protocolNetworkIdentifier } from './utils/protocol';
|
|
47
|
+
import { aesEncryptionSchema, asymmetricEncryptionBaseSchema, asymmetricEncryptionOfflineSchema, baseProtocolSchema, bip32BaseProtocolSchema, bip32OfflineProtocolSchema, bip32OnlineProtocolSchema, canEncryptAES, canEncryptAsymmetric, canFetchDataForAddress, canFetchDataForMultipleAddresses, canSignMessage, configurableContractProtocolSchema, configurableTransactionInjectorSchema, fetchDataForAddressProtocolSchema, fetchDataForMultipleAddressesProtocolSchema, hasConfigurableContract, hasConfigurableTransactionInjector, hasMultiAddressPublicKeys, isBip32Protocol, isMultiTokenSubProtocol, isOfflineProtocol, isOnlineProtocol, isSingleTokenSubProtocol, isSubProtocol, isTransactionStatusChecker, multiAddressPublicKeyProtocolSchema, multiTokenSubProtocolBaseSchema, offlineProtocolSchema, onlineProtocolSchema, protocolNetworkIdentifier, signMessageBaseSchema, signMessageOfflineSchema, singleTokenSubProtocolSchema, subProtocolSchema, transactionStatusCheckerSchema } from './utils/protocol';
|
|
48
48
|
export { AirGapBlockExplorer, BlockExplorerMetadata };
|
|
49
49
|
export { newSuccessUIAlert, newInfoUIAlert, newWarningUIAlert, newErrorUIAlert, newPlainUIText, newAmount, newSecretKey, newExtendedSecretKey, newPublicKey, newExtendedPublicKey, newSignature, newUnsignedTransaction, newSignedTransaction };
|
|
50
50
|
export { AirGapModule, ModuleNetworkRegistry, ProtocolConfiguration, OfflineProtocolConfiguration, OnlineProtocolConfiguration, FullProtocolConfiguration };
|
|
@@ -53,3 +53,4 @@ export { AirGapV3SerializerCompanion, V3SchemaConfiguration };
|
|
|
53
53
|
export { AirGapInterface };
|
|
54
54
|
export { AirGapUIAction, AirGapUIAlert, AirGapUIText, Address, AddressCursor, AddressWithCursor, Amount, Balance, MultiTokenBalanceConfiguration, BytesStringFormat, BytesString, HexString, CryptoAlgorithm, CryptoSecretType, Ed25519CryptoConfiguration, Sr25519CryptoConfiguration, Secp256K1CryptoConfiguration, SaplingCryptoConfiguration, CryptoConfiguration, CryptoDerivative, FeeDefaults, FeeEstimation, KeyType, SecretKey, ExtendedSecretKey, PublicKey, ExtendedPublicKey, KeyPair, ExtendedKeyPair, Signature, TransactionType, UnsignedTransaction, SignedTransaction, AirGapTransaction, TransactionCursor, AirGapTransactionsWithCursor, TransactionDetails, TransactionConfiguration, AirGapTransactionStatus, RecursivePartial };
|
|
55
55
|
export { isAmount, Schema, implementsInterface, isAnyKey, isSecretKey, isExtendedSecretKey, isPublicKey, isExtendedPublicKey, createSupportedProtocols, isOfflineProtocol, isOnlineProtocol, isBip32Protocol, isSubProtocol, isSingleTokenSubProtocol, isMultiTokenSubProtocol, canFetchDataForAddress, canFetchDataForMultipleAddresses, hasMultiAddressPublicKeys, hasConfigurableContract, canEncryptAES, canEncryptAsymmetric, canSignMessage, hasConfigurableTransactionInjector, isTransactionStatusChecker, protocolNetworkIdentifier, normalizeToUndefined };
|
|
56
|
+
export { baseProtocolSchema, offlineProtocolSchema, onlineProtocolSchema, bip32BaseProtocolSchema, bip32OfflineProtocolSchema, bip32OnlineProtocolSchema, subProtocolSchema, singleTokenSubProtocolSchema, multiTokenSubProtocolBaseSchema, fetchDataForAddressProtocolSchema, fetchDataForMultipleAddressesProtocolSchema, multiAddressPublicKeyProtocolSchema, configurableContractProtocolSchema, aesEncryptionSchema, asymmetricEncryptionBaseSchema, asymmetricEncryptionOfflineSchema, signMessageBaseSchema, signMessageOfflineSchema, configurableTransactionInjectorSchema, transactionStatusCheckerSchema };
|
package/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.normalizeToUndefined = exports.protocolNetworkIdentifier = exports.isTransactionStatusChecker = exports.hasConfigurableTransactionInjector = exports.canSignMessage = exports.canEncryptAsymmetric = exports.canEncryptAES = exports.hasConfigurableContract = exports.hasMultiAddressPublicKeys = exports.canFetchDataForMultipleAddresses = exports.canFetchDataForAddress = exports.isMultiTokenSubProtocol = exports.isSingleTokenSubProtocol = exports.isSubProtocol = exports.isBip32Protocol = exports.isOnlineProtocol = exports.isOfflineProtocol = exports.createSupportedProtocols = exports.isExtendedPublicKey = exports.isPublicKey = exports.isExtendedSecretKey = exports.isSecretKey = exports.isAnyKey = exports.implementsInterface = exports.isAmount = exports.ModuleNetworkRegistry = exports.newSignedTransaction = exports.newUnsignedTransaction = exports.newSignature = exports.newExtendedPublicKey = exports.newPublicKey = exports.newExtendedSecretKey = exports.newSecretKey = exports.newAmount = exports.newPlainUIText = exports.newErrorUIAlert = exports.newWarningUIAlert = exports.newInfoUIAlert = exports.newSuccessUIAlert = void 0;
|
|
3
|
+
exports.fetchDataForMultipleAddressesProtocolSchema = exports.fetchDataForAddressProtocolSchema = exports.multiTokenSubProtocolBaseSchema = exports.singleTokenSubProtocolSchema = exports.subProtocolSchema = exports.bip32OnlineProtocolSchema = exports.bip32OfflineProtocolSchema = exports.bip32BaseProtocolSchema = exports.onlineProtocolSchema = exports.offlineProtocolSchema = exports.baseProtocolSchema = exports.normalizeToUndefined = exports.protocolNetworkIdentifier = exports.isTransactionStatusChecker = exports.hasConfigurableTransactionInjector = exports.canSignMessage = exports.canEncryptAsymmetric = exports.canEncryptAES = exports.hasConfigurableContract = exports.hasMultiAddressPublicKeys = exports.canFetchDataForMultipleAddresses = exports.canFetchDataForAddress = exports.isMultiTokenSubProtocol = exports.isSingleTokenSubProtocol = exports.isSubProtocol = exports.isBip32Protocol = exports.isOnlineProtocol = exports.isOfflineProtocol = exports.createSupportedProtocols = exports.isExtendedPublicKey = exports.isPublicKey = exports.isExtendedSecretKey = exports.isSecretKey = exports.isAnyKey = exports.implementsInterface = exports.isAmount = exports.ModuleNetworkRegistry = exports.newSignedTransaction = exports.newUnsignedTransaction = exports.newSignature = exports.newExtendedPublicKey = exports.newPublicKey = exports.newExtendedSecretKey = exports.newSecretKey = exports.newAmount = exports.newPlainUIText = exports.newErrorUIAlert = exports.newWarningUIAlert = exports.newInfoUIAlert = exports.newSuccessUIAlert = void 0;
|
|
4
|
+
exports.transactionStatusCheckerSchema = exports.configurableTransactionInjectorSchema = exports.signMessageOfflineSchema = exports.signMessageBaseSchema = exports.asymmetricEncryptionOfflineSchema = exports.asymmetricEncryptionBaseSchema = exports.aesEncryptionSchema = exports.configurableContractProtocolSchema = exports.multiAddressPublicKeyProtocolSchema = void 0;
|
|
4
5
|
var amount_1 = require("./factories/amount");
|
|
5
6
|
Object.defineProperty(exports, "newAmount", { enumerable: true, get: function () { return amount_1.newAmount; } });
|
|
6
7
|
var key_1 = require("./factories/key");
|
|
@@ -37,11 +38,22 @@ Object.defineProperty(exports, "createSupportedProtocols", { enumerable: true, g
|
|
|
37
38
|
var normalize_1 = require("./utils/normalize");
|
|
38
39
|
Object.defineProperty(exports, "normalizeToUndefined", { enumerable: true, get: function () { return normalize_1.normalizeToUndefined; } });
|
|
39
40
|
var protocol_1 = require("./utils/protocol");
|
|
41
|
+
Object.defineProperty(exports, "aesEncryptionSchema", { enumerable: true, get: function () { return protocol_1.aesEncryptionSchema; } });
|
|
42
|
+
Object.defineProperty(exports, "asymmetricEncryptionBaseSchema", { enumerable: true, get: function () { return protocol_1.asymmetricEncryptionBaseSchema; } });
|
|
43
|
+
Object.defineProperty(exports, "asymmetricEncryptionOfflineSchema", { enumerable: true, get: function () { return protocol_1.asymmetricEncryptionOfflineSchema; } });
|
|
44
|
+
Object.defineProperty(exports, "baseProtocolSchema", { enumerable: true, get: function () { return protocol_1.baseProtocolSchema; } });
|
|
45
|
+
Object.defineProperty(exports, "bip32BaseProtocolSchema", { enumerable: true, get: function () { return protocol_1.bip32BaseProtocolSchema; } });
|
|
46
|
+
Object.defineProperty(exports, "bip32OfflineProtocolSchema", { enumerable: true, get: function () { return protocol_1.bip32OfflineProtocolSchema; } });
|
|
47
|
+
Object.defineProperty(exports, "bip32OnlineProtocolSchema", { enumerable: true, get: function () { return protocol_1.bip32OnlineProtocolSchema; } });
|
|
40
48
|
Object.defineProperty(exports, "canEncryptAES", { enumerable: true, get: function () { return protocol_1.canEncryptAES; } });
|
|
41
49
|
Object.defineProperty(exports, "canEncryptAsymmetric", { enumerable: true, get: function () { return protocol_1.canEncryptAsymmetric; } });
|
|
42
50
|
Object.defineProperty(exports, "canFetchDataForAddress", { enumerable: true, get: function () { return protocol_1.canFetchDataForAddress; } });
|
|
43
51
|
Object.defineProperty(exports, "canFetchDataForMultipleAddresses", { enumerable: true, get: function () { return protocol_1.canFetchDataForMultipleAddresses; } });
|
|
44
52
|
Object.defineProperty(exports, "canSignMessage", { enumerable: true, get: function () { return protocol_1.canSignMessage; } });
|
|
53
|
+
Object.defineProperty(exports, "configurableContractProtocolSchema", { enumerable: true, get: function () { return protocol_1.configurableContractProtocolSchema; } });
|
|
54
|
+
Object.defineProperty(exports, "configurableTransactionInjectorSchema", { enumerable: true, get: function () { return protocol_1.configurableTransactionInjectorSchema; } });
|
|
55
|
+
Object.defineProperty(exports, "fetchDataForAddressProtocolSchema", { enumerable: true, get: function () { return protocol_1.fetchDataForAddressProtocolSchema; } });
|
|
56
|
+
Object.defineProperty(exports, "fetchDataForMultipleAddressesProtocolSchema", { enumerable: true, get: function () { return protocol_1.fetchDataForMultipleAddressesProtocolSchema; } });
|
|
45
57
|
Object.defineProperty(exports, "hasConfigurableContract", { enumerable: true, get: function () { return protocol_1.hasConfigurableContract; } });
|
|
46
58
|
Object.defineProperty(exports, "hasConfigurableTransactionInjector", { enumerable: true, get: function () { return protocol_1.hasConfigurableTransactionInjector; } });
|
|
47
59
|
Object.defineProperty(exports, "hasMultiAddressPublicKeys", { enumerable: true, get: function () { return protocol_1.hasMultiAddressPublicKeys; } });
|
|
@@ -52,5 +64,14 @@ Object.defineProperty(exports, "isOnlineProtocol", { enumerable: true, get: func
|
|
|
52
64
|
Object.defineProperty(exports, "isSingleTokenSubProtocol", { enumerable: true, get: function () { return protocol_1.isSingleTokenSubProtocol; } });
|
|
53
65
|
Object.defineProperty(exports, "isSubProtocol", { enumerable: true, get: function () { return protocol_1.isSubProtocol; } });
|
|
54
66
|
Object.defineProperty(exports, "isTransactionStatusChecker", { enumerable: true, get: function () { return protocol_1.isTransactionStatusChecker; } });
|
|
67
|
+
Object.defineProperty(exports, "multiAddressPublicKeyProtocolSchema", { enumerable: true, get: function () { return protocol_1.multiAddressPublicKeyProtocolSchema; } });
|
|
68
|
+
Object.defineProperty(exports, "multiTokenSubProtocolBaseSchema", { enumerable: true, get: function () { return protocol_1.multiTokenSubProtocolBaseSchema; } });
|
|
69
|
+
Object.defineProperty(exports, "offlineProtocolSchema", { enumerable: true, get: function () { return protocol_1.offlineProtocolSchema; } });
|
|
70
|
+
Object.defineProperty(exports, "onlineProtocolSchema", { enumerable: true, get: function () { return protocol_1.onlineProtocolSchema; } });
|
|
55
71
|
Object.defineProperty(exports, "protocolNetworkIdentifier", { enumerable: true, get: function () { return protocol_1.protocolNetworkIdentifier; } });
|
|
72
|
+
Object.defineProperty(exports, "signMessageBaseSchema", { enumerable: true, get: function () { return protocol_1.signMessageBaseSchema; } });
|
|
73
|
+
Object.defineProperty(exports, "signMessageOfflineSchema", { enumerable: true, get: function () { return protocol_1.signMessageOfflineSchema; } });
|
|
74
|
+
Object.defineProperty(exports, "singleTokenSubProtocolSchema", { enumerable: true, get: function () { return protocol_1.singleTokenSubProtocolSchema; } });
|
|
75
|
+
Object.defineProperty(exports, "subProtocolSchema", { enumerable: true, get: function () { return protocol_1.subProtocolSchema; } });
|
|
76
|
+
Object.defineProperty(exports, "transactionStatusCheckerSchema", { enumerable: true, get: function () { return protocol_1.transactionStatusCheckerSchema; } });
|
|
56
77
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AACA,6CAA8C;AAoI5C,0FApIO,kBAAS,OAoIP;AAnIX,uCAAwG;AAuItG,qGAvIO,0BAAoB,OAuIP;AAFpB,qGArI6B,0BAAoB,OAqI7B;AACpB,6FAtImD,kBAAY,OAsInD;AAFZ,6FApIiE,kBAAY,OAoIjE;AAnId,mDAAoD;AAuIlD,6FAvIO,wBAAY,OAuIP;AAtId,uDAAsF;AAwIpF,qGAxIO,kCAAoB,OAwIP;AADpB,uGAvI6B,oCAAsB,OAuI7B;AAtIxB,8CAA4G;AA8H1G,gGA9HO,uBAAe,OA8HP;AAFf,+FA5HwB,sBAAc,OA4HxB;AADd,kGA3HwC,yBAAiB,OA2HxC;AAEjB,kGA7H2D,yBAAiB,OA6H3D;AA5HnB,4CAAoD;AA8HlD,+FA9HO,qBAAc,OA8HP;AA5HhB,4EAAwE;AA2ItE,sGA3IO,+CAAqB,OA2IP;AAtEvB,yCAAyC;AA0KvC,yFA1KO,iBAAQ,OA0KP;AAzKV,+CAA+D;AA2K7D,oGA3KO,+BAAmB,OA2KP;AA1KrB,mCAA0G;AA2KxG,yFA3KO,cAAQ,OA2KP;AAIR,oGA/KiB,yBAAmB,OA+KjB;AAFnB,oGA7KsC,yBAAmB,OA6KtC;AACnB,4FA9K2D,iBAAW,OA8K3D;AAFX,4FA5KwE,iBAAW,OA4KxE;AA3Kb,yCAAyD;AA+KvD,yGA/KO,iCAAwB,OA+KP;AA9K1B,+CAAwD;AA+LtD,qGA/LO,gCAAoB,OA+LP;AA9LtB,6CAqCyB;AA4KvB,oGAhNA,8BAAmB,OAgNA;AACnB,+GAhNA,yCAA8B,OAgNA;AAC9B,kHAhNA,4CAAiC,OAgNA;AAfjC,mGAhMA,6BAAkB,OAgMA;AAGlB,wGAlMA,kCAAuB,OAkMA;AACvB,2GAlMA,qCAA0B,OAkMA;AAC1B,0GAlMA,oCAAyB,OAkMA;AAjBzB,8FAhLA,wBAAa,OAgLA;AACb,qGAhLA,+BAAoB,OAgLA;AALpB,uGA1KA,iCAAsB,OA0KA;AACtB,iHA1KA,2CAAgC,OA0KA;AAKhC,+FA9KA,yBAAc,OA8KA;AAsBd,mHAnMA,6CAAkC,OAmMA;AAMlC,sHAxMA,gDAAqC,OAwMA;AATrC,kHA9LA,4CAAiC,OA8LA;AACjC,4HA9LA,sDAA2C,OA8LA;AAvB3C,wGAtKA,kCAAuB,OAsKA;AAIvB,mHAzKA,6CAAkC,OAyKA;AALlC,0GAnKA,oCAAyB,OAmKA;AANzB,gGA5JA,0BAAe,OA4JA;AAGf,wGA9JA,kCAAuB,OA8JA;AALvB,kGAxJA,4BAAiB,OAwJA;AACjB,iGAxJA,2BAAgB,OAwJA;AAGhB,yGA1JA,mCAAwB,OA0JA;AADxB,8FAxJA,wBAAa,OAwJA;AAWb,2GAlKA,qCAA0B,OAkKA;AAmB1B,oHApLA,8CAAmC,OAoLA;AAHnC,gHAhLA,0CAA+B,OAgLA;AAP/B,sGAxKA,gCAAqB,OAwKA;AACrB,qGAxKA,+BAAoB,OAwKA;AATpB,0GA9JA,oCAAyB,OA8JA;AAuBzB,sGApLA,gCAAqB,OAoLA;AACrB,yGApLA,mCAAwB,OAoLA;AAVxB,6GAzKA,uCAA4B,OAyKA;AAD5B,kGAvKA,4BAAiB,OAuKA;AAajB,+GAnLA,yCAA8B,OAmLA"}
|
package/internal/index.d.ts
CHANGED
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
import { AirGapDelegateProtocol } from './AirGapDelegateProtocol';
|
|
1
|
+
import { AirGapDelegateProtocol } from './protocol/AirGapDelegateProtocol';
|
|
2
|
+
import { delegateProtocolSchema, supportsDelegation } from './utils/protocol';
|
|
2
3
|
export { AirGapDelegateProtocol };
|
|
4
|
+
export { supportsDelegation };
|
|
5
|
+
export { delegateProtocolSchema };
|
package/internal/index.js
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.delegateProtocolSchema = exports.supportsDelegation = void 0;
|
|
4
|
+
var protocol_1 = require("./utils/protocol");
|
|
5
|
+
Object.defineProperty(exports, "delegateProtocolSchema", { enumerable: true, get: function () { return protocol_1.delegateProtocolSchema; } });
|
|
6
|
+
Object.defineProperty(exports, "supportsDelegation", { enumerable: true, get: function () { return protocol_1.supportsDelegation; } });
|
|
3
7
|
//# sourceMappingURL=index.js.map
|
package/internal/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/internal/index.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/internal/index.ts"],"names":[],"mappings":";;;AACA,6CAA6E;AAYpE,uGAZA,iCAAsB,OAYA;AAJtB,mGARwB,6BAAkB,OAQxB"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DelegateeDetails, DelegationDetails, DelegatorDetails } from '@airgap/coinlib-core';
|
|
2
|
-
import { Address } from '
|
|
3
|
-
import { PublicKey } from '
|
|
2
|
+
import { Address } from '../../types/address';
|
|
3
|
+
import { PublicKey } from '../../types/key';
|
|
4
4
|
/**
|
|
5
5
|
* DO NOT USE!
|
|
6
6
|
* This is an internal type and will be removed in future releases.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AirGapDelegateProtocol.js","sourceRoot":"","sources":["../../../src/internal/protocol/AirGapDelegateProtocol.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { AnyProtocol } from '../../protocol/protocol';
|
|
2
|
+
import { Schema } from '../../utils/interface';
|
|
3
|
+
import { AirGapDelegateProtocol } from '../protocol/AirGapDelegateProtocol';
|
|
4
|
+
export declare const delegateProtocolSchema: Schema<AirGapDelegateProtocol>;
|
|
5
|
+
export declare function supportsDelegation(object: AnyProtocol): object is AnyProtocol & AirGapDelegateProtocol;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Schemas
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.supportsDelegation = exports.delegateProtocolSchema = void 0;
|
|
5
|
+
var interface_1 = require("../../utils/interface");
|
|
6
|
+
exports.delegateProtocolSchema = {
|
|
7
|
+
getCurrentDelegateesForAddress: 'required',
|
|
8
|
+
getCurrentDelegateesForPublicKey: 'required',
|
|
9
|
+
getDefaultDelegatee: 'required',
|
|
10
|
+
getDelegateeDetails: 'required',
|
|
11
|
+
getDelegationDetailsFromAddress: 'required',
|
|
12
|
+
getDelegationDetailsFromPublicKey: 'required',
|
|
13
|
+
getDelegatorDetailsFromAddress: 'required',
|
|
14
|
+
getDelegatorDetailsFromPublicKey: 'required',
|
|
15
|
+
isAddressDelegating: 'required',
|
|
16
|
+
isPublicKeyDelegating: 'required',
|
|
17
|
+
prepareDelegatorActionFromPublicKey: 'required'
|
|
18
|
+
};
|
|
19
|
+
// Implementation Checks
|
|
20
|
+
function supportsDelegation(object) {
|
|
21
|
+
return (0, interface_1.implementsInterface)(object, exports.delegateProtocolSchema);
|
|
22
|
+
}
|
|
23
|
+
exports.supportsDelegation = supportsDelegation;
|
|
24
|
+
//# sourceMappingURL=protocol.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"protocol.js","sourceRoot":"","sources":["../../../src/internal/utils/protocol.ts"],"names":[],"mappings":";AAAA,UAAU;;;AAGV,mDAAmE;AAGtD,QAAA,sBAAsB,GAAmC;IACpE,8BAA8B,EAAE,UAAU;IAC1C,gCAAgC,EAAE,UAAU;IAC5C,mBAAmB,EAAE,UAAU;IAC/B,mBAAmB,EAAE,UAAU;IAC/B,+BAA+B,EAAE,UAAU;IAC3C,iCAAiC,EAAE,UAAU;IAC7C,8BAA8B,EAAE,UAAU;IAC1C,gCAAgC,EAAE,UAAU;IAC5C,mBAAmB,EAAE,UAAU;IAC/B,qBAAqB,EAAE,UAAU;IACjC,mCAAmC,EAAE,UAAU;CAChD,CAAA;AAED,wBAAwB;AAExB,SAAgB,kBAAkB,CAAC,MAAmB;IACpD,OAAO,IAAA,+BAAmB,EAAyB,MAAM,EAAE,8BAAsB,CAAC,CAAA;AACpF,CAAC;AAFD,gDAEC"}
|
package/module/module.d.ts
CHANGED
|
@@ -4,17 +4,20 @@ import { AirGapV3SerializerCompanion } from '../serializer/serializer';
|
|
|
4
4
|
import { AirGapInterface } from '../types/airgap';
|
|
5
5
|
import { Complement } from '../types/meta/utility-types';
|
|
6
6
|
import { ProtocolConfiguration } from '../types/module';
|
|
7
|
-
|
|
7
|
+
import { ProtocolNetwork } from '../types/protocol';
|
|
8
|
+
interface ModuleGeneric<_Protocols extends string = string, _ProtocolNetwork extends ProtocolNetwork = ProtocolNetwork> {
|
|
8
9
|
Protocols: _Protocols;
|
|
10
|
+
ProtocolNetwork: _ProtocolNetwork;
|
|
9
11
|
}
|
|
10
12
|
declare type TypedProtocols<G extends Partial<ModuleGeneric>> = Complement<ModuleGeneric, G>['Protocols'];
|
|
11
|
-
|
|
13
|
+
declare type TypedProtocolNetwork<G extends Partial<ModuleGeneric>> = Complement<ModuleGeneric, G>['ProtocolNetwork'];
|
|
14
|
+
interface _Module<_Protocols extends ModuleGeneric['Protocols'] = any, _ProtocolNetwork extends ModuleGeneric['ProtocolNetwork'] = any> {
|
|
12
15
|
supportedProtocols: Record<_Protocols, ProtocolConfiguration>;
|
|
13
16
|
createOfflineProtocol(identifier: _Protocols): Promise<AirGapOfflineProtocol | undefined>;
|
|
14
|
-
createOnlineProtocol(identifier: _Protocols,
|
|
15
|
-
createBlockExplorer(identifier: _Protocols,
|
|
17
|
+
createOnlineProtocol(identifier: _Protocols, networkOrId?: _ProtocolNetwork | string): Promise<AirGapOnlineProtocol | undefined>;
|
|
18
|
+
createBlockExplorer(identifier: _Protocols, networkOrId?: _ProtocolNetwork | string): Promise<AirGapBlockExplorer | undefined>;
|
|
16
19
|
createV3SerializerCompanion(): Promise<AirGapV3SerializerCompanion>;
|
|
17
20
|
}
|
|
18
|
-
export declare type Module<G extends Partial<ModuleGeneric> = {}> = _Module<TypedProtocols<G>>;
|
|
21
|
+
export declare type Module<G extends Partial<ModuleGeneric> = {}> = _Module<TypedProtocols<G>, TypedProtocolNetwork<G>>;
|
|
19
22
|
export declare type AirGapModule<G extends Partial<ModuleGeneric> = {}> = AirGapInterface<Module<G>>;
|
|
20
23
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@airgap/module-kit",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.14-beta.0",
|
|
4
4
|
"description": "The @airgap/module-kit package provides the common interfaces and functionalities to implement AirGap modules.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"airgap",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
},
|
|
30
30
|
"author": "Papers AG <contact@papers.ch> (https://papers.ch)",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@airgap/coinlib-core": "
|
|
33
|
-
"@airgap/serializer": "
|
|
32
|
+
"@airgap/coinlib-core": "^0.13.14-beta.0",
|
|
33
|
+
"@airgap/serializer": "^0.13.14-beta.0"
|
|
34
34
|
},
|
|
35
35
|
"nyc": {
|
|
36
36
|
"include": [
|
|
@@ -3,5 +3,6 @@ import { ExtendedPublicKey, PublicKey } from '../../../types/key';
|
|
|
3
3
|
import { _AnyProtocol, _BaseProtocol, BaseGeneric } from '../../protocol';
|
|
4
4
|
export declare type MultiAddressPublicKeyExtension<T extends _AnyProtocol> = T extends _BaseProtocol<infer _BaseAddressCursor, infer _AddressResult, any, any, any, any, infer _PublicKey> ? _AddressResult extends AddressWithCursor<infer _AddressCursor> ? MultiAddressPublicKeyProtocol<_AddressCursor, _PublicKey> : MultiAddressPublicKeyProtocol<_BaseAddressCursor, _PublicKey> : never;
|
|
5
5
|
export interface MultiAddressPublicKeyProtocol<_AddressCursor extends BaseGeneric['AddressCursor'] = BaseGeneric['AddressCursor'], _PublicKey extends PublicKey | ExtendedPublicKey = PublicKey> {
|
|
6
|
+
getInitialAddressesFromPublicKey(publicKey: _PublicKey): Promise<AddressWithCursor<_AddressCursor>[]>;
|
|
6
7
|
getNextAddressFromPublicKey(publicKey: _PublicKey, cursor: _AddressCursor): Promise<AddressWithCursor<_AddressCursor> | undefined>;
|
|
7
8
|
}
|
package/types/protocol.d.ts
CHANGED
package/utils/protocol.d.ts
CHANGED
|
@@ -1,18 +1,40 @@
|
|
|
1
|
-
import { FetchDataForAddressExtension } from '../protocol/extensions/address/FetchDataForAddressExtension';
|
|
2
|
-
import { FetchDataForMultipleAddressesExtension } from '../protocol/extensions/address/FetchDataForMultipleAddressesExtension';
|
|
3
|
-
import { MultiAddressPublicKeyExtension } from '../protocol/extensions/address/MultiAddressPublicKeyExtension';
|
|
4
|
-
import { Bip32Extension } from '../protocol/extensions/bip/Bip32Extension';
|
|
1
|
+
import { FetchDataForAddressExtension, FetchDataForAddressProtocol } from '../protocol/extensions/address/FetchDataForAddressExtension';
|
|
2
|
+
import { FetchDataForMultipleAddressesExtension, FetchDataForMultipleAddressesProtocol } from '../protocol/extensions/address/FetchDataForMultipleAddressesExtension';
|
|
3
|
+
import { MultiAddressPublicKeyExtension, MultiAddressPublicKeyProtocol } from '../protocol/extensions/address/MultiAddressPublicKeyExtension';
|
|
4
|
+
import { BaseBip32Protocol, Bip32Extension, OfflineBip32Protocol, OnlineBip32Protocol } from '../protocol/extensions/bip/Bip32Extension';
|
|
5
5
|
import { ConfigurableContractProtocol } from '../protocol/extensions/contract/ConfigurableContractExtension';
|
|
6
|
-
import { AESExtension } from '../protocol/extensions/crypto/AESExtension';
|
|
7
|
-
import { AsymmetricEncryptionExtension } from '../protocol/extensions/crypto/AsymmetricEncryptionExtension';
|
|
8
|
-
import { SignMessageExtension } from '../protocol/extensions/crypto/SignMessageExtension';
|
|
9
|
-
import { MultiTokenSubProtocolExtension } from '../protocol/extensions/sub-protocol/MultiTokenSubProtocolExtension';
|
|
10
|
-
import { SingleTokenSubProtocolExtension } from '../protocol/extensions/sub-protocol/SingleTokenSubProtocolExtension';
|
|
6
|
+
import { AES, AESExtension } from '../protocol/extensions/crypto/AESExtension';
|
|
7
|
+
import { AsymmetricEncryptionExtension, BaseAsymmetricEncryption, OfflineAsymmetricEncryption } from '../protocol/extensions/crypto/AsymmetricEncryptionExtension';
|
|
8
|
+
import { BaseSignMessage, OfflineSignMessage, SignMessageExtension } from '../protocol/extensions/crypto/SignMessageExtension';
|
|
9
|
+
import { BaseMultiTokenSubProtocol, MultiTokenSubProtocolExtension, OnlineMultiTokenSubProtocol } from '../protocol/extensions/sub-protocol/MultiTokenSubProtocolExtension';
|
|
10
|
+
import { SingleTokenSubProtocol, SingleTokenSubProtocolExtension } from '../protocol/extensions/sub-protocol/SingleTokenSubProtocolExtension';
|
|
11
11
|
import { SubProtocol } from '../protocol/extensions/sub-protocol/SubProtocolExtension';
|
|
12
12
|
import { ConfigurableTransactionInjectorProtocol } from '../protocol/extensions/transaction/ConfigurableTransactionInjectorExtension';
|
|
13
|
-
import { TransactionStatusCheckerExtension } from '../protocol/extensions/transaction/TransactionStatusCheckerExtension';
|
|
14
|
-
import { AnyProtocol, OfflineProtocol, OnlineProtocol } from '../protocol/protocol';
|
|
13
|
+
import { TransactionStatusChecker, TransactionStatusCheckerExtension } from '../protocol/extensions/transaction/TransactionStatusCheckerExtension';
|
|
14
|
+
import { AnyProtocol, BaseProtocol, OfflineProtocol, OnlineProtocol } from '../protocol/protocol';
|
|
15
15
|
import { ProtocolNetwork } from '../types/protocol';
|
|
16
|
+
import { Schema } from './interface';
|
|
17
|
+
export declare const baseProtocolSchema: Schema<BaseProtocol>;
|
|
18
|
+
export declare const offlineProtocolSchema: Schema<OfflineProtocol>;
|
|
19
|
+
export declare const onlineProtocolSchema: Schema<OnlineProtocol>;
|
|
20
|
+
export declare const bip32BaseProtocolSchema: Schema<BaseBip32Protocol>;
|
|
21
|
+
export declare const bip32OfflineProtocolSchema: Schema<OfflineBip32Protocol>;
|
|
22
|
+
export declare const bip32OnlineProtocolSchema: Schema<OnlineBip32Protocol>;
|
|
23
|
+
export declare const subProtocolSchema: Schema<SubProtocol>;
|
|
24
|
+
export declare const singleTokenSubProtocolSchema: Schema<SingleTokenSubProtocol>;
|
|
25
|
+
export declare const multiTokenSubProtocolBaseSchema: Schema<BaseMultiTokenSubProtocol>;
|
|
26
|
+
export declare const multiTokenSubProtocolOnlineSchema: Schema<OnlineMultiTokenSubProtocol>;
|
|
27
|
+
export declare const fetchDataForAddressProtocolSchema: Schema<FetchDataForAddressProtocol>;
|
|
28
|
+
export declare const fetchDataForMultipleAddressesProtocolSchema: Schema<FetchDataForMultipleAddressesProtocol>;
|
|
29
|
+
export declare const multiAddressPublicKeyProtocolSchema: Schema<MultiAddressPublicKeyProtocol>;
|
|
30
|
+
export declare const configurableContractProtocolSchema: Schema<ConfigurableContractProtocol>;
|
|
31
|
+
export declare const aesEncryptionSchema: Schema<AES>;
|
|
32
|
+
export declare const asymmetricEncryptionBaseSchema: Schema<BaseAsymmetricEncryption>;
|
|
33
|
+
export declare const asymmetricEncryptionOfflineSchema: Schema<OfflineAsymmetricEncryption>;
|
|
34
|
+
export declare const signMessageBaseSchema: Schema<BaseSignMessage>;
|
|
35
|
+
export declare const signMessageOfflineSchema: Schema<OfflineSignMessage>;
|
|
36
|
+
export declare const configurableTransactionInjectorSchema: Schema<ConfigurableTransactionInjectorProtocol>;
|
|
37
|
+
export declare const transactionStatusCheckerSchema: Schema<TransactionStatusChecker>;
|
|
16
38
|
export declare function isOfflineProtocol(object: AnyProtocol): object is OfflineProtocol;
|
|
17
39
|
export declare function isOnlineProtocol(object: AnyProtocol): object is OnlineProtocol;
|
|
18
40
|
export declare function isBip32Protocol<T extends AnyProtocol>(protocol: T): protocol is T & Bip32Extension<T>;
|
package/utils/protocol.js
CHANGED
|
@@ -11,77 +11,78 @@ var __assign = (this && this.__assign) || function () {
|
|
|
11
11
|
return __assign.apply(this, arguments);
|
|
12
12
|
};
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.protocolNetworkIdentifier = exports.isTransactionStatusChecker = exports.hasConfigurableTransactionInjector = exports.canSignMessage = exports.canEncryptAsymmetric = exports.canEncryptAES = exports.hasConfigurableContract = exports.hasMultiAddressPublicKeys = exports.canFetchDataForMultipleAddresses = exports.canFetchDataForAddress = exports.isMultiTokenSubProtocol = exports.isSingleTokenSubProtocol = exports.isSubProtocol = exports.isBip32Protocol = exports.isOnlineProtocol = exports.isOfflineProtocol = void 0;
|
|
14
|
+
exports.protocolNetworkIdentifier = exports.isTransactionStatusChecker = exports.hasConfigurableTransactionInjector = exports.canSignMessage = exports.canEncryptAsymmetric = exports.canEncryptAES = exports.hasConfigurableContract = exports.hasMultiAddressPublicKeys = exports.canFetchDataForMultipleAddresses = exports.canFetchDataForAddress = exports.isMultiTokenSubProtocol = exports.isSingleTokenSubProtocol = exports.isSubProtocol = exports.isBip32Protocol = exports.isOnlineProtocol = exports.isOfflineProtocol = exports.transactionStatusCheckerSchema = exports.configurableTransactionInjectorSchema = exports.signMessageOfflineSchema = exports.signMessageBaseSchema = exports.asymmetricEncryptionOfflineSchema = exports.asymmetricEncryptionBaseSchema = exports.aesEncryptionSchema = exports.configurableContractProtocolSchema = exports.multiAddressPublicKeyProtocolSchema = exports.fetchDataForMultipleAddressesProtocolSchema = exports.fetchDataForAddressProtocolSchema = exports.multiTokenSubProtocolOnlineSchema = exports.multiTokenSubProtocolBaseSchema = exports.singleTokenSubProtocolSchema = exports.subProtocolSchema = exports.bip32OnlineProtocolSchema = exports.bip32OfflineProtocolSchema = exports.bip32BaseProtocolSchema = exports.onlineProtocolSchema = exports.offlineProtocolSchema = exports.baseProtocolSchema = void 0;
|
|
15
15
|
// @ts-ignore
|
|
16
16
|
var createHash = require("@airgap/coinlib-core/dependencies/src/create-hash-1.2.0/index");
|
|
17
17
|
var interface_1 = require("./interface");
|
|
18
18
|
// Schemas
|
|
19
|
-
|
|
19
|
+
exports.baseProtocolSchema = {
|
|
20
20
|
getAddressFromPublicKey: 'required',
|
|
21
21
|
getDetailsFromTransaction: 'required',
|
|
22
22
|
getMetadata: 'required'
|
|
23
23
|
};
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
24
|
+
exports.offlineProtocolSchema = __assign(__assign({}, exports.baseProtocolSchema), { getCryptoConfiguration: 'required', getKeyPairFromDerivative: 'required', signTransactionWithSecretKey: 'required' });
|
|
25
|
+
exports.onlineProtocolSchema = __assign(__assign({}, exports.baseProtocolSchema), { broadcastTransaction: 'required', getBalanceOfPublicKey: 'required', getNetwork: 'required', getTransactionFeeWithPublicKey: 'required', getTransactionMaxAmountWithPublicKey: 'required', getTransactionsForPublicKey: 'required', prepareTransactionWithPublicKey: 'required' });
|
|
26
|
+
exports.bip32BaseProtocolSchema = __assign(__assign({}, exports.baseProtocolSchema), { deriveFromExtendedPublicKey: 'required' });
|
|
27
|
+
exports.bip32OfflineProtocolSchema = __assign(__assign(__assign({}, exports.bip32BaseProtocolSchema), exports.offlineProtocolSchema), { getExtendedKeyPairFromDerivative: 'required', deriveFromExtendedSecretKey: 'required' });
|
|
28
|
+
exports.bip32OnlineProtocolSchema = __assign(__assign({}, exports.bip32BaseProtocolSchema), exports.onlineProtocolSchema);
|
|
29
|
+
exports.subProtocolSchema = {
|
|
30
30
|
getType: 'required',
|
|
31
31
|
mainProtocol: 'required'
|
|
32
32
|
};
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
exports.singleTokenSubProtocolSchema = __assign(__assign({}, exports.subProtocolSchema), { getContractAddress: 'required' });
|
|
34
|
+
exports.multiTokenSubProtocolBaseSchema = exports.singleTokenSubProtocolSchema;
|
|
35
|
+
exports.multiTokenSubProtocolOnlineSchema = __assign(__assign({}, exports.multiTokenSubProtocolBaseSchema), exports.onlineProtocolSchema);
|
|
36
|
+
exports.fetchDataForAddressProtocolSchema = {
|
|
37
37
|
getBalanceOfAddress: 'required',
|
|
38
38
|
getTransactionsForAddress: 'required'
|
|
39
39
|
};
|
|
40
|
-
|
|
40
|
+
exports.fetchDataForMultipleAddressesProtocolSchema = {
|
|
41
41
|
getBalanceOfAddresses: 'required',
|
|
42
42
|
getTransactionsForAddresses: 'required'
|
|
43
43
|
};
|
|
44
|
-
|
|
44
|
+
exports.multiAddressPublicKeyProtocolSchema = {
|
|
45
|
+
getInitialAddressesFromPublicKey: 'required',
|
|
45
46
|
getNextAddressFromPublicKey: 'required'
|
|
46
47
|
};
|
|
47
|
-
|
|
48
|
+
exports.configurableContractProtocolSchema = {
|
|
48
49
|
isContractValid: 'required',
|
|
49
50
|
getContractAddress: 'required',
|
|
50
51
|
setContractAddress: 'required'
|
|
51
52
|
};
|
|
52
|
-
|
|
53
|
+
exports.aesEncryptionSchema = {
|
|
53
54
|
decryptAESWithSecretKey: 'required',
|
|
54
55
|
encryptAESWithSecretKey: 'required'
|
|
55
56
|
};
|
|
56
|
-
|
|
57
|
+
exports.asymmetricEncryptionBaseSchema = {
|
|
57
58
|
encryptAsymmetricWithPublicKey: 'required'
|
|
58
59
|
};
|
|
59
|
-
|
|
60
|
-
|
|
60
|
+
exports.asymmetricEncryptionOfflineSchema = __assign(__assign({}, exports.asymmetricEncryptionBaseSchema), { decryptAsymmetricWithKeyPair: 'required' });
|
|
61
|
+
exports.signMessageBaseSchema = {
|
|
61
62
|
verifyMessageWithPublicKey: 'required'
|
|
62
63
|
};
|
|
63
|
-
|
|
64
|
-
|
|
64
|
+
exports.signMessageOfflineSchema = __assign(__assign({}, exports.signMessageBaseSchema), { signMessageWithKeyPair: 'required' });
|
|
65
|
+
exports.configurableTransactionInjectorSchema = {
|
|
65
66
|
getInjectorUrl: 'required',
|
|
66
67
|
setInjectorUrl: 'required'
|
|
67
68
|
};
|
|
68
|
-
|
|
69
|
+
exports.transactionStatusCheckerSchema = {
|
|
69
70
|
getTransactionStatus: 'required'
|
|
70
71
|
};
|
|
71
72
|
// Implementation Checks
|
|
72
73
|
function isOfflineProtocol(object) {
|
|
73
|
-
return (0, interface_1.implementsInterface)(object, offlineProtocolSchema);
|
|
74
|
+
return (0, interface_1.implementsInterface)(object, exports.offlineProtocolSchema);
|
|
74
75
|
}
|
|
75
76
|
exports.isOfflineProtocol = isOfflineProtocol;
|
|
76
77
|
function isOnlineProtocol(object) {
|
|
77
|
-
return (0, interface_1.implementsInterface)(object, onlineProtocolSchema);
|
|
78
|
+
return (0, interface_1.implementsInterface)(object, exports.onlineProtocolSchema);
|
|
78
79
|
}
|
|
79
80
|
exports.isOnlineProtocol = isOnlineProtocol;
|
|
80
81
|
function isOfflineBip32Protocol(protocol) {
|
|
81
|
-
return (0, interface_1.implementsInterface)(protocol, bip32OfflineProtocolSchema);
|
|
82
|
+
return (0, interface_1.implementsInterface)(protocol, exports.bip32OfflineProtocolSchema);
|
|
82
83
|
}
|
|
83
84
|
function isOnlineBip32Protocol(protocol) {
|
|
84
|
-
return (0, interface_1.implementsInterface)(protocol, bip32OnlineProtocolSchema);
|
|
85
|
+
return (0, interface_1.implementsInterface)(protocol, exports.bip32OnlineProtocolSchema);
|
|
85
86
|
}
|
|
86
87
|
function isBip32Protocol(protocol) {
|
|
87
88
|
var extendedWithBip32 = false;
|
|
@@ -95,63 +96,63 @@ function isBip32Protocol(protocol) {
|
|
|
95
96
|
}
|
|
96
97
|
exports.isBip32Protocol = isBip32Protocol;
|
|
97
98
|
function isSubProtocol(protocol) {
|
|
98
|
-
return (0, interface_1.implementsInterface)(protocol, subProtocolSchema);
|
|
99
|
+
return (0, interface_1.implementsInterface)(protocol, exports.subProtocolSchema);
|
|
99
100
|
}
|
|
100
101
|
exports.isSubProtocol = isSubProtocol;
|
|
101
102
|
function isSingleTokenSubProtocol(protocol) {
|
|
102
|
-
return (0, interface_1.implementsInterface)(protocol, singleTokenSubProtocolSchema);
|
|
103
|
+
return (0, interface_1.implementsInterface)(protocol, exports.singleTokenSubProtocolSchema);
|
|
103
104
|
}
|
|
104
105
|
exports.isSingleTokenSubProtocol = isSingleTokenSubProtocol;
|
|
105
106
|
function isMultiTokenSubProtocol(protocol) {
|
|
106
|
-
var extendedWithMultiTokenSubProtocol = (0, interface_1.implementsInterface)(protocol, multiTokenSubProtocolBaseSchema);
|
|
107
|
+
var extendedWithMultiTokenSubProtocol = (0, interface_1.implementsInterface)(protocol, exports.multiTokenSubProtocolBaseSchema);
|
|
107
108
|
if (isOnlineProtocol(protocol)) {
|
|
108
|
-
extendedWithMultiTokenSubProtocol && (extendedWithMultiTokenSubProtocol = (0, interface_1.implementsInterface)(protocol, multiTokenSubProtocolOnlineSchema));
|
|
109
|
+
extendedWithMultiTokenSubProtocol && (extendedWithMultiTokenSubProtocol = (0, interface_1.implementsInterface)(protocol, exports.multiTokenSubProtocolOnlineSchema));
|
|
109
110
|
}
|
|
110
111
|
return extendedWithMultiTokenSubProtocol;
|
|
111
112
|
}
|
|
112
113
|
exports.isMultiTokenSubProtocol = isMultiTokenSubProtocol;
|
|
113
114
|
function canFetchDataForAddress(protocol) {
|
|
114
|
-
return (0, interface_1.implementsInterface)(protocol, fetchDataForAddressProtocolSchema);
|
|
115
|
+
return (0, interface_1.implementsInterface)(protocol, exports.fetchDataForAddressProtocolSchema);
|
|
115
116
|
}
|
|
116
117
|
exports.canFetchDataForAddress = canFetchDataForAddress;
|
|
117
118
|
function canFetchDataForMultipleAddresses(protocol) {
|
|
118
|
-
return (0, interface_1.implementsInterface)(protocol, fetchDataForMultipleAddressesProtocolSchema);
|
|
119
|
+
return (0, interface_1.implementsInterface)(protocol, exports.fetchDataForMultipleAddressesProtocolSchema);
|
|
119
120
|
}
|
|
120
121
|
exports.canFetchDataForMultipleAddresses = canFetchDataForMultipleAddresses;
|
|
121
122
|
function hasMultiAddressPublicKeys(protocol) {
|
|
122
|
-
return (0, interface_1.implementsInterface)(protocol, multiAddressPublicKeyProtocolSchema);
|
|
123
|
+
return (0, interface_1.implementsInterface)(protocol, exports.multiAddressPublicKeyProtocolSchema);
|
|
123
124
|
}
|
|
124
125
|
exports.hasMultiAddressPublicKeys = hasMultiAddressPublicKeys;
|
|
125
126
|
function hasConfigurableContract(protocol) {
|
|
126
|
-
return (0, interface_1.implementsInterface)(protocol, configurableContractProtocolSchema);
|
|
127
|
+
return (0, interface_1.implementsInterface)(protocol, exports.configurableContractProtocolSchema);
|
|
127
128
|
}
|
|
128
129
|
exports.hasConfigurableContract = hasConfigurableContract;
|
|
129
130
|
function canEncryptAES(protocol) {
|
|
130
|
-
return (0, interface_1.implementsInterface)(protocol, aesEncryptionSchema);
|
|
131
|
+
return (0, interface_1.implementsInterface)(protocol, exports.aesEncryptionSchema);
|
|
131
132
|
}
|
|
132
133
|
exports.canEncryptAES = canEncryptAES;
|
|
133
134
|
function canEncryptAsymmetric(protocol) {
|
|
134
|
-
var extendedWithAsymmetricEncryption = (0, interface_1.implementsInterface)(protocol, asymmetricEncryptionBaseSchema);
|
|
135
|
+
var extendedWithAsymmetricEncryption = (0, interface_1.implementsInterface)(protocol, exports.asymmetricEncryptionBaseSchema);
|
|
135
136
|
if (isOfflineProtocol(protocol)) {
|
|
136
|
-
extendedWithAsymmetricEncryption && (extendedWithAsymmetricEncryption = (0, interface_1.implementsInterface)(protocol, asymmetricEncryptionOfflineSchema));
|
|
137
|
+
extendedWithAsymmetricEncryption && (extendedWithAsymmetricEncryption = (0, interface_1.implementsInterface)(protocol, exports.asymmetricEncryptionOfflineSchema));
|
|
137
138
|
}
|
|
138
139
|
return extendedWithAsymmetricEncryption;
|
|
139
140
|
}
|
|
140
141
|
exports.canEncryptAsymmetric = canEncryptAsymmetric;
|
|
141
142
|
function canSignMessage(protocol) {
|
|
142
|
-
var extendedWithSignMessage = (0, interface_1.implementsInterface)(protocol, signMessageBaseSchema);
|
|
143
|
+
var extendedWithSignMessage = (0, interface_1.implementsInterface)(protocol, exports.signMessageBaseSchema);
|
|
143
144
|
if (isOfflineProtocol(protocol)) {
|
|
144
|
-
extendedWithSignMessage && (extendedWithSignMessage = (0, interface_1.implementsInterface)(protocol, signMessageOfflineSchema));
|
|
145
|
+
extendedWithSignMessage && (extendedWithSignMessage = (0, interface_1.implementsInterface)(protocol, exports.signMessageOfflineSchema));
|
|
145
146
|
}
|
|
146
147
|
return extendedWithSignMessage;
|
|
147
148
|
}
|
|
148
149
|
exports.canSignMessage = canSignMessage;
|
|
149
150
|
function hasConfigurableTransactionInjector(protocol) {
|
|
150
|
-
return (0, interface_1.implementsInterface)(protocol, configurableTransactionInjectorSchema);
|
|
151
|
+
return (0, interface_1.implementsInterface)(protocol, exports.configurableTransactionInjectorSchema);
|
|
151
152
|
}
|
|
152
153
|
exports.hasConfigurableTransactionInjector = hasConfigurableTransactionInjector;
|
|
153
154
|
function isTransactionStatusChecker(protocol) {
|
|
154
|
-
return (0, interface_1.implementsInterface)(protocol, transactionStatusCheckerSchema);
|
|
155
|
+
return (0, interface_1.implementsInterface)(protocol, exports.transactionStatusCheckerSchema);
|
|
155
156
|
}
|
|
156
157
|
exports.isTransactionStatusChecker = isTransactionStatusChecker;
|
|
157
158
|
// Identifier
|
package/utils/protocol.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"protocol.js","sourceRoot":"","sources":["../../src/utils/protocol.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA,aAAa;AACb,0FAA4F;AAsC5F,yCAAyD;AAEzD,UAAU;
|
|
1
|
+
{"version":3,"file":"protocol.js","sourceRoot":"","sources":["../../src/utils/protocol.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AirGapDelegateProtocol.js","sourceRoot":"","sources":["../../src/internal/AirGapDelegateProtocol.ts"],"names":[],"mappings":""}
|
|
File without changes
|