@cmts-dev/carmentis-sdk-core 1.2.3 → 1.2.4
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/blockchain/feesCalculator/FeesCalculationFormulaFactory.d.ts +13 -0
- package/dist/blockchain/feesCalculator/FeesCalculationFormulaFactory.d.ts.map +1 -0
- package/dist/blockchain/feesCalculator/FirstFeesFormula.d.ts +28 -0
- package/dist/blockchain/feesCalculator/FirstFeesFormula.d.ts.map +1 -0
- package/dist/blockchain/feesCalculator/IFeesFormula.d.ts +19 -0
- package/dist/blockchain/feesCalculator/IFeesFormula.d.ts.map +1 -0
- package/dist/blockchain/feesCalculator/RetentionCostCalculator.d.ts +9 -0
- package/dist/blockchain/feesCalculator/RetentionCostCalculator.d.ts.map +1 -0
- package/dist/blockchain/internalStates/AccountInternalState.d.ts +14 -0
- package/dist/blockchain/internalStates/AccountInternalState.d.ts.map +1 -0
- package/dist/blockchain/internalStates/ApplicationInternalState.d.ts +16 -0
- package/dist/blockchain/internalStates/ApplicationInternalState.d.ts.map +1 -0
- package/dist/blockchain/internalStates/ApplicationLedgerInternalState.d.ts +102 -0
- package/dist/blockchain/internalStates/ApplicationLedgerInternalState.d.ts.map +1 -0
- package/dist/blockchain/internalStates/IInternalState.d.ts +4 -0
- package/dist/blockchain/internalStates/IInternalState.d.ts.map +1 -0
- package/dist/blockchain/internalStates/IInternalStateUpdater.d.ts +11 -0
- package/dist/blockchain/internalStates/IInternalStateUpdater.d.ts.map +1 -0
- package/dist/blockchain/internalStates/InternalStateFactory.d.ts +6 -0
- package/dist/blockchain/internalStates/InternalStateFactory.d.ts.map +1 -0
- package/dist/blockchain/internalStates/OrganizationInternalState.d.ts +15 -0
- package/dist/blockchain/internalStates/OrganizationInternalState.d.ts.map +1 -0
- package/dist/blockchain/internalStates/ProtocolInternalState.d.ts +62 -0
- package/dist/blockchain/internalStates/ProtocolInternalState.d.ts.map +1 -0
- package/dist/blockchain/internalStates/ValidatorNodeInternalState.d.ts +24 -0
- package/dist/blockchain/internalStates/ValidatorNodeInternalState.d.ts.map +1 -0
- package/dist/blockchain/internalStatesUpdater/AccountInternalStateUpdater.d.ts +17 -0
- package/dist/blockchain/internalStatesUpdater/AccountInternalStateUpdater.d.ts.map +1 -0
- package/dist/blockchain/internalStatesUpdater/ApplicationInternalStateUpdater.d.ts +8 -0
- package/dist/blockchain/internalStatesUpdater/ApplicationInternalStateUpdater.d.ts.map +1 -0
- package/dist/blockchain/internalStatesUpdater/ApplicationLedgerLocalStateUpdater.d.ts +26 -0
- package/dist/blockchain/internalStatesUpdater/ApplicationLedgerLocalStateUpdater.d.ts.map +1 -0
- package/dist/blockchain/internalStatesUpdater/InternalStateUpdaterFactory.d.ts +23 -0
- package/dist/blockchain/internalStatesUpdater/InternalStateUpdaterFactory.d.ts.map +1 -0
- package/dist/blockchain/internalStatesUpdater/OrganizationInternalStateUpdater.d.ts +8 -0
- package/dist/blockchain/internalStatesUpdater/OrganizationInternalStateUpdater.d.ts.map +1 -0
- package/dist/blockchain/internalStatesUpdater/ProtocolInternalStateUpdater.d.ts +9 -0
- package/dist/blockchain/internalStatesUpdater/ProtocolInternalStateUpdater.d.ts.map +1 -0
- package/dist/blockchain/internalStatesUpdater/ValidatorNodeInternalStateUpdater.d.ts +9 -0
- package/dist/blockchain/internalStatesUpdater/ValidatorNodeInternalStateUpdater.d.ts.map +1 -0
- package/dist/blockchain/microblock/Microblock.d.ts +345 -0
- package/dist/blockchain/microblock/Microblock.d.ts.map +1 -0
- package/dist/blockchain/microblock/MicroblockConsistencyChecker.d.ts +49 -0
- package/dist/blockchain/microblock/MicroblockConsistencyChecker.d.ts.map +1 -0
- package/dist/blockchain/microblock/TimestampValidationResult.d.ts +6 -0
- package/dist/blockchain/microblock/TimestampValidationResult.d.ts.map +1 -0
- package/dist/blockchain/structureCheckers/AccountMicroblockStructureChecker.d.ts +7 -0
- package/dist/blockchain/structureCheckers/AccountMicroblockStructureChecker.d.ts.map +1 -0
- package/dist/blockchain/structureCheckers/ApplicationLedgerMicroblockStructureChecker.d.ts +7 -0
- package/dist/blockchain/structureCheckers/ApplicationLedgerMicroblockStructureChecker.d.ts.map +1 -0
- package/dist/blockchain/structureCheckers/ApplicationMicroblockStructureChecker.d.ts +7 -0
- package/dist/blockchain/structureCheckers/ApplicationMicroblockStructureChecker.d.ts.map +1 -0
- package/dist/blockchain/structureCheckers/IMicroblockStructureChecker.d.ts +5 -0
- package/dist/blockchain/structureCheckers/IMicroblockStructureChecker.d.ts.map +1 -0
- package/dist/blockchain/structureCheckers/OrganizationMicroblockStructureChecker.d.ts +7 -0
- package/dist/blockchain/structureCheckers/OrganizationMicroblockStructureChecker.d.ts.map +1 -0
- package/dist/blockchain/structureCheckers/ProtocolMicroblockStructureChecker.d.ts +7 -0
- package/dist/blockchain/structureCheckers/ProtocolMicroblockStructureChecker.d.ts.map +1 -0
- package/dist/blockchain/structureCheckers/SectionConstraint.d.ts +9 -0
- package/dist/blockchain/structureCheckers/SectionConstraint.d.ts.map +1 -0
- package/dist/blockchain/structureCheckers/StructureChecker.d.ts +280 -0
- package/dist/blockchain/structureCheckers/StructureChecker.d.ts.map +1 -0
- package/dist/blockchain/structureCheckers/ValidatorNodeMicroblockStructureChecker.d.ts +7 -0
- package/dist/blockchain/structureCheckers/ValidatorNodeMicroblockStructureChecker.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/AccountVb.d.ts +37 -0
- package/dist/blockchain/virtualBlockchains/AccountVb.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/ApplicationLedgerMicroblockBuilder.d.ts +19 -0
- package/dist/blockchain/virtualBlockchains/ApplicationLedgerMicroblockBuilder.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/ApplicationLedgerVb.d.ts +235 -0
- package/dist/blockchain/virtualBlockchains/ApplicationLedgerVb.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/ApplicationVb.d.ts +34 -0
- package/dist/blockchain/virtualBlockchains/ApplicationVb.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/OrganizationVb.d.ts +27 -0
- package/dist/blockchain/virtualBlockchains/OrganizationVb.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/ProtocolVb.d.ts +71 -0
- package/dist/blockchain/virtualBlockchains/ProtocolVb.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/ValidatorNodeVb.d.ts +39 -0
- package/dist/blockchain/virtualBlockchains/ValidatorNodeVb.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/VirtualBlockchain.d.ts +187 -0
- package/dist/blockchain/virtualBlockchains/VirtualBlockchain.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/WalletRequestBasedApplicationLedgerMicroblockBuilder.d.ts +51 -0
- package/dist/blockchain/virtualBlockchains/WalletRequestBasedApplicationLedgerMicroblockBuilder.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/events/OnMicroblockInsertedEventListener.d.ts +6 -0
- package/dist/blockchain/virtualBlockchains/events/OnMicroblockInsertedEventListener.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/fallbacks/IMicroblockSearchFailureFallback.d.ts +17 -0
- package/dist/blockchain/virtualBlockchains/fallbacks/IMicroblockSearchFailureFallback.d.ts.map +1 -0
- package/dist/blockchain/virtualBlockchains/fallbacks/ThrownErrorMicroblockSearchFailureFallback.d.ts +8 -0
- package/dist/blockchain/virtualBlockchains/fallbacks/ThrownErrorMicroblockSearchFailureFallback.d.ts.map +1 -0
- package/dist/blockchainOld/Account.d.ts +2 -0
- package/dist/blockchainOld/Account.d.ts.map +1 -0
- package/dist/blockchainOld/Application.d.ts +2 -0
- package/dist/blockchainOld/Application.d.ts.map +1 -0
- package/dist/blockchainOld/ApplicationLedger.d.ts +2 -0
- package/dist/blockchainOld/ApplicationLedger.d.ts.map +1 -0
- package/dist/blockchainOld/Organization.d.ts +2 -0
- package/dist/blockchainOld/Organization.d.ts.map +1 -0
- package/dist/blockchainOld/Protocol.d.ts +2 -0
- package/dist/blockchainOld/Protocol.d.ts.map +1 -0
- package/dist/blockchainOld/ValidatorNode.d.ts +2 -0
- package/dist/blockchainOld/ValidatorNode.d.ts.map +1 -0
- package/dist/blockchainOld/blockchain.d.ts +2 -0
- package/dist/blockchainOld/blockchain.d.ts.map +1 -0
- package/dist/carmentis-sdk-core.cjs +1 -2
- package/dist/carmentis-sdk-core.es +0 -2
- package/dist/cometbft/CometBFTPublicKey.d.ts +10 -0
- package/dist/cometbft/CometBFTPublicKey.d.ts.map +1 -0
- package/dist/common.d.ts +243 -0
- package/dist/common.d.ts.map +1 -0
- package/dist/constants/ActorType.d.ts +6 -0
- package/dist/constants/ActorType.d.ts.map +1 -0
- package/dist/constants/chain.d.ts +16 -0
- package/dist/constants/chain.d.ts.map +1 -0
- package/dist/constants/constants.d.ts +7 -0
- package/dist/constants/constants.d.ts.map +1 -0
- package/dist/constants/data.d.ts +26 -0
- package/dist/constants/data.d.ts.map +1 -0
- package/dist/constants/economics.d.ts +42 -0
- package/dist/constants/economics.d.ts.map +1 -0
- package/dist/constants/errors.d.ts +2 -0
- package/dist/constants/errors.d.ts.map +1 -0
- package/dist/constants/schemas.d.ts +107 -0
- package/dist/constants/schemas.d.ts.map +1 -0
- package/dist/constants/sections.d.ts +141 -0
- package/dist/constants/sections.d.ts.map +1 -0
- package/dist/crypto/CryptoSchemeFactory.d.ts +46 -0
- package/dist/crypto/CryptoSchemeFactory.d.ts.map +1 -0
- package/dist/crypto/aes.d.ts +8 -0
- package/dist/crypto/aes.d.ts.map +1 -0
- package/dist/crypto/crypto.d.ts +52 -0
- package/dist/crypto/crypto.d.ts.map +1 -0
- package/dist/crypto/encoder/CryptoEncoderFactory.d.ts +15 -0
- package/dist/crypto/encoder/CryptoEncoderFactory.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/BytesSignatureEncoder.d.ts +18 -0
- package/dist/crypto/encoder/signature/BytesSignatureEncoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/HandlerBasedSignatureEncoder.d.ts +26 -0
- package/dist/crypto/encoder/signature/HandlerBasedSignatureEncoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/ISignatureEncoderHandler.d.ts +15 -0
- package/dist/crypto/encoder/signature/ISignatureEncoderHandler.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/JwkSignatureEncoder.d.ts +25 -0
- package/dist/crypto/encoder/signature/JwkSignatureEncoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/SignatureEncoderInterface.d.ts +69 -0
- package/dist/crypto/encoder/signature/SignatureEncoderInterface.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/StringSignatureEncoder.d.ts +2 -0
- package/dist/crypto/encoder/signature/StringSignatureEncoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/hcv/BaseHCVSignatureDecoder.d.ts +55 -0
- package/dist/crypto/encoder/signature/hcv/BaseHCVSignatureDecoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/hcv/BaseHCVSignatureEncoder.d.ts +47 -0
- package/dist/crypto/encoder/signature/hcv/BaseHCVSignatureEncoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/hcv/HCVSignatureEncoder.d.ts +2 -0
- package/dist/crypto/encoder/signature/hcv/HCVSignatureEncoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/hcv/MLDSA65HCVSignatureDecoder.d.ts +23 -0
- package/dist/crypto/encoder/signature/hcv/MLDSA65HCVSignatureDecoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/hcv/MLDSA65HCVSignatureEncoder.d.ts +37 -0
- package/dist/crypto/encoder/signature/hcv/MLDSA65HCVSignatureEncoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/hcv/NativeHCVSignatureDecoder.d.ts +45 -0
- package/dist/crypto/encoder/signature/hcv/NativeHCVSignatureDecoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/hcv/NativeHCVSignatureEncoder.d.ts +31 -0
- package/dist/crypto/encoder/signature/hcv/NativeHCVSignatureEncoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/hcv/PkmsSecp256k1SignatureDecoder.d.ts +38 -0
- package/dist/crypto/encoder/signature/hcv/PkmsSecp256k1SignatureDecoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/hcv/PkmsSecp256k1SignatureEncoder.d.ts +44 -0
- package/dist/crypto/encoder/signature/hcv/PkmsSecp256k1SignatureEncoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/hcv/Secp256k1HCVSignatureDecoder.d.ts +10 -0
- package/dist/crypto/encoder/signature/hcv/Secp256k1HCVSignatureDecoder.d.ts.map +1 -0
- package/dist/crypto/encoder/signature/hcv/Secp256k1HCVSignatureEncoder.d.ts +32 -0
- package/dist/crypto/encoder/signature/hcv/Secp256k1HCVSignatureEncoder.d.ts.map +1 -0
- package/dist/crypto/encryption/public-key-encryption/HCVPkeEncoder.d.ts +18 -0
- package/dist/crypto/encryption/public-key-encryption/HCVPkeEncoder.d.ts.map +1 -0
- package/dist/crypto/encryption/public-key-encryption/MlKemCiphertextEncoder.d.ts +13 -0
- package/dist/crypto/encryption/public-key-encryption/MlKemCiphertextEncoder.d.ts.map +1 -0
- package/dist/crypto/encryption/public-key-encryption/MlKemPrivateDecryptionKey.d.ts +24 -0
- package/dist/crypto/encryption/public-key-encryption/MlKemPrivateDecryptionKey.d.ts.map +1 -0
- package/dist/crypto/encryption/public-key-encryption/MlKemPublicEncryptionKey.d.ts +10 -0
- package/dist/crypto/encryption/public-key-encryption/MlKemPublicEncryptionKey.d.ts.map +1 -0
- package/dist/crypto/encryption/public-key-encryption/MlKemPublicKeyEncryptionScheme.d.ts +7 -0
- package/dist/crypto/encryption/public-key-encryption/MlKemPublicKeyEncryptionScheme.d.ts.map +1 -0
- package/dist/crypto/encryption/public-key-encryption/PkeEncoderFactory.d.ts +13 -0
- package/dist/crypto/encryption/public-key-encryption/PkeEncoderFactory.d.ts.map +1 -0
- package/dist/crypto/encryption/public-key-encryption/PkeEncoderInterface.d.ts +13 -0
- package/dist/crypto/encryption/public-key-encryption/PkeEncoderInterface.d.ts.map +1 -0
- package/dist/crypto/encryption/public-key-encryption/PublicKeyEncryptionSchemeId.d.ts +10 -0
- package/dist/crypto/encryption/public-key-encryption/PublicKeyEncryptionSchemeId.d.ts.map +1 -0
- package/dist/crypto/encryption/public-key-encryption/PublicKeyEncryptionSchemeInterface.d.ts +52 -0
- package/dist/crypto/encryption/public-key-encryption/PublicKeyEncryptionSchemeInterface.d.ts.map +1 -0
- package/dist/crypto/encryption/symmetric-encryption/encryption-interface.d.ts +179 -0
- package/dist/crypto/encryption/symmetric-encryption/encryption-interface.d.ts.map +1 -0
- package/dist/crypto/encryption/symmetric-encryption/generic-symmetric-key-encoder.d.ts +25 -0
- package/dist/crypto/encryption/symmetric-encryption/generic-symmetric-key-encoder.d.ts.map +1 -0
- package/dist/crypto/hash/hash-interface.d.ts +12 -0
- package/dist/crypto/hash/hash-interface.d.ts.map +1 -0
- package/dist/crypto/hashes.d.ts +12 -0
- package/dist/crypto/hashes.d.ts.map +1 -0
- package/dist/crypto/kdf/HKDF.d.ts +7 -0
- package/dist/crypto/kdf/HKDF.d.ts.map +1 -0
- package/dist/crypto/kdf/KeyDerivationFunction.d.ts +7 -0
- package/dist/crypto/kdf/KeyDerivationFunction.d.ts.map +1 -0
- package/dist/crypto/kdf/PBKDF2.d.ts +7 -0
- package/dist/crypto/kdf/PBKDF2.d.ts.map +1 -0
- package/dist/crypto/kdf/PasswordBasedKeyDerivationFunction.d.ts +7 -0
- package/dist/crypto/kdf/PasswordBasedKeyDerivationFunction.d.ts.map +1 -0
- package/dist/crypto/kdf/PasswordBasedKeyDerivationFunctionSchemeId.d.ts +5 -0
- package/dist/crypto/kdf/PasswordBasedKeyDerivationFunctionSchemeId.d.ts.map +1 -0
- package/dist/crypto/kdf/Scrypt.d.ts +7 -0
- package/dist/crypto/kdf/Scrypt.d.ts.map +1 -0
- package/dist/crypto/kdf/keyDerivationFunctionSchemeId.d.ts +4 -0
- package/dist/crypto/kdf/keyDerivationFunctionSchemeId.d.ts.map +1 -0
- package/dist/crypto/ml-dsa.d.ts +13 -0
- package/dist/crypto/ml-dsa.d.ts.map +1 -0
- package/dist/crypto/ml-kem.d.ts +16 -0
- package/dist/crypto/ml-kem.d.ts.map +1 -0
- package/dist/crypto/random.d.ts +10 -0
- package/dist/crypto/random.d.ts.map +1 -0
- package/dist/crypto/secp256k1.d.ts +10 -0
- package/dist/crypto/secp256k1.d.ts.map +1 -0
- package/dist/crypto/signature/BasePrivateSignatureKey.d.ts +27 -0
- package/dist/crypto/signature/BasePrivateSignatureKey.d.ts.map +1 -0
- package/dist/crypto/signature/BasePublicSignatureKey.d.ts +24 -0
- package/dist/crypto/signature/BasePublicSignatureKey.d.ts.map +1 -0
- package/dist/crypto/signature/PrivateSignatureKey.d.ts +17 -0
- package/dist/crypto/signature/PrivateSignatureKey.d.ts.map +1 -0
- package/dist/crypto/signature/PublicSignatureKey.d.ts +27 -0
- package/dist/crypto/signature/PublicSignatureKey.d.ts.map +1 -0
- package/dist/crypto/signature/SignatureAlgorithmId.d.ts +8 -0
- package/dist/crypto/signature/SignatureAlgorithmId.d.ts.map +1 -0
- package/dist/crypto/signature/SignatureScheme.d.ts +11 -0
- package/dist/crypto/signature/SignatureScheme.d.ts.map +1 -0
- package/dist/crypto/signature/SignatureSchemeId.d.ts +16 -0
- package/dist/crypto/signature/SignatureSchemeId.d.ts.map +1 -0
- package/dist/crypto/signature/ed25519/Ed25519PrivateSignatureKey.d.ts +38 -0
- package/dist/crypto/signature/ed25519/Ed25519PrivateSignatureKey.d.ts.map +1 -0
- package/dist/crypto/signature/ed25519/Ed25519PublicSignatureKey.d.ts +17 -0
- package/dist/crypto/signature/ed25519/Ed25519PublicSignatureKey.d.ts.map +1 -0
- package/dist/crypto/signature/ed25519/Ed25519SignatureScheme.d.ts +12 -0
- package/dist/crypto/signature/ed25519/Ed25519SignatureScheme.d.ts.map +1 -0
- package/dist/crypto/signature/ml-dsa-65.d.ts +86 -0
- package/dist/crypto/signature/ml-dsa-65.d.ts.map +1 -0
- package/dist/crypto/signature/pkms/PkmsSecp256k1PrivateSignatureKey.d.ts +28 -0
- package/dist/crypto/signature/pkms/PkmsSecp256k1PrivateSignatureKey.d.ts.map +1 -0
- package/dist/crypto/signature/pkms/pkmsCredentialProvider/EnvApiKeyPkmsCredentialProvider.d.ts +5 -0
- package/dist/crypto/signature/pkms/pkmsCredentialProvider/EnvApiKeyPkmsCredentialProvider.d.ts.map +1 -0
- package/dist/crypto/signature/pkms/pkmsCredentialProvider/IPkmsCredentialProvider.d.ts +4 -0
- package/dist/crypto/signature/pkms/pkmsCredentialProvider/IPkmsCredentialProvider.d.ts.map +1 -0
- package/dist/crypto/signature/pkms/pkmsCredentialProvider/SelfProvidedApiKeyPkmsCredentialProvider.d.ts +7 -0
- package/dist/crypto/signature/pkms/pkmsCredentialProvider/SelfProvidedApiKeyPkmsCredentialProvider.d.ts.map +1 -0
- package/dist/crypto/signature/secp256k1/Secp256k1PrivateSignatureKey.d.ts +38 -0
- package/dist/crypto/signature/secp256k1/Secp256k1PrivateSignatureKey.d.ts.map +1 -0
- package/dist/crypto/signature/secp256k1/Secp256k1PublicSignatureKey.d.ts +17 -0
- package/dist/crypto/signature/secp256k1/Secp256k1PublicSignatureKey.d.ts.map +1 -0
- package/dist/crypto/signature/secp256k1/Secp256k1SignatureScheme.d.ts +12 -0
- package/dist/crypto/signature/secp256k1/Secp256k1SignatureScheme.d.ts.map +1 -0
- package/dist/crypto/signatureCache/SignatureCacheDisabled.d.ts +9 -0
- package/dist/crypto/signatureCache/SignatureCacheDisabled.d.ts.map +1 -0
- package/dist/crypto/signatureCache/SignatureCacheEntry.d.ts +6 -0
- package/dist/crypto/signatureCache/SignatureCacheEntry.d.ts.map +1 -0
- package/dist/crypto/signatureCache/SignatureCacheInterface.d.ts +7 -0
- package/dist/crypto/signatureCache/SignatureCacheInterface.d.ts.map +1 -0
- package/dist/crypto/signatureCache/SignatureCacheMonothread.d.ts +10 -0
- package/dist/crypto/signatureCache/SignatureCacheMonothread.d.ts.map +1 -0
- package/dist/crypto/signatureCache/test.d.ts +2 -0
- package/dist/crypto/signatureCache/test.d.ts.map +1 -0
- package/dist/data/base32.d.ts +15 -0
- package/dist/data/base32.d.ts.map +1 -0
- package/dist/data/base64.d.ts +14 -0
- package/dist/data/base64.d.ts.map +1 -0
- package/dist/data/byteStreams.d.ts +48 -0
- package/dist/data/byteStreams.d.ts.map +1 -0
- package/dist/data/messageSerializer.d.ts +32 -0
- package/dist/data/messageSerializer.d.ts.map +1 -0
- package/dist/data/schemaSerializer.d.ts +44 -0
- package/dist/data/schemaSerializer.d.ts.map +1 -0
- package/dist/data/schemaValidator.d.ts +27 -0
- package/dist/data/schemaValidator.d.ts.map +1 -0
- package/dist/data/types.d.ts +23 -0
- package/dist/data/types.d.ts.map +1 -0
- package/dist/data/utf8Encoder.d.ts +8 -0
- package/dist/data/utf8Encoder.d.ts.map +1 -0
- package/dist/economics/currencies/currency-converter.d.ts +51 -0
- package/dist/economics/currencies/currency-converter.d.ts.map +1 -0
- package/dist/economics/currencies/currency.d.ts +4 -0
- package/dist/economics/currencies/currency.d.ts.map +1 -0
- package/dist/economics/currencies/euros.d.ts +9 -0
- package/dist/economics/currencies/euros.d.ts.map +1 -0
- package/dist/economics/currencies/token.d.ts +167 -0
- package/dist/economics/currencies/token.d.ts.map +1 -0
- package/dist/economics/economics.d.ts +10 -0
- package/dist/economics/economics.d.ts.map +1 -0
- package/dist/entities/Hash.d.ts +60 -0
- package/dist/entities/Hash.d.ts.map +1 -0
- package/dist/entities/Optional.d.ts +14 -0
- package/dist/entities/Optional.d.ts.map +1 -0
- package/dist/entities/ProofVerificationResult.d.ts +48 -0
- package/dist/entities/ProofVerificationResult.d.ts.map +1 -0
- package/dist/errors/CometBFTErrorCode.d.ts +13 -0
- package/dist/errors/CometBFTErrorCode.d.ts.map +1 -0
- package/dist/errors/carmentis-error.d.ts +175 -0
- package/dist/errors/carmentis-error.d.ts.map +1 -0
- package/dist/errors/type-checking-failure-error.d.ts +5 -0
- package/dist/errors/type-checking-failure-error.d.ts.map +1 -0
- package/dist/network/network.d.ts +2 -0
- package/dist/network/network.d.ts.map +1 -0
- package/dist/providers/AbstractProvider.d.ts +43 -0
- package/dist/providers/AbstractProvider.d.ts.map +1 -0
- package/dist/providers/ExpirationDate.d.ts +11 -0
- package/dist/providers/ExpirationDate.d.ts.map +1 -0
- package/dist/providers/IExternalProvider.d.ts +23 -0
- package/dist/providers/IExternalProvider.d.ts.map +1 -0
- package/dist/providers/IInternalProvider.d.ts +20 -0
- package/dist/providers/IInternalProvider.d.ts.map +1 -0
- package/dist/providers/IProvider.d.ts +56 -0
- package/dist/providers/IProvider.d.ts.map +1 -0
- package/dist/providers/KeyedProvider.d.ts +2 -0
- package/dist/providers/KeyedProvider.d.ts.map +1 -0
- package/dist/providers/MemoryProvider.d.ts +45 -0
- package/dist/providers/MemoryProvider.d.ts.map +1 -0
- package/dist/providers/NetworkProvider.d.ts +145 -0
- package/dist/providers/NetworkProvider.d.ts.map +1 -0
- package/dist/providers/NullMemoryProvider.d.ts +31 -0
- package/dist/providers/NullMemoryProvider.d.ts.map +1 -0
- package/dist/providers/NullNetworkProvider.d.ts +28 -0
- package/dist/providers/NullNetworkProvider.d.ts.map +1 -0
- package/dist/providers/Provider.d.ts +84 -0
- package/dist/providers/Provider.d.ts.map +1 -0
- package/dist/providers/ProviderFactory.d.ts +24 -0
- package/dist/providers/ProviderFactory.d.ts.map +1 -0
- package/dist/providers/nodeRpc/CometBFTNodeWebSocket.d.ts +14 -0
- package/dist/providers/nodeRpc/CometBFTNodeWebSocket.d.ts.map +1 -0
- package/dist/providers/nodeRpc/NewBlockEventType.d.ts +79 -0
- package/dist/providers/nodeRpc/NewBlockEventType.d.ts.map +1 -0
- package/dist/providers/nodeRpc/RPCNodeStatusResponseSchema.d.ts +45 -0
- package/dist/providers/nodeRpc/RPCNodeStatusResponseSchema.d.ts.map +1 -0
- package/dist/providers/nodeRpc/RPCNodeWebSocketCallback.d.ts +5 -0
- package/dist/providers/nodeRpc/RPCNodeWebSocketCallback.d.ts.map +1 -0
- package/dist/providers/serverNetworkProvider.d.ts +5 -0
- package/dist/providers/serverNetworkProvider.d.ts.map +1 -0
- package/dist/records/MerkleLeaf.d.ts +27 -0
- package/dist/records/MerkleLeaf.d.ts.map +1 -0
- package/dist/records/MerkleRecord.d.ts +20 -0
- package/dist/records/MerkleRecord.d.ts.map +1 -0
- package/dist/records/OnChainRecord.d.ts +20 -0
- package/dist/records/OnChainRecord.d.ts.map +1 -0
- package/dist/records/PositionedLeaf.d.ts +8 -0
- package/dist/records/PositionedLeaf.d.ts.map +1 -0
- package/dist/records/ProofDocument.d.ts +74 -0
- package/dist/records/ProofDocument.d.ts.map +1 -0
- package/dist/records/ProofDocumentVB.d.ts +14 -0
- package/dist/records/ProofDocumentVB.d.ts.map +1 -0
- package/dist/records/ProofRecord.d.ts +26 -0
- package/dist/records/ProofRecord.d.ts.map +1 -0
- package/dist/records/Record.d.ts +49 -0
- package/dist/records/Record.d.ts.map +1 -0
- package/dist/records/RecordByChannels.d.ts +14 -0
- package/dist/records/RecordByChannels.d.ts.map +1 -0
- package/dist/records/SaltShaker.d.ts +11 -0
- package/dist/records/SaltShaker.d.ts.map +1 -0
- package/dist/records/types.d.ts +615 -0
- package/dist/records/types.d.ts.map +1 -0
- package/dist/records-old/Merklizer.d.ts +12 -0
- package/dist/records-old/Merklizer.d.ts.map +1 -0
- package/dist/records-old/PepperMerklizer.d.ts +20 -0
- package/dist/records-old/PepperMerklizer.d.ts.map +1 -0
- package/dist/records-old/SaltMerklizer.d.ts +15 -0
- package/dist/records-old/SaltMerklizer.d.ts.map +1 -0
- package/dist/records-old/intermediateRepresentation.d.ts +176 -0
- package/dist/records-old/intermediateRepresentation.d.ts.map +1 -0
- package/dist/records-old/maskManager.d.ts +15 -0
- package/dist/records-old/maskManager.d.ts.map +1 -0
- package/dist/records-old/messageManager.d.ts +8 -0
- package/dist/records-old/messageManager.d.ts.map +1 -0
- package/dist/records-old/pathManager.d.ts +17 -0
- package/dist/records-old/pathManager.d.ts.map +1 -0
- package/dist/trees/merkleTree.d.ts +18 -0
- package/dist/trees/merkleTree.d.ts.map +1 -0
- package/dist/trees/radixChecker.d.ts +6 -0
- package/dist/trees/radixChecker.d.ts.map +1 -0
- package/dist/trees/radixConstants.d.ts +6 -0
- package/dist/trees/radixConstants.d.ts.map +1 -0
- package/dist/trees/radixUtils.d.ts +14 -0
- package/dist/trees/radixUtils.d.ts.map +1 -0
- package/dist/type/AccountHistoryView.d.ts +41 -0
- package/dist/type/AccountHistoryView.d.ts.map +1 -0
- package/dist/type/AppLedgerStateUpdateRequest.d.ts +83 -0
- package/dist/type/AppLedgerStateUpdateRequest.d.ts.map +1 -0
- package/dist/type/Height.d.ts +12 -0
- package/dist/type/Height.d.ts.map +1 -0
- package/dist/type/Transaction.d.ts +85 -0
- package/dist/type/Transaction.d.ts.map +1 -0
- package/dist/type/VirtualBlockchainLabel.d.ts +5 -0
- package/dist/type/VirtualBlockchainLabel.d.ts.map +1 -0
- package/dist/type/VirtualBlockchainType.d.ts +9 -0
- package/dist/type/VirtualBlockchainType.d.ts.map +1 -0
- package/dist/type/types.d.ts +45 -0
- package/dist/type/types.d.ts.map +1 -0
- package/dist/type/valibot/account/Account.d.ts +632 -0
- package/dist/type/valibot/account/Account.d.ts.map +1 -0
- package/dist/type/valibot/blockchain/economics/RetentionPolicy.d.ts +20 -0
- package/dist/type/valibot/blockchain/economics/RetentionPolicy.d.ts.map +1 -0
- package/dist/type/valibot/blockchain/microblock/MicroblockBody.d.ts +567 -0
- package/dist/type/valibot/blockchain/microblock/MicroblockBody.d.ts.map +1 -0
- package/dist/type/valibot/blockchain/microblock/MicroblockHeader.d.ts +75 -0
- package/dist/type/valibot/blockchain/microblock/MicroblockHeader.d.ts.map +1 -0
- package/dist/type/valibot/blockchain/microblock/MicroblockStruct.d.ts +608 -0
- package/dist/type/valibot/blockchain/microblock/MicroblockStruct.d.ts.map +1 -0
- package/dist/type/valibot/blockchain/protocol/ProtocolUpdate.d.ts +30 -0
- package/dist/type/valibot/blockchain/protocol/ProtocolUpdate.d.ts.map +1 -0
- package/dist/type/valibot/blockchain/protocol/ProtocolVariables.d.ts +25 -0
- package/dist/type/valibot/blockchain/protocol/ProtocolVariables.d.ts.map +1 -0
- package/dist/type/valibot/blockchain/section/SectionType.d.ts +40 -0
- package/dist/type/valibot/blockchain/section/SectionType.d.ts.map +1 -0
- package/dist/type/valibot/blockchain/section/sections.d.ts +1201 -0
- package/dist/type/valibot/blockchain/section/sections.d.ts.map +1 -0
- package/dist/type/valibot/blockchain/virtualBlockchain/internalStates.d.ts +251 -0
- package/dist/type/valibot/blockchain/virtualBlockchain/internalStates.d.ts.map +1 -0
- package/dist/type/valibot/blockchain/virtualBlockchain/virtualBlockchains.d.ts +605 -0
- package/dist/type/valibot/blockchain/virtualBlockchain/virtualBlockchains.d.ts.map +1 -0
- package/dist/type/valibot/clientBridge/ClientBridgeEncoder.d.ts +9 -0
- package/dist/type/valibot/clientBridge/ClientBridgeEncoder.d.ts.map +1 -0
- package/dist/type/valibot/clientBridge/WiQrCodeEncoder.d.ts +6 -0
- package/dist/type/valibot/clientBridge/WiQrCodeEncoder.d.ts.map +1 -0
- package/dist/type/valibot/clientBridge/clientBridgeMessages.d.ts +215 -0
- package/dist/type/valibot/clientBridge/clientBridgeMessages.d.ts.map +1 -0
- package/dist/type/valibot/network/NetworksSchema.d.ts +14 -0
- package/dist/type/valibot/network/NetworksSchema.d.ts.map +1 -0
- package/dist/type/valibot/primitives.d.ts +105 -0
- package/dist/type/valibot/primitives.d.ts.map +1 -0
- package/dist/type/valibot/provider/MicroblockInformationSchema.d.ts +55 -0
- package/dist/type/valibot/provider/MicroblockInformationSchema.d.ts.map +1 -0
- package/dist/type/valibot/provider/VirtualBlockchainInfo.d.ts +16 -0
- package/dist/type/valibot/provider/VirtualBlockchainInfo.d.ts.map +1 -0
- package/dist/type/valibot/provider/VirtualBlockchainStatus.d.ts +301 -0
- package/dist/type/valibot/provider/VirtualBlockchainStatus.d.ts.map +1 -0
- package/dist/type/valibot/provider/abci/AbciRequest.d.ts +421 -0
- package/dist/type/valibot/provider/abci/AbciRequest.d.ts.map +1 -0
- package/dist/type/valibot/provider/abci/AbciResponse.d.ts +2884 -0
- package/dist/type/valibot/provider/abci/AbciResponse.d.ts.map +1 -0
- package/dist/type/valibot/walletOperatorMessages/Schemas.d.ts +83 -0
- package/dist/type/valibot/walletOperatorMessages/Schemas.d.ts.map +1 -0
- package/dist/type/valibot/walletRequest/WalletRequestEncoder.d.ts +12 -0
- package/dist/type/valibot/walletRequest/WalletRequestEncoder.d.ts.map +1 -0
- package/dist/type/valibot/walletRequest/walletRequests.d.ts +54 -0
- package/dist/type/valibot/walletRequest/walletRequests.d.ts.map +1 -0
- package/dist/utils/AbciQueryEncoder.d.ts +9 -0
- package/dist/utils/AbciQueryEncoder.d.ts.map +1 -0
- package/dist/utils/AccountSeedEncoder.d.ts +5 -0
- package/dist/utils/AccountSeedEncoder.d.ts.map +1 -0
- package/dist/utils/AccountTransactions.d.ts +94 -0
- package/dist/utils/AccountTransactions.d.ts.map +1 -0
- package/dist/utils/ActorSeedEncoder.d.ts +5 -0
- package/dist/utils/ActorSeedEncoder.d.ts.map +1 -0
- package/dist/utils/Assertion.d.ts +4 -0
- package/dist/utils/Assertion.d.ts.map +1 -0
- package/dist/utils/BalanceAvailability.d.ts +207 -0
- package/dist/utils/BalanceAvailability.d.ts.map +1 -0
- package/dist/utils/BinaryToStringEncoderInterface.d.ts +4 -0
- package/dist/utils/BinaryToStringEncoderInterface.d.ts.map +1 -0
- package/dist/utils/BlockchainUtils.d.ts +69 -0
- package/dist/utils/BlockchainUtils.d.ts.map +1 -0
- package/dist/utils/CometBFTPublicKeyConverter.d.ts +4 -0
- package/dist/utils/CometBFTPublicKeyConverter.d.ts.map +1 -0
- package/dist/utils/HCVCodec.d.ts +52 -0
- package/dist/utils/HCVCodec.d.ts.map +1 -0
- package/dist/utils/Logger.d.ts +14 -0
- package/dist/utils/Logger.d.ts.map +1 -0
- package/dist/utils/SectionLabel.d.ts +22 -0
- package/dist/utils/SectionLabel.d.ts.map +1 -0
- package/dist/utils/SeedEncoder.d.ts +9 -0
- package/dist/utils/SeedEncoder.d.ts.map +1 -0
- package/dist/utils/WalletInteractiveAnchoringEncoder.d.ts +13 -0
- package/dist/utils/WalletInteractiveAnchoringEncoder.d.ts.map +1 -0
- package/dist/utils/WalletSeedEncoder.d.ts +5 -0
- package/dist/utils/WalletSeedEncoder.d.ts.map +1 -0
- package/dist/utils/encoder.d.ts +117 -0
- package/dist/utils/encoder.d.ts.map +1 -0
- package/dist/utils/utils.d.ts +114 -0
- package/dist/utils/utils.d.ts.map +1 -0
- package/dist/wallet/AccountCrypto.d.ts +28 -0
- package/dist/wallet/AccountCrypto.d.ts.map +1 -0
- package/dist/wallet/ActorCrypto.d.ts +18 -0
- package/dist/wallet/ActorCrypto.d.ts.map +1 -0
- package/dist/wallet/ICryptoKeyHandler.d.ts +13 -0
- package/dist/wallet/ICryptoKeyHandler.d.ts.map +1 -0
- package/dist/wallet/WalletCrypto.d.ts +73 -0
- package/dist/wallet/WalletCrypto.d.ts.map +1 -0
- package/package.json +2 -3
- package/dist/carmentis-sdk-core.cjs.map +0 -1
- package/dist/carmentis-sdk-core.d.ts +0 -16204
- package/dist/carmentis-sdk-core.es.map +0 -1
|
@@ -17239,5 +17239,3 @@ var yT = class {
|
|
|
17239
17239
|
};
|
|
17240
17240
|
//#endregion
|
|
17241
17241
|
export { Gr as ACCOUNT_ALLOWED_TRANSFERS, Ur as ACCOUNT_BLOCK_FEES, Vr as ACCOUNT_BURNT_TOKENS, ha as ACCOUNT_CREATION, ya as ACCOUNT_ESCROW_SETTLEMENT, va as ACCOUNT_ESCROW_TRANSFER, ai as ACCOUNT_HISTORY, Wr as ACCOUNT_NAMES, pa as ACCOUNT_PUBLIC_KEY, ba as ACCOUNT_STAKE, Hr as ACCOUNT_STANDARD, ii as ACCOUNT_STATE, ma as ACCOUNT_TOKEN_ISSUANCE, ga as ACCOUNT_TRANSFER, _a as ACCOUNT_VESTING_TRANSFER, Lg as AES256GCMSymmetricEncryptionKey, Ig as AES256GCMSymmetricEncryptionScheme, oa as ALL_SCHEMAS, Ka as ALL_SECTIONS_SCHEMAS, Aa as APP_CREATION, ja as APP_DESCRIPTION, Ia as APP_LEDGER_ACTOR_CREATION, Ba as APP_LEDGER_ACTOR_SUBSCRIPTION, Pa as APP_LEDGER_ALLOWED_PKE_SCHEMES, Na as APP_LEDGER_ALLOWED_SIG_SCHEMES, Ua as APP_LEDGER_AUTHOR, La as APP_LEDGER_CHANNEL_CREATION, za as APP_LEDGER_CHANNEL_INVITATION, Fa as APP_LEDGER_CREATION, Wa as APP_LEDGER_ENDORSEMENT_REQUEST, Ha as APP_LEDGER_PRIVATE_CHANNEL_DATA, Va as APP_LEDGER_PUBLIC_CHANNEL_DATA, Ra as APP_LEDGER_SHARED_SECRET, om as ARRAY, Iw as AbciQueryEncoder, pw as AbciRequestSchema, $ as AbciRequestType, Fw as AbciResponseSchema, mw as AbciResponseType, Cv as AbstractPrivateDecryptionKey, KC as AbstractProvider, Sv as AbstractPublicEncryptionKey, xv as AbstractPublicKeyEncryptionScheme, $h as AccountBreakdownSchema, Ow as AccountByPublicKeyHashAbciResponseSchema, Jm as AccountCreationSectionSchema, yE as AccountCrypto, Qm as AccountEscrowSettlementSectionSchema, Zm as AccountEscrowTransferSectionSchema, Dw as AccountHistoryAbciResponseSchema, ng as AccountHistoryEntrySchema, rg as AccountHistorySchema, bT as AccountHistoryView, tg as AccountInformationSchema, Ex as AccountInternalState, Fx as AccountInternalStateUpdater, $x as AccountMicroblockStructureChecker, _e as AccountNotFoundForAccountHashError, ge as AccountNotFoundForPublicKeyError, xe as AccountNotFoundForPublicKeyHashError, Km as AccountPublicKeySectionSchema, uE as AccountSeedEncoder, $m as AccountStakeSectionSchema, Ew as AccountStateAbciResponseSchema, eg as AccountStateSchema, qm as AccountTokenIssuanceSectionSchema, fE as AccountTransaction, dE as AccountTransactions, Ym as AccountTransferSectionSchema, eh as AccountUnstakeSectionSchema, ag as AccountUpdateSchema, Pw as AccountUpdatesAbciResponseSchema, eS as AccountVb, Xm as AccountVestingTransferSectionSchema, Th as AccountVirtualBlockchainInternalStateSchema, Fh as AccountVirtualBlockchainStateSchema, re as ActorAlreadyDefinedError, vE as ActorCrypto, oe as ActorNotDefinedError, he as ActorNotInvitedError, Te as ActorNotSubscribedError, pE as ActorSeedEncoder, BS as ActorType, cu as Aes, Hm as AllowedAdditionalWriterSectionSchema, S as AlreadySubscribedError, zx as AppLedgerLocalStateUpdaterV1, JS as AppLedgerMicroblockBuildRequestSchema, YS as AppLedgerMicroblockBuildRequestValidation, ch as ApplicationCreationSectionSchema, lh as ApplicationDescriptionSectionSchema, Ox as ApplicationInternalState, Ix as ApplicationInternalStateUpdater, ph as ApplicationLedgerActorCreationSectionSchema, Ah as ApplicationLedgerActorInvitationStateSchema, Mh as ApplicationLedgerActorSchema, _h as ApplicationLedgerActorSubscriptionSectionSchema, dh as ApplicationLedgerAllowedPkeSchemesSectionSchema, uh as ApplicationLedgerAllowedSigSchemesSectionSchema, bh as ApplicationLedgerAuthorSectionSchema, mh as ApplicationLedgerChannelCreationSectionSchema, gh as ApplicationLedgerChannelInvitationSectionSchema, kh as ApplicationLedgerChannelSchema, fh as ApplicationLedgerCreationSectionSchema, xh as ApplicationLedgerEndorsementRequestSectionSchema, kx as ApplicationLedgerInternalState, Nh as ApplicationLedgerInternalStateObjectSchema, zS as ApplicationLedgerMicroblockBuilder, cS as ApplicationLedgerMicroblockStructureChecker, Ce as ApplicationLedgerNotFoundError, yh as ApplicationLedgerPrivateChannelDataSectionSchema, vh as ApplicationLedgerPublicChannelDataSectionSchema, hh as ApplicationLedgerSharedSecretSectionSchema, jh as ApplicationLedgerSharedSecretStateSchema, IS as ApplicationLedgerVb, zh as ApplicationLedgerVirtualBlockchainStateSchema, tS as ApplicationMicroblockStructureChecker, ye as ApplicationNotFoundError, Oh as ApplicationVBInternalStateObjectSchema, nS as ApplicationVb, Rh as ApplicationVirtualBlockchainStateSchema, sS as Assertion, Vm as AuxiliarySignatureSectionSchema, nw as AwaitMicroblockAnchoringAbciRequestSchema, vm as BIN256, _m as BINARY, Dr as BK_EARNED_BLOCK_FEES, Er as BK_EARNED_TX_FEES, Br as BK_NAMES, _r as BK_PAID_BLOCK_FEES, gr as BK_PAID_TX_FEES, hr as BK_PLUS, kr as BK_PURCHASE, Mr as BK_RECEIVED_ESCROW, Nr as BK_RECEIVED_ESCROW_REFUND, Pr as BK_RECEIVED_EXPIRED_ESCROW, Or as BK_RECEIVED_ISSUANCE, Ar as BK_RECEIVED_PAYMENT, Fr as BK_RECEIVED_SLASHED_TOKENS, jr as BK_RECEIVED_VESTING, zr as BK_REFERENCES, Ir as BK_REF_BLOCK, Lr as BK_REF_MICROBLOCK, Rr as BK_REF_SECTION, yr as BK_SALE, Sr as BK_SENT_ESCROW, Cr as BK_SENT_ESCROW_REFUND, wr as BK_SENT_EXPIRED_ESCROW, vr as BK_SENT_ISSUANCE, br as BK_SENT_PAYMENT, Tr as BK_SENT_SLASHED_TOKENS, xr as BK_SENT_VESTING, di as BLOCK_CONTENT, ui as BLOCK_INFORMATION, um as BOOLEAN, mE as BalanceAvailability, OC as Base32, cg as Base64, Ey as BaseHCVSignatureDecoder, Yv as BaseHCVSignatureEncoder, Bg as BasePrivateSignatureKey, Vg as BasePublicSignatureKey, yw as BlockContentAbciResponseSchema, _w as BlockInformationAbciResponseSchema, Nw as BlockModifiedAccountsAbciResponseSchema, b as BlockchainError, X as BlockchainUtils, QS as BytesSignatureEncoder, mg as BytesToBase64Encoder, hg as BytesToHexEncoder, bx as CBORCryptoBinaryEncoder, sr as CENTITOKEN, Hn as CHAIN, hn as CMTSToken, Jr as CONTRACT_PARAMETER_SCHEMA, Yr as CONTRACT_SCHEMA, le as CannotSubscribeError, o as CarmentisError, n as CarmentisErrorCode, gw as ChainInformationAbciResponseSchema, ae as ChannelAlreadyDefinedError, se as ChannelNotDefinedError, GT as ClientBridgeEncoder, WT as ClientBridgeMessageSchema, zT as ClientBridgeMessageSchema_Answer, VT as ClientBridgeMessageSchema_ConnectionAccepted, BT as ClientBridgeMessageSchema_ConnectionInfo, IT as ClientBridgeMessageSchema_ConnectionToken, UT as ClientBridgeMessageSchema_Error, LT as ClientBridgeMessageSchema_ForwardedAnswer, HT as ClientBridgeMessageSchema_ForwardedRequest, RT as ClientBridgeMessageSchema_GetConnectionInfo, PT as ClientBridgeMessageSchema_Request, FT as ClientBridgeMessageSchema_UpdateQr, MT as ClientBridgeMessageType, KT as ClientBridgeValidation, GC as CometBFTErrorCode, Gw as CometBFTNodeWebSocket, ZS as CometBFTPublicKey, Bw as CometBFTPublicKeyConverter, Yx as ConstraintNameByConstraint, M as Crypto, xx as CryptoEncoderFactory, d as CryptoError, Wv as CryptoSchemeFactory, rv as CryptographicHashSchemeId, HC as CurrencyConverterFactory, pe as CurrentActorNotFoundError, zm as CustomSectionSchema, gn as DATA, qa as DEF, f as DecryptionError, ir as ECO, qr as ERROR, Ja as ERRORS, LC as Economics, v as EconomicsError, Uv as Ed25519PrivateSignatureKey, Hv as Ed25519PublicSignatureKey, Vv as Ed25519SignatureScheme, u as EmptyBlockError, pg as EncoderFactory, vy as EnvApiKeyPkmsCredentialProvider, hw as ErrorAbciResponseSchema, qh as EscrowLockSchema, Kh as EscrowParametersSchema, VC as Euros, UC as EurosToCMTSConverter, qC as ExpirationDate, Rg as ExtendedSymmetricEncryptionKey, fr as FIXED_GAS_FEE, Vn as FORMAT, Tx as FeesCalculationFormulaFactory, wx as FirstFeesFormula, mr as GAS_ATOMS_PER_GAS, pr as GAS_PER_BYTE, hC as GenericSymmetricKeyEncoder, jw as GenesisSnapshotAbciResponseSchema, ow as GetAccountByPublicKeyHashAbciRequestSchema, aw as GetAccountHistoryAbciRequestSchema, iw as GetAccountStateAbciRequestSchema, fw as GetAccountUpdatesAbciRequestSchema, QC as GetBlockContentAbciRequestSchema, ZC as GetBlockInformationAbciRequestSchema, dw as GetBlockModifiedAccountsAbciRequestSchema, XC as GetChainInformationAbciRequestSchema, lw as GetGenesisSnapshotAbciRequestSchema, rw as GetMicroblockBodysAbciRequestSchema, tw as GetMicroblockInformationAbciRequestSchema, cw as GetObjectListAbciRequestSchema, uw as GetRawBlockContentAbciRequestSchema, sw as GetValidatorNodeByAddressAbciRequestSchema, $C as GetVirtualBlockchainStateAbciRequestSchema, ew as GetVirtualBlockchainUpdateAbciRequestSchema, Fn as HASHABLE, zn as HASHED, ym as HASH_STR, _g as HCVCodec, gg as HCVDecoded, Gv as HCVPkeEncoder, vv as HKDF, jy as HandlerBasedSignatureEncoder, Dx as Hash, $c as Hashes, lr as INITIAL_OFFER, i as IllegalParameterError, a as IllegalStateError, r as IllegalUsageError, cT as IntermediateRepresentation, m as InternalError, Px as InternalStateFactory, Ux as InternalStateUpdaterFactory, ie as InvalidActorError, fe as InvalidChannelError, y as InvalidTokenUnitError, uS as JsonSchema, pC as JwkSignatureEncoder, gv as KeyDerivationFunction, _v as KeyDerivationFunctionSchemeId, zg as KeyExchangeSchemeId, Wh as LOCK_TYPE_COUNT, Qh as LockSchema, Gh as LockType, O as Logger, Un as MAGIC_STRING, In as MASKABLE, Bn as MASKED, dr as MAXIMUM_GAS_PRICE, er as MAX_MICROBLOCK_FUTURE_DELAY, $n as MAX_MICROBLOCK_PAST_DELAY, rr as MB_STATUS_PREVIOUS_HASH_ERROR, nr as MB_STATUS_TIMESTAMP_ERROR, tr as MB_STATUS_UNRECOVERABLE_ERROR, _i as MICROBLOCK_BODY, hi as MICROBLOCK_HEADER, pi as MICROBLOCK_HEADER_BODY_HASH_OFFSET, fi as MICROBLOCK_HEADER_PREVIOUS_HASH_OFFSET, mi as MICROBLOCK_HEADER_SIZE, gi as MICROBLOCK_SECTION, vi as MICROBLOCK_VB_INFORMATION, cr as MILLITOKEN, ur as MINIMUM_GAS_PRICE, ky as MLDSA65HCVSignatureDecoder, Qv as MLDSA65HCVSignatureEncoder, Wg as MLDSA65PrivateSignatureKey, Ug as MLDSA65PublicSignatureKey, Hg as MLDSA65SignatureScheme, bd as MLDsa, Wd as MLKem, Vi as MSG_ACCOUNT_BY_PUBLIC_KEY_HASH, zi as MSG_ACCOUNT_HISTORY, Li as MSG_ACCOUNT_STATE, Mi as MSG_AWAIT_MICROBLOCK_ANCHORING, Ti as MSG_BLOCK_CONTENT, Ci as MSG_BLOCK_INFORMATION, xi as MSG_CHAIN_INFORMATION, yi as MSG_ERROR, qi as MSG_GENESIS_SNAPSHOT, Bi as MSG_GET_ACCOUNT_BY_PUBLIC_KEY_HASH, Ri as MSG_GET_ACCOUNT_HISTORY, Ii as MSG_GET_ACCOUNT_STATE, wi as MSG_GET_BLOCK_CONTENT, Si as MSG_GET_BLOCK_INFORMATION, bi as MSG_GET_CHAIN_INFORMATION, Ki as MSG_GET_GENESIS_SNAPSHOT, Pi as MSG_GET_MICROBLOCK_BODYS, Ai as MSG_GET_MICROBLOCK_INFORMATION, Wi as MSG_GET_OBJECT_LIST, Hi as MSG_GET_VALIDATOR_NODE_BY_ADDRESS, Ei as MSG_GET_VIRTUAL_BLOCKCHAIN_STATE, Oi as MSG_GET_VIRTUAL_BLOCKCHAIN_UPDATE, Ni as MSG_MICROBLOCK_ANCHORING, Fi as MSG_MICROBLOCK_BODYS, ji as MSG_MICROBLOCK_INFORMATION, Gi as MSG_OBJECT_LIST, Ui as MSG_VALIDATOR_NODE_BY_ADDRESS, Di as MSG_VIRTUAL_BLOCKCHAIN_STATE, ki as MSG_VIRTUAL_BLOCKCHAIN_UPDATE, nT as MaskManager, JC as MemoryProvider, kS as MerkleLeaf, Q as MerkleLeafTypeEnum, NS as MerkleRecord, OS as MerkleTree, $w as Merklizer, lT as MessageManager, PC as MessageSerializer, FC as MessageUnserializer, te as MicroBlockNotFoundError, ne as MicroBlockNotFoundInBlockError, x as MicroBlockNotFoundInVirtualBlockchainAtHeightError, Kx as Microblock, Cw as MicroblockAnchoringAbciResponseSchema, ww as MicroblockBodyItemSchema, Ch as MicroblockBodySchema, Tw as MicroblockBodysAbciResponseSchema, RS as MicroblockConsistencyChecker, Nm as MicroblockHeaderSchema, Sw as MicroblockInformationAbciResponseSchema, Uh as MicroblockInformationSchema, Gx as MicroblockStructSchema, s as MicroblockStructureCheckingError, Fv as MlKemCiphertextEncoder, Lv as MlKemPrivateDecryptionKey, Iv as MlKemPublicEncryptionKey, wv as MlKemPublicKeyEncryptionScheme, Ji as NODE_MESSAGES, dm as NULL, lm as NUMBER, Zn as N_VIRTUAL_BLOCKCHAINS, Dy as NativeHCVSignatureDecoder, Xv as NativeHCVSignatureEncoder, Lw as NetworkProvider, JT as NetworksFileSchema, Ww as NewBlockEventSchema, De as NoSharedSecretError, g as NodeConnectionRefusedError, _ as NodeEndpointClosedWhileCatchingUpError, h as NodeError, Zh as NodeStakingLockSchema, Xh as NodeStakingParametersSchema, de as NotAllowedPkeSchemeError, ue as NotAllowedSignatureSchemeError, c as NotAuthenticatedError, ee as NotImplementedError, Rw as NullMemoryProvider, zw as NullNetworkProvider, sm as OBJECT, Da as ORG_CREATION, Oa as ORG_DESCRIPTION, Aw as ObjectListAbciResponseSchema, vS as OnChainChannelSchema, bS as OnChainItemListSchema, yS as OnChainItemSchema, FS as OnChainRecord, LS as Optional, oh as OrganizationCreationSectionSchema, sh as OrganizationDescriptionSectionSchema, Mx as OrganizationInternalState, Hx as OrganizationInternalStateUpdater, Zx as OrganizationMicroblockStructureChecker, ve as OrganizationNotFoundError, Eh as OrganizationVBInternalStateObjectSchema, Qx as OrganizationVb, Ih as OrganizationVirtualBlockchainStateSchema, uv as PBKDF2, Ln as PROPERTIES, ua as PROTOCOL_CREATION, da as PROTOCOL_UPDATE, si as PROTOCOL_VARIABLES, ci as PROTOCOL_VB_STATE, Wn as PROTOCOL_VERSION, l as ParsingError, lv as PasswordBasedKeyDerivationFunction, cv as PasswordBasedKeyDerivationFunctionSchemeId, Kw as PathManager, eT as PepperMerklizer, mC as PkeEncoderFactory, by as PkmsSecp256k1PrivateSignatureKey, xy as PkmsSecp256k1PublicSignatureKey, Ay as PkmsSecp256k1SignatureDecoder, Sy as PkmsSecp256k1SignatureEncoder, DS as ProofDocument, lS as ProofDocumentVB, xS as ProofFieldTypeEnum, AS as ProofRecord, ce as ProofVerificationFailedError, WC as ProofVerificationResult, TS as ProofWrapperSchema, Um as ProtocolCreationSectionSchema, we as ProtocolError, jx as ProtocolInternalState, Vx as ProtocolInternalStateUpdater, aS as ProtocolMicroblockStructureChecker, Rm as ProtocolUpdateSchema, Wm as ProtocolUpdateSectionSchema, wh as ProtocolVBInternalStateObjectSchema, Lm as ProtocolVariablesSchema, Gm as ProtocolVariablesSectionSchema, oS as ProtocolVb, Bh as ProtocolVirtualBlockchainStateSchema, Vw as Provider, Hw as ProviderFactory, bv as PublicKeyEncryptionAlgorithmId, yv as PublicKeyEncryptionSchemeId, fT as RADIX_CST, ri as RECORD_DESCRIPTION, Rn as REDACTED, YC as RPCNodeStatusResponseSchema, gT as RadixChecker, pT as RadixUtils, Qs as Random, Mw as RawBlockContentAbciResponseSchema, Mv as ReadStream, PS as Record, WS as RecordActorAssignationSchema, VS as RecordActorSchema, jS as RecordByChannels, US as RecordChannelAssignationSchema, HS as RecordChannelSchema, qS as RecordHashableFieldSchema, KS as RecordMaskableFieldSchema, GS as RecordMaskedPartSchema, ig as RequestedAccountUpdateSchema, Im as RetentionCostBreakdownSchema, Cx as RetentionCostCalculator, Fm as RetentionPolicySchema, Pm as RetentionTierSchema, Kr as SCHEMAS, sa as SECTIONS, ca as SIGNATURE, la as SIGNATURE_SCHEMA, cm as STRING, tT as SaltMerklizer, MS as SaltShaker, Nv as SchemaSerializer, Pv as SchemaUnserializer, IC as SchemaValidator, xC as Scrypt, hp as Secp256k1, Oy as Secp256k1HCVSignatureDecoder, Zv as Secp256k1HCVSignatureEncoder, Bv as Secp256k1PrivateSignatureKey, zv as Secp256k1PublicSignatureKey, Rv as Secp256k1SignatureScheme, Z as SectionConstraint, me as SectionError, Rx as SectionLabel, Ee as SectionNotFoundError, Sh as SectionSchema, D as SectionType, lE as SeedEncoder, CC as SelfProvidedApiKeyPkmsCredentialProvider, Oe as SerializationError, Uw as ServerNetworkProvider, iv as Sha256CryptographicHash, p as SharedKeyDecryptionError, SC as SignatureAlgorithmId, wC as SignatureCacheDisabled, TC as SignatureCacheEntry, EC as SignatureCacheMonothread, Xa as SignatureSchemeId, Bm as SignatureSectionSchema, Xx as StructureChecker, Fg as SymmetricEncryptionSchemeId, or as TOKEN, ar as TOKEN_NAME, vn as TYPE_ARRAY, Nn as TYPE_ARRAY_OF, An as TYPE_BIN256, kn as TYPE_BINARY, Sn as TYPE_BOOLEAN, jn as TYPE_HASH_STR, Mn as TYPE_MAIN, Pn as TYPE_NAMES, Cn as TYPE_NULL, xn as TYPE_NUMBER, yn as TYPE_OBJECT, bn as TYPE_STRING, Tn as TYPE_UINT16, En as TYPE_UINT24, Dn as TYPE_UINT32, On as TYPE_UINT48, wn as TYPE_UINT8, _n as TYPE_UNKNOWN, qx as ThrownErrorMicroblockSearchFailureFallback, Wx as TimestampValidationResult, pn as TokenUnit, mn as TokenUnitLabel, yT as Transaction, fS as TransformationTypeEnum, ao as TypeChecker, no as TypeCheckingFailureError, mS as TypeEnum, io as TypeManager, pm as UINT16, mm as UINT24, hm as UINT32, gm as UINT48, fm as UINT8, $a as Utf8Encoder, k as Utils, Kn as VB_ACCOUNT, Yn as VB_APPLICATION, Xn as VB_APP_LEDGER, Qn as VB_NAME, Jn as VB_ORGANIZATION, Gn as VB_PROTOCOL, li as VB_STATES, qn as VB_VALIDATOR_NODE, oi as VIRTUAL_BLOCKCHAIN_STATE, Ta as VN_APPROVAL, Ca as VN_COMETBFT_PUBLIC_KEY_DECLARATION, Sa as VN_CREATION, wa as VN_RPC_ENDPOINT, ih as ValidatorNodeApprovalSectionSchema, kw as ValidatorNodeByAddressAbciResponseSchema, nh as ValidatorNodeCometbftPublicKeyDeclarationSectionSchema, th as ValidatorNodeCreationSectionSchema, Nx as ValidatorNodeInternalState, Bx as ValidatorNodeInternalStateUpdater, rS as ValidatorNodeMicroblockStructureChecker, be as ValidatorNodeNotFoundError, rh as ValidatorNodeRpcEndpointSectionSchema, ah as ValidatorNodeSlashingCancellationSectionSchema, Dh as ValidatorNodeVBInternalStateObjectSchema, iS as ValidatorNodeVb, Lh as ValidatorNodeVirtualBlockchainStateSchema, Yh as VestingLockSchema, Jh as VestingParametersSchema, Jx as VirtualBlockchain, Hh as VirtualBlockchainInfoSchema, ST as VirtualBlockchainLabel, Se as VirtualBlockchainNotFoundError, Ph as VirtualBlockchainSharedPropertiesSchema, bw as VirtualBlockchainStateAbciResponseSchema, Vh as VirtualBlockchainStateSchema, YT as VirtualBlockchainStatusSchema, H as VirtualBlockchainType, xw as VirtualBlockchainUpdateAbciResponseSchema, ta as WIMSG_ANSWER, ra as WIMSG_CONNECTION_ACCEPTED, na as WIMSG_CONNECTION_INFO, Qi as WIMSG_CONNECTION_TOKEN, $i as WIMSG_FORWARDED_ANSWER, ia as WIMSG_FORWARDED_REQUEST, ea as WIMSG_GET_CONNECTION_INFO, Xi as WIMSG_REQUEST, Zi as WIMSG_UPDATE_QR, Ya as WI_INVALID_SIGNATURE, jT as WI_MAX_SERVER_URL_LENGTH, aa as WI_MESSAGES, Yi as WI_QR_CODE, bE as WalletCrypto, hE as WalletInteractiveAnchoringEncoder, $T as WalletInteractiveAnchoringRequestActorKeySchema, QT as WalletInteractiveAnchoringRequestApprovalHandshakeSchema, eE as WalletInteractiveAnchoringRequestApprovalSignatureSchema, tE as WalletInteractiveAnchoringRequestSchema, XT as WalletInteractiveAnchoringRequestType, rE as WalletInteractiveAnchoringResponseActorKeyRequiredSchema, iE as WalletInteractiveAnchoringResponseApprovalDataSchema, aE as WalletInteractiveAnchoringResponseApprovalSignatureSchema, nE as WalletInteractiveAnchoringResponseErrorSchema, oE as WalletInteractiveAnchoringResponseSchema, ZT as WalletInteractiveAnchoringResponseType, gE as WalletInteractiveAnchoringValidation, TT as WalletRequestAuthByPublicKeySchema, XS as WalletRequestBasedApplicationLedgerMicroblockBuilder, ET as WalletRequestDataApprovalSchema, sE as WalletRequestEncoder, DT as WalletRequestSchema, CT as WalletRequestType, cE as WalletRequestValidation, OT as WalletResponseAuthByPublicKeySchema, kT as WalletResponseDataApprovalSchema, AT as WalletResponseSchema, wT as WalletResponseType, _E as WalletSeedEncoder, qT as WiQrCodeEncoder, NT as WiQrCodeSchema, jv as WriteStream, jm as accountId, bm as array, Am as bin256, km as binary, Sm as boolean, Mm as height, B as number, xm as string, Tm as uint16, Em as uint24, Dm as uint32, Om as uint48, wm as uint8, V as uint8array };
|
|
17242
|
-
|
|
17243
|
-
//# sourceMappingURL=carmentis-sdk-core.es.map
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare class CometBFTPublicKey {
|
|
2
|
+
private readonly type;
|
|
3
|
+
private readonly publicKey;
|
|
4
|
+
private static readonly ED25519_PUBLIC_KEY_TYPE;
|
|
5
|
+
static createFromEd25519PublicKey(publicKey: string): CometBFTPublicKey;
|
|
6
|
+
private constructor();
|
|
7
|
+
getType(): string;
|
|
8
|
+
getPublicKey(): string;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=CometBFTPublicKey.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CometBFTPublicKey.d.ts","sourceRoot":"","sources":["../../src/cometbft/CometBFTPublicKey.ts"],"names":[],"mappings":"AAAA,qBAAa,iBAAiB;IAQtB,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,SAAS;IAP9B,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,uBAAuB,CAA8B;IAC7E,MAAM,CAAC,0BAA0B,CAAE,SAAS,EAAE,MAAM;IAIpD,OAAO;IAKP,OAAO;IAIP,YAAY;CAGf"}
|
package/dist/common.d.ts
ADDED
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file Automatically generated by barrelsby.
|
|
3
|
+
*/
|
|
4
|
+
export * from './blockchain/feesCalculator/FeesCalculationFormulaFactory';
|
|
5
|
+
export * from './blockchain/feesCalculator/FirstFeesFormula';
|
|
6
|
+
export * from './blockchain/feesCalculator/IFeesFormula';
|
|
7
|
+
export * from './blockchain/feesCalculator/RetentionCostCalculator';
|
|
8
|
+
export * from './blockchain/internalStates/AccountInternalState';
|
|
9
|
+
export * from './blockchain/internalStates/ApplicationInternalState';
|
|
10
|
+
export * from './blockchain/internalStates/ApplicationLedgerInternalState';
|
|
11
|
+
export * from './blockchain/internalStates/IInternalState';
|
|
12
|
+
export * from './blockchain/internalStates/IInternalStateUpdater';
|
|
13
|
+
export * from './blockchain/internalStates/InternalStateFactory';
|
|
14
|
+
export * from './blockchain/internalStates/OrganizationInternalState';
|
|
15
|
+
export * from './blockchain/internalStates/ProtocolInternalState';
|
|
16
|
+
export * from './blockchain/internalStates/ValidatorNodeInternalState';
|
|
17
|
+
export * from './blockchain/internalStatesUpdater/AccountInternalStateUpdater';
|
|
18
|
+
export * from './blockchain/internalStatesUpdater/ApplicationInternalStateUpdater';
|
|
19
|
+
export * from './blockchain/internalStatesUpdater/ApplicationLedgerLocalStateUpdater';
|
|
20
|
+
export * from './blockchain/internalStatesUpdater/InternalStateUpdaterFactory';
|
|
21
|
+
export * from './blockchain/internalStatesUpdater/OrganizationInternalStateUpdater';
|
|
22
|
+
export * from './blockchain/internalStatesUpdater/ProtocolInternalStateUpdater';
|
|
23
|
+
export * from './blockchain/internalStatesUpdater/ValidatorNodeInternalStateUpdater';
|
|
24
|
+
export * from './blockchain/microblock/Microblock';
|
|
25
|
+
export * from './blockchain/microblock/MicroblockConsistencyChecker';
|
|
26
|
+
export * from './blockchain/microblock/TimestampValidationResult';
|
|
27
|
+
export * from './blockchain/structureCheckers/AccountMicroblockStructureChecker';
|
|
28
|
+
export * from './blockchain/structureCheckers/ApplicationLedgerMicroblockStructureChecker';
|
|
29
|
+
export * from './blockchain/structureCheckers/ApplicationMicroblockStructureChecker';
|
|
30
|
+
export * from './blockchain/structureCheckers/IMicroblockStructureChecker';
|
|
31
|
+
export * from './blockchain/structureCheckers/OrganizationMicroblockStructureChecker';
|
|
32
|
+
export * from './blockchain/structureCheckers/ProtocolMicroblockStructureChecker';
|
|
33
|
+
export * from './blockchain/structureCheckers/SectionConstraint';
|
|
34
|
+
export * from './blockchain/structureCheckers/StructureChecker';
|
|
35
|
+
export * from './blockchain/structureCheckers/ValidatorNodeMicroblockStructureChecker';
|
|
36
|
+
export * from './blockchain/virtualBlockchains/AccountVb';
|
|
37
|
+
export * from './blockchain/virtualBlockchains/ApplicationLedgerMicroblockBuilder';
|
|
38
|
+
export * from './blockchain/virtualBlockchains/ApplicationLedgerVb';
|
|
39
|
+
export * from './blockchain/virtualBlockchains/ApplicationVb';
|
|
40
|
+
export * from './blockchain/virtualBlockchains/OrganizationVb';
|
|
41
|
+
export * from './blockchain/virtualBlockchains/ProtocolVb';
|
|
42
|
+
export * from './blockchain/virtualBlockchains/ValidatorNodeVb';
|
|
43
|
+
export * from './blockchain/virtualBlockchains/VirtualBlockchain';
|
|
44
|
+
export * from './blockchain/virtualBlockchains/WalletRequestBasedApplicationLedgerMicroblockBuilder';
|
|
45
|
+
export * from './blockchain/virtualBlockchains/events/OnMicroblockInsertedEventListener';
|
|
46
|
+
export * from './blockchain/virtualBlockchains/fallbacks/IMicroblockSearchFailureFallback';
|
|
47
|
+
export * from './blockchain/virtualBlockchains/fallbacks/ThrownErrorMicroblockSearchFailureFallback';
|
|
48
|
+
export * from './blockchainOld/Account';
|
|
49
|
+
export * from './blockchainOld/Application';
|
|
50
|
+
export * from './blockchainOld/ApplicationLedger';
|
|
51
|
+
export * from './blockchainOld/Organization';
|
|
52
|
+
export * from './blockchainOld/Protocol';
|
|
53
|
+
export * from './blockchainOld/ValidatorNode';
|
|
54
|
+
export * from './blockchainOld/blockchain';
|
|
55
|
+
export * from './cometbft/CometBFTPublicKey';
|
|
56
|
+
export * from './constants/ActorType';
|
|
57
|
+
export * from './constants/chain';
|
|
58
|
+
export * from './constants/constants';
|
|
59
|
+
export * from './constants/data';
|
|
60
|
+
export * from './constants/economics';
|
|
61
|
+
export * from './constants/errors';
|
|
62
|
+
export * from './constants/schemas';
|
|
63
|
+
export * from './constants/sections';
|
|
64
|
+
export * from './crypto/CryptoSchemeFactory';
|
|
65
|
+
export * from './crypto/aes';
|
|
66
|
+
export * from './crypto/crypto';
|
|
67
|
+
export * from './crypto/hashes';
|
|
68
|
+
export * from './crypto/ml-dsa';
|
|
69
|
+
export * from './crypto/ml-kem';
|
|
70
|
+
export * from './crypto/random';
|
|
71
|
+
export * from './crypto/secp256k1';
|
|
72
|
+
export * from './crypto/encoder/CryptoEncoderFactory';
|
|
73
|
+
export * from './crypto/encoder/signature/BytesSignatureEncoder';
|
|
74
|
+
export * from './crypto/encoder/signature/HandlerBasedSignatureEncoder';
|
|
75
|
+
export * from './crypto/encoder/signature/ISignatureEncoderHandler';
|
|
76
|
+
export * from './crypto/encoder/signature/JwkSignatureEncoder';
|
|
77
|
+
export * from './crypto/encoder/signature/SignatureEncoderInterface';
|
|
78
|
+
export * from './crypto/encoder/signature/StringSignatureEncoder';
|
|
79
|
+
export * from './crypto/encoder/signature/hcv/BaseHCVSignatureDecoder';
|
|
80
|
+
export * from './crypto/encoder/signature/hcv/BaseHCVSignatureEncoder';
|
|
81
|
+
export * from './crypto/encoder/signature/hcv/HCVSignatureEncoder';
|
|
82
|
+
export * from './crypto/encoder/signature/hcv/MLDSA65HCVSignatureDecoder';
|
|
83
|
+
export * from './crypto/encoder/signature/hcv/MLDSA65HCVSignatureEncoder';
|
|
84
|
+
export * from './crypto/encoder/signature/hcv/NativeHCVSignatureDecoder';
|
|
85
|
+
export * from './crypto/encoder/signature/hcv/NativeHCVSignatureEncoder';
|
|
86
|
+
export * from './crypto/encoder/signature/hcv/PkmsSecp256k1SignatureDecoder';
|
|
87
|
+
export * from './crypto/encoder/signature/hcv/PkmsSecp256k1SignatureEncoder';
|
|
88
|
+
export * from './crypto/encoder/signature/hcv/Secp256k1HCVSignatureDecoder';
|
|
89
|
+
export * from './crypto/encoder/signature/hcv/Secp256k1HCVSignatureEncoder';
|
|
90
|
+
export * from './crypto/encryption/public-key-encryption/HCVPkeEncoder';
|
|
91
|
+
export * from './crypto/encryption/public-key-encryption/MlKemCiphertextEncoder';
|
|
92
|
+
export * from './crypto/encryption/public-key-encryption/MlKemPrivateDecryptionKey';
|
|
93
|
+
export * from './crypto/encryption/public-key-encryption/MlKemPublicEncryptionKey';
|
|
94
|
+
export * from './crypto/encryption/public-key-encryption/MlKemPublicKeyEncryptionScheme';
|
|
95
|
+
export * from './crypto/encryption/public-key-encryption/PkeEncoderFactory';
|
|
96
|
+
export * from './crypto/encryption/public-key-encryption/PkeEncoderInterface';
|
|
97
|
+
export * from './crypto/encryption/public-key-encryption/PublicKeyEncryptionSchemeId';
|
|
98
|
+
export * from './crypto/encryption/public-key-encryption/PublicKeyEncryptionSchemeInterface';
|
|
99
|
+
export * from './crypto/encryption/symmetric-encryption/encryption-interface';
|
|
100
|
+
export * from './crypto/encryption/symmetric-encryption/generic-symmetric-key-encoder';
|
|
101
|
+
export * from './crypto/hash/hash-interface';
|
|
102
|
+
export * from './crypto/kdf/HKDF';
|
|
103
|
+
export * from './crypto/kdf/KeyDerivationFunction';
|
|
104
|
+
export * from './crypto/kdf/PBKDF2';
|
|
105
|
+
export * from './crypto/kdf/PasswordBasedKeyDerivationFunction';
|
|
106
|
+
export * from './crypto/kdf/PasswordBasedKeyDerivationFunctionSchemeId';
|
|
107
|
+
export * from './crypto/kdf/Scrypt';
|
|
108
|
+
export * from './crypto/kdf/keyDerivationFunctionSchemeId';
|
|
109
|
+
export * from './crypto/signature/BasePrivateSignatureKey';
|
|
110
|
+
export * from './crypto/signature/BasePublicSignatureKey';
|
|
111
|
+
export * from './crypto/signature/PrivateSignatureKey';
|
|
112
|
+
export * from './crypto/signature/PublicSignatureKey';
|
|
113
|
+
export * from './crypto/signature/SignatureAlgorithmId';
|
|
114
|
+
export * from './crypto/signature/SignatureScheme';
|
|
115
|
+
export * from './crypto/signature/SignatureSchemeId';
|
|
116
|
+
export * from './crypto/signature/ml-dsa-65';
|
|
117
|
+
export * from './crypto/signature/ed25519/Ed25519PrivateSignatureKey';
|
|
118
|
+
export * from './crypto/signature/ed25519/Ed25519PublicSignatureKey';
|
|
119
|
+
export * from './crypto/signature/ed25519/Ed25519SignatureScheme';
|
|
120
|
+
export * from './crypto/signature/pkms/PkmsSecp256k1PrivateSignatureKey';
|
|
121
|
+
export * from './crypto/signature/pkms/pkmsCredentialProvider/EnvApiKeyPkmsCredentialProvider';
|
|
122
|
+
export * from './crypto/signature/pkms/pkmsCredentialProvider/IPkmsCredentialProvider';
|
|
123
|
+
export * from './crypto/signature/pkms/pkmsCredentialProvider/SelfProvidedApiKeyPkmsCredentialProvider';
|
|
124
|
+
export * from './crypto/signature/secp256k1/Secp256k1PrivateSignatureKey';
|
|
125
|
+
export * from './crypto/signature/secp256k1/Secp256k1PublicSignatureKey';
|
|
126
|
+
export * from './crypto/signature/secp256k1/Secp256k1SignatureScheme';
|
|
127
|
+
export * from './crypto/signatureCache/SignatureCacheDisabled';
|
|
128
|
+
export * from './crypto/signatureCache/SignatureCacheEntry';
|
|
129
|
+
export * from './crypto/signatureCache/SignatureCacheInterface';
|
|
130
|
+
export * from './crypto/signatureCache/SignatureCacheMonothread';
|
|
131
|
+
export * from './crypto/signatureCache/test';
|
|
132
|
+
export * from './data/base32';
|
|
133
|
+
export * from './data/base64';
|
|
134
|
+
export * from './data/byteStreams';
|
|
135
|
+
export * from './data/messageSerializer';
|
|
136
|
+
export * from './data/schemaSerializer';
|
|
137
|
+
export * from './data/schemaValidator';
|
|
138
|
+
export * from './data/types';
|
|
139
|
+
export * from './data/utf8Encoder';
|
|
140
|
+
export * from './economics/economics';
|
|
141
|
+
export * from './economics/currencies/currency-converter';
|
|
142
|
+
export * from './economics/currencies/currency';
|
|
143
|
+
export * from './economics/currencies/euros';
|
|
144
|
+
export * from './economics/currencies/token';
|
|
145
|
+
export * from './entities/Hash';
|
|
146
|
+
export * from './entities/Optional';
|
|
147
|
+
export * from './entities/ProofVerificationResult';
|
|
148
|
+
export * from './errors/CometBFTErrorCode';
|
|
149
|
+
export * from './errors/carmentis-error';
|
|
150
|
+
export * from './errors/type-checking-failure-error';
|
|
151
|
+
export * from './network/network';
|
|
152
|
+
export * from './providers/AbstractProvider';
|
|
153
|
+
export * from './providers/ExpirationDate';
|
|
154
|
+
export * from './providers/IExternalProvider';
|
|
155
|
+
export * from './providers/IInternalProvider';
|
|
156
|
+
export * from './providers/IProvider';
|
|
157
|
+
export * from './providers/KeyedProvider';
|
|
158
|
+
export * from './providers/MemoryProvider';
|
|
159
|
+
export * from './providers/NetworkProvider';
|
|
160
|
+
export * from './providers/NullMemoryProvider';
|
|
161
|
+
export * from './providers/NullNetworkProvider';
|
|
162
|
+
export * from './providers/Provider';
|
|
163
|
+
export * from './providers/ProviderFactory';
|
|
164
|
+
export * from './providers/serverNetworkProvider';
|
|
165
|
+
export * from './providers/nodeRpc/CometBFTNodeWebSocket';
|
|
166
|
+
export * from './providers/nodeRpc/NewBlockEventType';
|
|
167
|
+
export * from './providers/nodeRpc/RPCNodeStatusResponseSchema';
|
|
168
|
+
export * from './providers/nodeRpc/RPCNodeWebSocketCallback';
|
|
169
|
+
export * from './records/MerkleLeaf';
|
|
170
|
+
export * from './records/MerkleRecord';
|
|
171
|
+
export * from './records/OnChainRecord';
|
|
172
|
+
export * from './records/PositionedLeaf';
|
|
173
|
+
export * from './records/ProofDocument';
|
|
174
|
+
export * from './records/ProofDocumentVB';
|
|
175
|
+
export * from './records/ProofRecord';
|
|
176
|
+
export * from './records/Record';
|
|
177
|
+
export * from './records/RecordByChannels';
|
|
178
|
+
export * from './records/SaltShaker';
|
|
179
|
+
export * from './records/types';
|
|
180
|
+
export * from './records-old/Merklizer';
|
|
181
|
+
export * from './records-old/PepperMerklizer';
|
|
182
|
+
export * from './records-old/SaltMerklizer';
|
|
183
|
+
export * from './records-old/intermediateRepresentation';
|
|
184
|
+
export * from './records-old/maskManager';
|
|
185
|
+
export * from './records-old/messageManager';
|
|
186
|
+
export * from './records-old/pathManager';
|
|
187
|
+
export * from './trees/merkleTree';
|
|
188
|
+
export * from './trees/radixChecker';
|
|
189
|
+
export * from './trees/radixConstants';
|
|
190
|
+
export * from './trees/radixUtils';
|
|
191
|
+
export * from './type/AccountHistoryView';
|
|
192
|
+
export * from './type/AppLedgerStateUpdateRequest';
|
|
193
|
+
export * from './type/Height';
|
|
194
|
+
export * from './type/Transaction';
|
|
195
|
+
export * from './type/VirtualBlockchainLabel';
|
|
196
|
+
export * from './type/VirtualBlockchainType';
|
|
197
|
+
export * from './type/types';
|
|
198
|
+
export * from './type/valibot/primitives';
|
|
199
|
+
export * from './type/valibot/account/Account';
|
|
200
|
+
export * from './type/valibot/blockchain/economics/RetentionPolicy';
|
|
201
|
+
export * from './type/valibot/blockchain/microblock/MicroblockBody';
|
|
202
|
+
export * from './type/valibot/blockchain/microblock/MicroblockHeader';
|
|
203
|
+
export * from './type/valibot/blockchain/microblock/MicroblockStruct';
|
|
204
|
+
export * from './type/valibot/blockchain/protocol/ProtocolUpdate';
|
|
205
|
+
export * from './type/valibot/blockchain/protocol/ProtocolVariables';
|
|
206
|
+
export * from './type/valibot/blockchain/section/SectionType';
|
|
207
|
+
export * from './type/valibot/blockchain/section/sections';
|
|
208
|
+
export * from './type/valibot/blockchain/virtualBlockchain/internalStates';
|
|
209
|
+
export * from './type/valibot/blockchain/virtualBlockchain/virtualBlockchains';
|
|
210
|
+
export * from './type/valibot/clientBridge/ClientBridgeEncoder';
|
|
211
|
+
export * from './type/valibot/clientBridge/WiQrCodeEncoder';
|
|
212
|
+
export * from './type/valibot/clientBridge/clientBridgeMessages';
|
|
213
|
+
export * from './type/valibot/network/NetworksSchema';
|
|
214
|
+
export * from './type/valibot/provider/MicroblockInformationSchema';
|
|
215
|
+
export * from './type/valibot/provider/VirtualBlockchainInfo';
|
|
216
|
+
export * from './type/valibot/provider/VirtualBlockchainStatus';
|
|
217
|
+
export * from './type/valibot/provider/abci/AbciRequest';
|
|
218
|
+
export * from './type/valibot/provider/abci/AbciResponse';
|
|
219
|
+
export * from './type/valibot/walletOperatorMessages/Schemas';
|
|
220
|
+
export * from './type/valibot/walletRequest/WalletRequestEncoder';
|
|
221
|
+
export * from './type/valibot/walletRequest/walletRequests';
|
|
222
|
+
export * from './utils/AbciQueryEncoder';
|
|
223
|
+
export * from './utils/AccountSeedEncoder';
|
|
224
|
+
export * from './utils/AccountTransactions';
|
|
225
|
+
export * from './utils/ActorSeedEncoder';
|
|
226
|
+
export * from './utils/Assertion';
|
|
227
|
+
export * from './utils/BalanceAvailability';
|
|
228
|
+
export * from './utils/BinaryToStringEncoderInterface';
|
|
229
|
+
export * from './utils/BlockchainUtils';
|
|
230
|
+
export * from './utils/CometBFTPublicKeyConverter';
|
|
231
|
+
export * from './utils/HCVCodec';
|
|
232
|
+
export * from './utils/Logger';
|
|
233
|
+
export * from './utils/SectionLabel';
|
|
234
|
+
export * from './utils/SeedEncoder';
|
|
235
|
+
export * from './utils/WalletInteractiveAnchoringEncoder';
|
|
236
|
+
export * from './utils/WalletSeedEncoder';
|
|
237
|
+
export * from './utils/encoder';
|
|
238
|
+
export * from './utils/utils';
|
|
239
|
+
export * from './wallet/AccountCrypto';
|
|
240
|
+
export * from './wallet/ActorCrypto';
|
|
241
|
+
export * from './wallet/ICryptoKeyHandler';
|
|
242
|
+
export * from './wallet/WalletCrypto';
|
|
243
|
+
//# sourceMappingURL=common.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../src/common.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ActorType.d.ts","sourceRoot":"","sources":["../../src/constants/ActorType.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACjB,OAAO,IAAI;IACX,MAAM,IAAI;IACV,QAAQ,IAAI;CACf"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const MAGIC_STRING = "CMTS";
|
|
2
|
+
export declare const PROTOCOL_VERSION = 1;
|
|
3
|
+
export declare const VB_PROTOCOL = 0;
|
|
4
|
+
export declare const VB_ACCOUNT = 1;
|
|
5
|
+
export declare const VB_VALIDATOR_NODE = 2;
|
|
6
|
+
export declare const VB_ORGANIZATION = 3;
|
|
7
|
+
export declare const VB_APPLICATION = 4;
|
|
8
|
+
export declare const VB_APP_LEDGER = 5;
|
|
9
|
+
export declare const N_VIRTUAL_BLOCKCHAINS = 6;
|
|
10
|
+
export declare const VB_NAME: string[];
|
|
11
|
+
export declare const MAX_MICROBLOCK_PAST_DELAY = 300;
|
|
12
|
+
export declare const MAX_MICROBLOCK_FUTURE_DELAY = 120;
|
|
13
|
+
export declare const MB_STATUS_UNRECOVERABLE_ERROR = 1;
|
|
14
|
+
export declare const MB_STATUS_TIMESTAMP_ERROR = 2;
|
|
15
|
+
export declare const MB_STATUS_PREVIOUS_HASH_ERROR = 3;
|
|
16
|
+
//# sourceMappingURL=chain.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chain.d.ts","sourceRoot":"","sources":["../../src/constants/chain.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,SAAS,CAAC;AACnC,eAAO,MAAM,gBAAgB,IAAI,CAAC;AAElC,eAAO,MAAM,WAAW,IAAU,CAAC;AACnC,eAAO,MAAM,UAAU,IAAW,CAAC;AACnC,eAAO,MAAM,iBAAiB,IAAI,CAAC;AACnC,eAAO,MAAM,eAAe,IAAM,CAAC;AACnC,eAAO,MAAM,cAAc,IAAO,CAAC;AACnC,eAAO,MAAM,aAAa,IAAQ,CAAC;AAEnC,eAAO,MAAM,qBAAqB,IAAI,CAAC;AAEvC,eAAO,MAAM,OAAO,UAOnB,CAAC;AAEF,eAAO,MAAM,yBAAyB,MAAM,CAAC;AAC7C,eAAO,MAAM,2BAA2B,MAAM,CAAC;AAG/C,eAAO,MAAM,6BAA6B,IAAI,CAAC;AAM/C,eAAO,MAAM,yBAAyB,IAAI,CAAC;AAI3C,eAAO,MAAM,6BAA6B,IAAI,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAC/B,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,GAAG,MAAM,aAAa,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC;AACrC,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare const TYPE_UNKNOWN = 0;
|
|
2
|
+
export declare const TYPE_ARRAY = 1;
|
|
3
|
+
export declare const TYPE_OBJECT = 2;
|
|
4
|
+
export declare const TYPE_STRING = 3;
|
|
5
|
+
export declare const TYPE_NUMBER = 4;
|
|
6
|
+
export declare const TYPE_BOOLEAN = 5;
|
|
7
|
+
export declare const TYPE_NULL = 6;
|
|
8
|
+
export declare const TYPE_UINT8 = 7;
|
|
9
|
+
export declare const TYPE_UINT16 = 8;
|
|
10
|
+
export declare const TYPE_UINT24 = 9;
|
|
11
|
+
export declare const TYPE_UINT32 = 10;
|
|
12
|
+
export declare const TYPE_UINT48 = 11;
|
|
13
|
+
export declare const TYPE_BINARY = 12;
|
|
14
|
+
export declare const TYPE_BIN256 = 13;
|
|
15
|
+
export declare const TYPE_HASH_STR = 14;
|
|
16
|
+
export declare const TYPE_MAIN = 31;
|
|
17
|
+
export declare const TYPE_ARRAY_OF = 32;
|
|
18
|
+
export declare const TYPE_NAMES: string[];
|
|
19
|
+
export declare const HASHABLE = 1;
|
|
20
|
+
export declare const MASKABLE = 2;
|
|
21
|
+
export declare const PROPERTIES = 3;
|
|
22
|
+
export declare const REDACTED = 4;
|
|
23
|
+
export declare const HASHED = 8;
|
|
24
|
+
export declare const MASKED = 16;
|
|
25
|
+
export declare const FORMAT = 28;
|
|
26
|
+
//# sourceMappingURL=data.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data.d.ts","sourceRoot":"","sources":["../../src/constants/data.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,IAAQ,CAAC;AAClC,eAAO,MAAM,UAAU,IAAU,CAAC;AAClC,eAAO,MAAM,WAAW,IAAS,CAAC;AAClC,eAAO,MAAM,WAAW,IAAS,CAAC;AAClC,eAAO,MAAM,WAAW,IAAS,CAAC;AAClC,eAAO,MAAM,YAAY,IAAQ,CAAC;AAClC,eAAO,MAAM,SAAS,IAAW,CAAC;AAClC,eAAO,MAAM,UAAU,IAAU,CAAC;AAClC,eAAO,MAAM,WAAW,IAAS,CAAC;AAClC,eAAO,MAAM,WAAW,IAAS,CAAC;AAClC,eAAO,MAAM,WAAW,KAAS,CAAC;AAClC,eAAO,MAAM,WAAW,KAAS,CAAC;AAClC,eAAO,MAAM,WAAW,KAAS,CAAC;AAClC,eAAO,MAAM,WAAW,KAAS,CAAC;AAClC,eAAO,MAAM,aAAa,KAAO,CAAC;AAElC,eAAO,MAAM,SAAS,KAAW,CAAC;AAClC,eAAO,MAAM,aAAa,KAAO,CAAC;AAElC,eAAO,MAAM,UAAU,UAgBtB,CAAC;AAEF,eAAO,MAAM,QAAQ,IAAS,CAAC;AAC/B,eAAO,MAAM,QAAQ,IAAS,CAAC;AAC/B,eAAO,MAAM,UAAU,IAAO,CAAC;AAE/B,eAAO,MAAM,QAAQ,IAAS,CAAC;AAC/B,eAAO,MAAM,MAAM,IAAW,CAAC;AAC/B,eAAO,MAAM,MAAM,KAAW,CAAC;AAC/B,eAAO,MAAM,MAAM,KAAW,CAAC"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export declare const TOKEN_NAME = "CMTS";
|
|
2
|
+
export declare const TOKEN = 100000;
|
|
3
|
+
export declare const CENTITOKEN = 1000;
|
|
4
|
+
export declare const MILLITOKEN = 100;
|
|
5
|
+
export declare const INITIAL_OFFER: number;
|
|
6
|
+
export declare const MINIMUM_GAS_PRICE = 1;
|
|
7
|
+
export declare const MAXIMUM_GAS_PRICE: number;
|
|
8
|
+
export declare const FIXED_GAS_FEE = 1000;
|
|
9
|
+
export declare const GAS_PER_BYTE = 1;
|
|
10
|
+
export declare const GAS_ATOMS_PER_GAS = 100000;
|
|
11
|
+
export declare const BK_PLUS = 1;
|
|
12
|
+
export declare const BK_PAID_TX_FEES = 0;
|
|
13
|
+
export declare const BK_PAID_BLOCK_FEES = 2;
|
|
14
|
+
export declare const BK_SENT_ISSUANCE = 4;
|
|
15
|
+
export declare const BK_SALE = 6;
|
|
16
|
+
export declare const BK_SENT_PAYMENT = 8;
|
|
17
|
+
export declare const BK_SENT_VESTING = 10;
|
|
18
|
+
export declare const BK_SENT_ESCROW = 12;
|
|
19
|
+
export declare const BK_SENT_ESCROW_REFUND = 14;
|
|
20
|
+
export declare const BK_SENT_EXPIRED_ESCROW = 16;
|
|
21
|
+
export declare const BK_SENT_SLASHED_TOKENS = 18;
|
|
22
|
+
export declare const BK_EARNED_TX_FEES: number;
|
|
23
|
+
export declare const BK_EARNED_BLOCK_FEES: number;
|
|
24
|
+
export declare const BK_RECEIVED_ISSUANCE: number;
|
|
25
|
+
export declare const BK_PURCHASE: number;
|
|
26
|
+
export declare const BK_RECEIVED_PAYMENT: number;
|
|
27
|
+
export declare const BK_RECEIVED_VESTING: number;
|
|
28
|
+
export declare const BK_RECEIVED_ESCROW: number;
|
|
29
|
+
export declare const BK_RECEIVED_ESCROW_REFUND: number;
|
|
30
|
+
export declare const BK_RECEIVED_EXPIRED_ESCROW: number;
|
|
31
|
+
export declare const BK_RECEIVED_SLASHED_TOKENS: number;
|
|
32
|
+
export declare const BK_REF_BLOCK = 0;
|
|
33
|
+
export declare const BK_REF_MICROBLOCK = 1;
|
|
34
|
+
export declare const BK_REF_SECTION = 2;
|
|
35
|
+
export declare const BK_REFERENCES: number[];
|
|
36
|
+
export declare const BK_NAMES: string[];
|
|
37
|
+
export declare const ACCOUNT_BURNT_TOKENS = 0;
|
|
38
|
+
export declare const ACCOUNT_STANDARD = 1;
|
|
39
|
+
export declare const ACCOUNT_BLOCK_FEES = 2;
|
|
40
|
+
export declare const ACCOUNT_NAMES: string[];
|
|
41
|
+
export declare const ACCOUNT_ALLOWED_TRANSFERS: number[];
|
|
42
|
+
//# sourceMappingURL=economics.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"economics.d.ts","sourceRoot":"","sources":["../../src/constants/economics.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,UAAU,SAAY,CAAC;AACpC,eAAO,MAAM,KAAK,SAAiB,CAAC;AACpC,eAAO,MAAM,UAAU,OAAU,CAAC;AAClC,eAAO,MAAM,UAAU,MAAS,CAAC;AACjC,eAAO,MAAM,aAAa,QAAqB,CAAC;AAGhD,eAAO,MAAM,iBAAiB,IAAI,CAAC;AACnC,eAAO,MAAM,iBAAiB,QAAc,CAAC;AAC7C,eAAO,MAAM,aAAa,OAAW,CAAC;AACtC,eAAO,MAAM,YAAY,IAAS,CAAC;AACnC,eAAO,MAAM,iBAAiB,SAAS,CAAC;AAGxC,eAAO,MAAM,OAAO,IAAM,CAAC;AAE3B,eAAO,MAAM,eAAe,IAAc,CAAC;AAC3C,eAAO,MAAM,kBAAkB,IAAW,CAAC;AAC3C,eAAO,MAAM,gBAAgB,IAAa,CAAC;AAC3C,eAAO,MAAM,OAAO,IAAsB,CAAC;AAC3C,eAAO,MAAM,eAAe,IAAc,CAAC;AAC3C,eAAO,MAAM,eAAe,KAAc,CAAC;AAC3C,eAAO,MAAM,cAAc,KAAe,CAAC;AAC3C,eAAO,MAAM,qBAAqB,KAAQ,CAAC;AAC3C,eAAO,MAAM,sBAAsB,KAAO,CAAC;AAC3C,eAAO,MAAM,sBAAsB,KAAO,CAAC;AAE3C,eAAO,MAAM,iBAAiB,QAAqC,CAAC;AACpE,eAAO,MAAM,oBAAoB,QAAqC,CAAC;AACvE,eAAO,MAAM,oBAAoB,QAAmC,CAAC;AACrE,eAAO,MAAM,WAAW,QAAmC,CAAC;AAC5D,eAAO,MAAM,mBAAmB,QAAmC,CAAC;AACpE,eAAO,MAAM,mBAAmB,QAAmC,CAAC;AACpE,eAAO,MAAM,kBAAkB,QAAmC,CAAC;AACnE,eAAO,MAAM,yBAAyB,QAAmC,CAAC;AAC1E,eAAO,MAAM,0BAA0B,QAAmC,CAAC;AAC3E,eAAO,MAAM,0BAA0B,QAAmC,CAAC;AAE3E,eAAO,MAAM,YAAY,IAAS,CAAC;AACnC,eAAO,MAAM,iBAAiB,IAAI,CAAC;AACnC,eAAO,MAAM,cAAc,IAAO,CAAC;AAEnC,eAAO,MAAM,aAAa,UAqBzB,CAAC;AAEF,eAAO,MAAM,QAAQ,UAqBpB,CAAC;AAGF,eAAO,MAAM,oBAAoB,IAAQ,CAAC;AAC1C,eAAO,MAAM,gBAAgB,IAAY,CAAC;AAC1C,eAAO,MAAM,kBAAkB,IAAU,CAAC;AAE1C,eAAO,MAAM,aAAa,UAIzB,CAAC;AAEF,eAAO,MAAM,yBAAyB,UA+BrC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../src/constants/errors.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,oBAAoB,IAAO,CAAC"}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
export interface SchemaItem {
|
|
2
|
+
name: string;
|
|
3
|
+
type: number;
|
|
4
|
+
size?: number;
|
|
5
|
+
schema?: Schema;
|
|
6
|
+
definition?: SchemaItem[];
|
|
7
|
+
optional?: boolean;
|
|
8
|
+
unspecifiedSchema?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export interface Schema {
|
|
11
|
+
label: string;
|
|
12
|
+
definition: SchemaItem[];
|
|
13
|
+
}
|
|
14
|
+
export declare const ERROR: Schema;
|
|
15
|
+
export declare const CONTRACT_PARAMETER_SCHEMA: Schema;
|
|
16
|
+
export declare const CONTRACT_SCHEMA: Schema;
|
|
17
|
+
export declare const RECORD_DESCRIPTION: Schema;
|
|
18
|
+
export declare const ACCOUNT_STATE: Schema;
|
|
19
|
+
export declare const ACCOUNT_HISTORY: Schema;
|
|
20
|
+
export declare const VIRTUAL_BLOCKCHAIN_STATE: Schema;
|
|
21
|
+
export declare const PROTOCOL_VARIABLES: Schema;
|
|
22
|
+
export declare const PROTOCOL_VB_STATE: Schema;
|
|
23
|
+
export declare const VB_STATES: Schema[];
|
|
24
|
+
export declare const BLOCK_INFORMATION: {
|
|
25
|
+
label: string;
|
|
26
|
+
definition: {
|
|
27
|
+
name: string;
|
|
28
|
+
type: number;
|
|
29
|
+
}[];
|
|
30
|
+
};
|
|
31
|
+
export declare const BLOCK_CONTENT: {
|
|
32
|
+
label: string;
|
|
33
|
+
definition: {
|
|
34
|
+
name: string;
|
|
35
|
+
type: number;
|
|
36
|
+
definition: {
|
|
37
|
+
name: string;
|
|
38
|
+
type: number;
|
|
39
|
+
}[];
|
|
40
|
+
}[];
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* TODO: DO NOT USE THIS VARIABLE!!! DECODE THEN EXTRACT INSTEAD OF JUST EXTRACTING
|
|
44
|
+
* @deprecated With CBOR encoding, this value is meaningless
|
|
45
|
+
*/
|
|
46
|
+
export declare const MICROBLOCK_HEADER_PREVIOUS_HASH_OFFSET = 13;
|
|
47
|
+
/**
|
|
48
|
+
* @deprecated With CBOR encoding, this value is meaningless
|
|
49
|
+
*/
|
|
50
|
+
export declare const MICROBLOCK_HEADER_BODY_HASH_OFFSET = 58;
|
|
51
|
+
/**
|
|
52
|
+
* @deprecated With CBOR encoding, this value is meaningless
|
|
53
|
+
*/
|
|
54
|
+
export declare const MICROBLOCK_HEADER_SIZE = 122;
|
|
55
|
+
export declare const MICROBLOCK_HEADER: Schema;
|
|
56
|
+
export declare const MICROBLOCK_SECTION: Schema;
|
|
57
|
+
export declare const MICROBLOCK_BODY: Schema;
|
|
58
|
+
export declare const MICROBLOCK_VB_INFORMATION: Schema;
|
|
59
|
+
export declare const MSG_ERROR = 0;
|
|
60
|
+
export declare const MSG_GET_CHAIN_INFORMATION = 1;
|
|
61
|
+
export declare const MSG_CHAIN_INFORMATION = 2;
|
|
62
|
+
export declare const MSG_GET_BLOCK_INFORMATION = 3;
|
|
63
|
+
export declare const MSG_BLOCK_INFORMATION = 4;
|
|
64
|
+
export declare const MSG_GET_BLOCK_CONTENT = 5;
|
|
65
|
+
export declare const MSG_BLOCK_CONTENT = 6;
|
|
66
|
+
export declare const MSG_GET_VIRTUAL_BLOCKCHAIN_STATE = 7;
|
|
67
|
+
export declare const MSG_VIRTUAL_BLOCKCHAIN_STATE = 8;
|
|
68
|
+
export declare const MSG_GET_VIRTUAL_BLOCKCHAIN_UPDATE = 9;
|
|
69
|
+
export declare const MSG_VIRTUAL_BLOCKCHAIN_UPDATE = 10;
|
|
70
|
+
export declare const MSG_GET_MICROBLOCK_INFORMATION = 11;
|
|
71
|
+
export declare const MSG_MICROBLOCK_INFORMATION = 12;
|
|
72
|
+
export declare const MSG_AWAIT_MICROBLOCK_ANCHORING = 13;
|
|
73
|
+
export declare const MSG_MICROBLOCK_ANCHORING = 14;
|
|
74
|
+
export declare const MSG_GET_MICROBLOCK_BODYS = 15;
|
|
75
|
+
export declare const MSG_MICROBLOCK_BODYS = 16;
|
|
76
|
+
export declare const MSG_GET_ACCOUNT_STATE = 17;
|
|
77
|
+
export declare const MSG_ACCOUNT_STATE = 18;
|
|
78
|
+
export declare const MSG_GET_ACCOUNT_HISTORY = 19;
|
|
79
|
+
export declare const MSG_ACCOUNT_HISTORY = 20;
|
|
80
|
+
export declare const MSG_GET_ACCOUNT_BY_PUBLIC_KEY_HASH = 21;
|
|
81
|
+
export declare const MSG_ACCOUNT_BY_PUBLIC_KEY_HASH = 22;
|
|
82
|
+
export declare const MSG_GET_VALIDATOR_NODE_BY_ADDRESS = 23;
|
|
83
|
+
export declare const MSG_VALIDATOR_NODE_BY_ADDRESS = 24;
|
|
84
|
+
export declare const MSG_GET_OBJECT_LIST = 25;
|
|
85
|
+
export declare const MSG_OBJECT_LIST = 26;
|
|
86
|
+
export declare const MSG_GET_GENESIS_SNAPSHOT = 27;
|
|
87
|
+
export declare const MSG_GENESIS_SNAPSHOT = 28;
|
|
88
|
+
export declare const NODE_MESSAGES: Schema[];
|
|
89
|
+
export declare const WI_QR_CODE: Schema;
|
|
90
|
+
export declare const WIMSG_REQUEST = 0;
|
|
91
|
+
export declare const WIMSG_UPDATE_QR = 1;
|
|
92
|
+
export declare const WIMSG_CONNECTION_TOKEN = 2;
|
|
93
|
+
export declare const WIMSG_FORWARDED_ANSWER = 3;
|
|
94
|
+
export declare const WIMSG_GET_CONNECTION_INFO = 4;
|
|
95
|
+
export declare const WIMSG_ANSWER = 5;
|
|
96
|
+
export declare const WIMSG_CONNECTION_INFO = 6;
|
|
97
|
+
export declare const WIMSG_CONNECTION_ACCEPTED = 7;
|
|
98
|
+
export declare const WIMSG_FORWARDED_REQUEST = 8;
|
|
99
|
+
export declare const WI_MESSAGES: Schema[];
|
|
100
|
+
export declare const ALL_SCHEMAS: {
|
|
101
|
+
singles: Schema[];
|
|
102
|
+
collections: {
|
|
103
|
+
label: string;
|
|
104
|
+
list: Schema[];
|
|
105
|
+
}[];
|
|
106
|
+
};
|
|
107
|
+
//# sourceMappingURL=schemas.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/constants/schemas.ts"],"names":[],"mappings":"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"}
|